better uname checks

This commit is contained in:
Moritz Böhme 2021-05-11 11:21:15 +02:00
parent cc3bbf0fa2
commit 736d178241
2 changed files with 3 additions and 3 deletions

View file

@ -37,11 +37,11 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then
fi
# Automatic brightness controll
[[ $(uname -n) == "arch-laptop" ]] && clight &
[[ $(uname -n) == *"laptop"* ]] && clight &
# Set cursor
xsetroot -cursor_name left_ptr
[[ $(uname -n) == "arch-desktop" ]] && xrandr --output HDMI-0 --primary --output HDMI-1 --left-of HDMI-0
[[ $(uname -n) == *"desktop"* ]] && xrandr --output HDMI-0 --primary --output HDMI-1 --left-of HDMI-0
exec bspwm