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 $("$HOME/.config/openbox/cortile-x86") fi if [[ "$ARCH" == "aarch64" ]]; then $("$HOME/.config/openbox/cortile-arm64") fi