]> Dogcows Code - chaz/openbox/blobdiff - plugins/keyboard/keyboard.c
more focus fixes. i wish this could end.
[chaz/openbox] / plugins / keyboard / keyboard.c
index f3495eb82f1b6dfc611386d1afe5820d2e28b75f..6836ca1618e36bc641b832ab4514ae63b7d20760 100644 (file)
@@ -7,6 +7,10 @@
 #include "keyboard.h"
 #include <glib.h>
 
+void plugin_setup_config()
+{
+}
+
 KeyBindingTree *firstnode;
 
 static KeyBindingTree *curpos;
@@ -165,6 +169,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()
This page took 0.024767 seconds and 4 git commands to generate.