aboutsummaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorNikita Langer <nikitalanger@icloud.com>2026-04-13 18:25:32 +0200
committerNikita Langer <nikitalanger@icloud.com>2026-04-13 18:25:32 +0200
commitc9f28bb73890de5faa3ebcae7ca9df0fa62fc7d2 (patch)
tree406fb23438a2678f20492fb0a80ce09ead545747 /config.def.h
parente65146d2918e0072fc09b3dfb06785e170787164 (diff)
downloadtabbed-master.tar.gz
tabbed-master.tar.bz2
tabbed-master.tar.xz
tabbed-master.zip
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h
index 51bb13d..4707e5b 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1,7 +1,7 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
-static const char font[] = "monospace:size=9";
+static const char font[] = "JetBrains Mono Nerd Font Propo:size=10";
static const char* normbgcolor = "#222222";
static const char* normfgcolor = "#cccccc";
static const char* selbgcolor = "#555555";
@@ -27,17 +27,19 @@ static Bool npisrelative = False;
.v = (char *[]){ "/bin/sh", "-c", \
"prop=\"`xwininfo -children -id $1 | grep '^ 0x' |" \
"sed -e's@^ *\\(0x[0-9a-f]*\\) \"\\([^\"]*\\)\".*@\\1 \\2@' |" \
- "xargs -0 printf %b | dmenu -l 10 -w $1`\" &&" \
+ "xargs -0 printf %b | dmenu -vi -l 10 -w $1`\" &&" \
"xprop -id $1 -f $0 8s -set $0 \"$prop\"", \
p, winid, NULL \
} \
}
-#define MODKEY ControlMask
+// #define MODKEY ControlMask
+#define MODKEY Mod1Mask
static const Key keys[] = {
/* modifier key function argument */
{ MODKEY|ShiftMask, XK_Return, focusonce, { 0 } },
- { MODKEY|ShiftMask, XK_Return, spawn, { 0 } },
+ // { MODKEY|ShiftMask, XK_Return, spawn, { 0 } },
+ { MODKEY, XK_Return, spawn, { 0 } },
{ MODKEY|ShiftMask, XK_l, rotate, { .i = +1 } },
{ MODKEY|ShiftMask, XK_h, rotate, { .i = -1 } },
@@ -45,7 +47,8 @@ static const Key keys[] = {
{ MODKEY|ShiftMask, XK_k, movetab, { .i = +1 } },
{ MODKEY, XK_Tab, rotate, { .i = 0 } },
- { MODKEY, XK_grave, spawn, SETPROP("_TABBED_SELECT_TAB") },
+ // { MODKEY, XK_grave, spawn, SETPROP("_TABBED_SELECT_TAB") },
+ { MODKEY, XK_g, spawn, SETPROP("_TABBED_SELECT_TAB") },
{ MODKEY, XK_1, move, { .i = 0 } },
{ MODKEY, XK_2, move, { .i = 1 } },
{ MODKEY, XK_3, move, { .i = 2 } },