diff options
author | Ivan Tham <pickfire@riseup.net> | 2015-11-18 10:01:50 +0800 |
---|---|---|
committer | Markus Teich <markus.teich@stusta.mhn.de> | 2015-11-18 12:20:55 +0100 |
commit | 243c8cf7b6e66813609ac4ca9c9e6343408e1d72 (patch) | |
tree | 45a5e12b20948d00471d125565fa27c596a21141 | |
parent | cc57a28eba7c2ec574d92817bff012b3b051dd6b (diff) |
Add Escape key to quit sent
-rw-r--r-- | config.def.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 6ecc267..9aa6e08 100644 --- a/config.def.h +++ b/config.def.h @@ -25,6 +25,7 @@ static Mousekey mshortcuts[] = { static Shortcut shortcuts[] = { /* keysym function argument */ + { XK_Escape, quit, {0} }, { XK_q, quit, {0} }, { XK_Right, advance, {.i = +1} }, { XK_Left, advance, {.i = -1} }, |