blob: e834bc5965dcb9885715bdabb201a01b5ec78ed6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
PATH=${PATH}:~/.cabal/bin
unclutter -idle 1 -root & # hide cursor when unused
# Turn CapsLock into Control
xmodmap -e "clear lock" -e "keycode 66 = Control_R" -e "add Control = Control_R"
# minimal GTK+ traybar
trayer --edge bottom --align left --SetDockType true --SetPartialStrut false --expand true --width 10 --height 25 &
# starting gpg daemon
gpg-agent --daemon --use-standard-socket
# activating xscreensaver
xscreensaver -nosplash &
exec ck-launch-session dbus-launch xmonad
|