diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-10-05 21:36:14 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-11-01 12:44:16 -0600 |
commit | d6fabe3a150d2e464078c3269410d56e8bbeb54f (patch) | |
tree | c983c053f3645108221ff58758143a2bc8b79392 | |
parent | ab87410023a139c124bccb2817e567a7fa4fabab (diff) |
add a comment about chvt keybindings
Closes: https://github.com/djpohly/dwl/issues/427
-rw-r--r-- | config.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 4e30885..db0babc 100644 --- a/config.def.h +++ b/config.def.h @@ -154,6 +154,9 @@ static const Key keys[] = { /* Ctrl-Alt-Backspace and Ctrl-Alt-Fx used to be handled by X server */ { WLR_MODIFIER_CTRL|WLR_MODIFIER_ALT,XKB_KEY_Terminate_Server, quit, {0} }, + /* Ctrl-Alt-Fx is used to switch to another VT, if you don't know what a VT is + * do not remove them. + */ #define CHVT(n) { WLR_MODIFIER_CTRL|WLR_MODIFIER_ALT,XKB_KEY_XF86Switch_VT_##n, chvt, {.ui = (n)} } CHVT(1), CHVT(2), CHVT(3), CHVT(4), CHVT(5), CHVT(6), CHVT(7), CHVT(8), CHVT(9), CHVT(10), CHVT(11), CHVT(12), |