diff options
| author | navewindre <boneyaard@gmail.com> | 2024-11-02 01:22:27 +0100 |
|---|---|---|
| committer | navewindre <boneyaard@gmail.com> | 2024-11-02 01:22:27 +0100 |
| commit | 7b379f4f2a7be47e5c055597fc71773099fe2591 (patch) | |
| tree | d0b0c15b4791dd8cd206dbcd3a7ed5c8f5aac55e /config/openbox | |
| parent | d094ad930e187c3cc83c7682f1afe74639f8e81e (diff) | |
add cortile for arm64
Diffstat (limited to 'config/openbox')
| -rw-r--r-- | config/openbox/autostart | 2 | ||||
| -rwxr-xr-x | config/openbox/cortile-arm64 | bin | 0 -> 8585216 bytes | |||
| -rwxr-xr-x | config/openbox/cortile-x86 | bin | 0 -> 9052160 bytes | |||
| -rwxr-xr-x | config/openbox/run-cortile | 9 |
4 files changed, 10 insertions, 1 deletions
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 Binary files differnew file mode 100755 index 0000000..4087f3b --- /dev/null +++ b/config/openbox/cortile-arm64 diff --git a/config/openbox/cortile-x86 b/config/openbox/cortile-x86 Binary files differnew file mode 100755 index 0000000..3eff881 --- /dev/null +++ b/config/openbox/cortile-x86 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 |
