aboutsummaryrefslogtreecommitdiff
path: root/install_coolbits.sh
blob: 0ce4c28cf596b346cef0e636222a7db57cb1fcca (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

script_dir=$(dirname "$0")
cd "$script_dir"

[ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1

for xorg_conf_d in "/etc/X11/xorg.conf.d" "/usr/share/X11/xorg.conf.d" "/usr/lib/X11/xorg.conf.d"; do
    [ -d "$xorg_conf_d" ] && install -Dm644 "88-gsr-coolbits.conf" "$xorg_conf_d/88-gsr-coolbits.conf"
done