summaryrefslogtreecommitdiff
path: root/config/openbox/run-cortile
blob: b50421605839555d6c37842a700559430c5f18d9 (plain)
1
2
3
4
5
6
7
8
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