blob: e8407a7e34c22252759d4165e82c6b509e9de43f (
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", "xterm")
launcher( XK_period, "lock", "xlock")
launcher( XK_minus, "dpms off", "xset -dpms s off")
launcher( XK_equal, "dpms on", "xset +dpms s on")
launcher( XK_BackSpace, "record window", "recordmydesktop --need-shortcuts --no-frame --windowid %W --fps 60 --workdir ~/.rmd/work --output ~/.rmd/caps/vwm.ogv")
launcher( XK_Delete, "record desktop", "recordmydesktop --need-shortcuts --no-frame --fps 60 --workdir ~/.rmd/work --output ~/.rmd/caps/vwm.ogv")
|