add an xlock binding
This commit is contained in:
parent
90cc2b2bab
commit
001233837e
1 changed files with 5 additions and 0 deletions
|
@ -165,6 +165,11 @@ static void binddef()
|
||||||
a = action_new(action_execute);
|
a = action_new(action_execute);
|
||||||
a->data.execute.path = g_strdup("xterm");
|
a->data.execute.path = g_strdup("xterm");
|
||||||
kbind(list, a);
|
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()
|
void plugin_startup()
|
||||||
|
|
Loading…
Reference in a new issue