adjust other layouts for the second label change - svkbd - simple virtual keybo… | |
git clone git://git.suckless.org/svkbd | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit fd0132256402069a3f045d677f53cc2a1b5340e2 | |
parent e2dff73599425ab0e9912cdba00628cc1eed60a0 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sat, 3 Jul 2021 11:30:53 +0200 | |
adjust other layouts for the second label change | |
From the commit: | |
commit d06db9eb4fb8f1de5f5d144f5b8fb3bbf4cce84c | |
Author: Maarten van Gompel <[email protected]> | |
Date: Sat Mar 6 16:30:44 2021 +0100 | |
Added a second key label for the shift-activated symbols | |
Diffstat: | |
M layout.arrows.h | 14 +++++++------- | |
M layout.de.h | 2 +- | |
M layout.en.h | 2 +- | |
M layout.ru.h | 2 +- | |
M layout.sh.h | 2 +- | |
5 files changed, 11 insertions(+), 11 deletions(-) | |
--- | |
diff --git a/layout.arrows.h b/layout.arrows.h | |
@@ -1,11 +1,11 @@ | |
#define KEYS 6 | |
static Key keys_arrows[] = { | |
- { 0, XK_Shift_L, 2 }, | |
- { "←", XK_Left, 1 }, | |
- { "↓", XK_Down, 1 }, | |
- { "↑", XK_Up, 1 }, | |
- { "→", XK_Right, 1}, | |
- { "Alt", XK_Alt_L, 2 }, | |
+ { 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 }, | |
}; | |
Buttonmod buttonmods[] = { | |
@@ -15,7 +15,7 @@ Buttonmod buttonmods[] = { | |
#define OVERLAYS 1 | |
static Key overlay[OVERLAYS] = { | |
- { 0, XK_Cancel }, | |
+ { 0, 0, XK_Cancel }, | |
}; | |
#define LAYERS 1 | |
diff --git a/layout.de.h b/layout.de.h | |
@@ -75,7 +75,7 @@ Buttonmod buttonmods[] = { | |
#define OVERLAYS 1 | |
static Key overlay[OVERLAYS] = { | |
- { 0, XK_Cancel }, | |
+ { 0, 0, XK_Cancel }, | |
}; | |
#define LAYERS 1 | |
diff --git a/layout.en.h b/layout.en.h | |
@@ -70,7 +70,7 @@ Buttonmod buttonmods[] = { | |
#define OVERLAYS 1 | |
static Key overlay[OVERLAYS] = { | |
- { 0, XK_Cancel }, | |
+ { 0, 0, XK_Cancel }, | |
}; | |
#define LAYERS 1 | |
diff --git a/layout.ru.h b/layout.ru.h | |
@@ -72,7 +72,7 @@ Buttonmod buttonmods[] = { | |
#define OVERLAYS 1 | |
static Key overlay[OVERLAYS] = { | |
- { 0, XK_Cancel }, | |
+ { 0, 0, XK_Cancel }, | |
}; | |
#define LAYERS 1 | |
diff --git a/layout.sh.h b/layout.sh.h | |
@@ -75,7 +75,7 @@ Buttonmod buttonmods[] = { | |
#define OVERLAYS 1 | |
static Key overlay[OVERLAYS] = { | |
- { 0, XK_Cancel }, | |
+ { 0, 0, XK_Cancel }, | |
}; | |
#define LAYERS 1 |