summaryrefslogtreecommitdiff
path: root/config/openbox/run-cortile
blob: 23f8baef58b57a2b0c26ebf527c7abd52b921fed (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
    $("$HOME/.config/openbox/cortile-x86")
fi
if [[ "$ARCH" == "aarch64" ]]; then
    $("$HOME/.config/openbox/cortile-arm64")
fi