From 7b379f4f2a7be47e5c055597fc71773099fe2591 Mon Sep 17 00:00:00 2001 From: navewindre Date: Sat, 2 Nov 2024 01:22:27 +0100 Subject: add cortile for arm64 --- config/openbox/autostart | 2 +- config/openbox/cortile-arm64 | Bin 0 -> 8585216 bytes config/openbox/cortile-x86 | Bin 0 -> 9052160 bytes config/openbox/run-cortile | 9 +++++++++ 4 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 config/openbox/cortile-arm64 create mode 100755 config/openbox/cortile-x86 create mode 100755 config/openbox/run-cortile (limited to 'config') diff --git a/config/openbox/autostart b/config/openbox/autostart index 105b3bf..06db5ec 100644 --- a/config/openbox/autostart +++ b/config/openbox/autostart @@ -10,7 +10,7 @@ xcape -e 'Super_L=Control_L|Shift_L|Alt_L|Super_L|D' & spacefm --desktop & xscreensaver -no-splash & nm-applet & -$CONFDIR/cortile & +$CONFDIR/run-cortile & # fuck your stupid telemetry diff --git a/config/openbox/cortile-arm64 b/config/openbox/cortile-arm64 new file mode 100755 index 0000000..4087f3b Binary files /dev/null and b/config/openbox/cortile-arm64 differ diff --git a/config/openbox/cortile-x86 b/config/openbox/cortile-x86 new file mode 100755 index 0000000..3eff881 Binary files /dev/null and b/config/openbox/cortile-x86 differ diff --git a/config/openbox/run-cortile b/config/openbox/run-cortile new file mode 100755 index 0000000..b504216 --- /dev/null +++ b/config/openbox/run-cortile @@ -0,0 +1,9 @@ +#!/bin/bash + +ARCH=$(lscpu | awk -F ':' 'NR==1 {print $NF}' | tr -d ' ') +if [[ "$ARCH" == "x86_64" ]]; then + ./cortile-x86 +fi +if [[ "$ARCH" == "aarch64" ]]; then + ./cortile-arm64 +fi -- cgit v1.2.3