Add action.c

This commit is contained in:
Johan Malm 2020-06-18 20:18:01 +01:00
parent 1e342f8976
commit 7440919452
10 changed files with 30 additions and 28 deletions

View file

@ -56,9 +56,9 @@ void keybind_add(struct wl_list *keybinds, const char *keybind,
void keybind_init()
{
keybind_add(&rc.keybinds, "A-Escape", "exit");
keybind_add(&rc.keybinds, "A-Tab", "cycle");
keybind_add(&rc.keybinds, "A-F3", "exec");
keybind_add(&rc.keybinds, "A-Escape", "Exit");
keybind_add(&rc.keybinds, "A-Tab", "NextWindow");
keybind_add(&rc.keybinds, "A-F3", "Execute");
}
void keybind_print()