diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-20 22:25:27 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-20 22:25:27 +0000 |
| commit | 0a2aa0892473c9fc61bfedd753fbb136a3f7e864 (patch) | |
| tree | bfb4ad58eed99b3de8ddd38837696f96318db089 /plugins | |
| parent | d2b4e7ddca275b5be50db0365aba734c0fb28b1e (diff) | |
alt bindings
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/keyboard/keyboard.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/keyboard/keyboard.c b/plugins/keyboard/keyboard.c index a559e3f0..f3495eb8 100644 --- a/plugins/keyboard/keyboard.c +++ b/plugins/keyboard/keyboard.c @@ -131,37 +131,37 @@ static void binddef() at call-time when then action function is used. */ - list->data = "C-Right"; + list->data = "A-Right"; a = action_new(action_next_desktop); a->data.nextprevdesktop.wrap = TRUE; kbind(list, a); - list->data = "C-Left"; + list->data = "A-Left"; a = action_new(action_previous_desktop); a->data.nextprevdesktop.wrap = TRUE; kbind(list, a); - list->data = "C-1"; + list->data = "A-1"; a = action_new(action_desktop); a->data.desktop.desk = 0; kbind(list, a); - list->data = "C-2"; + list->data = "A-2"; a = action_new(action_desktop); a->data.desktop.desk = 1; kbind(list, a); - list->data = "C-3"; + list->data = "A-3"; a = action_new(action_desktop); a->data.desktop.desk = 2; kbind(list, a); - list->data = "C-4"; + list->data = "A-4"; a = action_new(action_desktop); a->data.desktop.desk = 3; kbind(list, a); - list->data = "C-space"; + list->data = "A-space"; a = action_new(action_execute); a->data.execute.path = g_strdup("xterm"); kbind(list, a); |
