blob: 90d8515988194ea7e474a975214b1a4a797fec8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/usr/bin/env sh
# xinput disable 'ETPS/2 Elantech Touchpad' &
echo 'Starting redshift'
redshift -c $XDG_CONFIG_HOME/redshift/redshift.conf &
echo 'Starting dunst'
dunst &
xset r rate 200 50
pulseaudio -D
case "$(cat /etc/hostname)" in
cacharle-main)
xrandr --output DVI-0 --auto --left-of DVI-1 \
--output DVI-1 --mode 1920x1080 --primary --left-of HDMI-0 \
--output HDMI-0 --mode 1920x1080
;;
charles-laptop)
xrandr | grep 'VGA1.*connected' &&
xrandr --output LVDS1 --primary --left-of VGA1 \
--output VGA1 --mode 1280x1024
;;
esac
exec xmonad
|