diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-21 17:02:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-21 17:02:13 +0000 |
| commit | 001233837ec4789e2363e21dc124e10294233adb (patch) | |
| tree | fbbe32c1ce3f0f95204eee3ba56a0ef40f30ce8a /plugins/keyboard | |
| parent | 90cc2b2babfbe8b31c12d5ee5d089a1c354d9abb (diff) | |
add an xlock binding
Diffstat (limited to 'plugins/keyboard')
| -rw-r--r-- | plugins/keyboard/keyboard.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/keyboard/keyboard.c b/plugins/keyboard/keyboard.c index f3495eb8..4fa6a8ed 100644 --- a/plugins/keyboard/keyboard.c +++ b/plugins/keyboard/keyboard.c @@ -165,6 +165,11 @@ static void binddef() a = action_new(action_execute); a->data.execute.path = g_strdup("xterm"); kbind(list, a); + + list->data = "C-A-Escape"; + a = action_new(action_execute); + a->data.execute.path = g_strdup("xlock -nolock -mode puzzle"); + kbind(list, a); } void plugin_startup() |
