2020-08-02 13:46:19 +00:00
|
|
|
#define KEYS 6
|
|
|
|
static Key keys_arrows[] = {
|
2021-07-03 09:30:53 +00:00
|
|
|
{ 0, 0, XK_Shift_L, 2 },
|
|
|
|
{ "←", 0, XK_Left, 1 },
|
|
|
|
{ "↓", 0, XK_Down, 1 },
|
|
|
|
{ "↑", 0, XK_Up, 1 },
|
|
|
|
{ "→", 0, XK_Right, 1},
|
|
|
|
{ "Alt", 0, XK_Alt_L, 2 },
|
2011-03-24 18:31:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Buttonmod buttonmods[] = {
|
|
|
|
{ XK_Shift_L, Button2 },
|
|
|
|
{ XK_Alt_L, Button3 },
|
|
|
|
};
|
|
|
|
|
2020-08-02 13:46:19 +00:00
|
|
|
#define OVERLAYS 1
|
|
|
|
static Key overlay[OVERLAYS] = {
|
2021-07-03 09:30:53 +00:00
|
|
|
{ 0, 0, XK_Cancel },
|
2020-08-02 13:46:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define LAYERS 1
|
|
|
|
static char* layer_names[LAYERS] = {
|
|
|
|
"arrows",
|
|
|
|
};
|
|
|
|
|
|
|
|
static Key* available_layers[LAYERS] = {
|
|
|
|
keys_arrows,
|
|
|
|
};
|
|
|
|
|