diff options
author | sinanmohd <pcmsinan@gmail.com> | 2022-04-13 18:25:24 +0530 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-01-11 18:42:33 +0530 |
commit | d1641f423a74b76cf276aff8b8fa70b4027f0bd7 (patch) | |
tree | ad7344099b4282f1c33f8ea2c15df54a40bbb956 | |
parent | bad18dc57e2445bf92cceb69df54fe732c792c9e (diff) |
add keysym values for undefined keys
-rw-r--r-- | config.def.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 6681727..91f21c4 100644 --- a/config.def.h +++ b/config.def.h @@ -24,6 +24,19 @@ static char *colors[][3] = { [SchemeTitle] = { normfgcolor, normbgcolor, normbordercolor }, }; +/* keysym */ +static const int XK_XF86AudioMute = 0x1008ff12; +static const int XK_XF86AudioLowerVolume = 0x1008ff11; +static const int XK_XF86AudioRaiseVolume = 0x1008ff13; +static const int XK_XF86AudioMicMute = 0x1008ffb2; +static const int XK_XF86MonBrightnessDown = 0x1008ff03; +static const int XK_XF86MonBrightnessUp = 0x1008ff02; +static const int XK_XF86Calculator = 0x1008ff1d; +static const int XK_XF86AudioPlay = 0x1008ff14; +static const int XK_XF86AudioStop = 0x1008ff15; +static const int XK_XF86AudioPrev = 0x1008ff16; +static const int XK_XF86AudioNext = 0x1008ff17; + /* tagging */ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; |