From d1641f423a74b76cf276aff8b8fa70b4027f0bd7 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Wed, 13 Apr 2022 18:25:24 +0530 Subject: add keysym values for undefined keys --- config.def.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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" }; -- cgit v1.2.3