blob: ea06683db83625b72a8fcb44fb650d252cb65877 (
plain)
1
2
3
4
5
6
7
8
|
/* it's up to you to ensure you don't conflict with the global VWM keys */
/* keysym, label, cmd */
launcher( XK_x, "xterm", "/usr/bin/xterm")
launcher( XK_b, "firefox", "/usr/bin/firefox -ProfileManager -no-remote")
launcher( XK_g, "gimp", "/usr/bin/gimp")
launcher( XK_period, "lock", "/usr/bin/xlock")
launcher( XK_minus, "dpms off", "/usr/bin/xset -dpms s off")
launcher( XK_equal, "dpms on", "/usr/bin/xset +dpms s on")
|