Add phoenix settings to X init

This commit is contained in:
Tom Willemse 2014-08-21 11:04:25 +02:00
parent 69daef5baa
commit b4c2657120

View file

@ -1,11 +1,15 @@
#!/bin/bash
_hostname="$(hostname)"
if [[ $_hostname == "drd" ]]; then
xrandr --setprovideroutputsource 1 0
# xrandr --auto
xrandr \
--output DVI-I-1 --auto --pos 0x0 \
--output DVI-I-2 --auto --pos 1920x0 \
--output DVI-I-1-3 --auto --pos -1280x0
fi
xmodmap ~/.Xmodmap
@ -20,7 +24,7 @@ fi
redshift -l 51.1180:4.0012 &
unclutter &
case "$(hostname)" in
case $_hostname in
drd)
# feh --bg-tile ~/pictures/wallpaper-2311191.png
# exec sbcl --noprint --non-interactive \
@ -35,4 +39,7 @@ case "$(hostname)" in
# exec bspwm
# exec i3
;;
phoenix)
exec awesome
;;
esac