1
0
Fork 0
forked from entailz/toes

tabs and tab overview

This commit is contained in:
entailz 2026-05-12 23:33:02 -07:00
commit d07c2a5cc9
244 changed files with 72046 additions and 0 deletions

18
xkbcommon-vmod.h Normal file
View file

@ -0,0 +1,18 @@
#pragma once
#include <xkbcommon/xkbcommon-names.h>
/* Added in libxkbcommon 1.8.0 */
#if !defined(XKB_VMOD_NAME_ALT)
/* Common *virtual* modifiers, encoded in xkeyboard-config in the compat and
* symbols files. They have been stable since the beginning of the project and
* are unlikely to ever change. */
#define XKB_VMOD_NAME_ALT "Alt"
#define XKB_VMOD_NAME_HYPER "Hyper"
#define XKB_VMOD_NAME_LEVEL3 "LevelThree"
#define XKB_VMOD_NAME_LEVEL5 "LevelFive"
#define XKB_VMOD_NAME_META "Meta"
#define XKB_VMOD_NAME_NUM "NumLock"
#define XKB_VMOD_NAME_SCROLL "ScrollLock"
#define XKB_VMOD_NAME_SUPER "Super"
#endif