diff options
-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" }; |