summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorProsperousPotato <ProsperousPotato@users.noreply.github.com>2024-12-07 14:33:12 +0000
committerProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-03-31 18:31:28 +0100
commit2acec1e83ca3c3a0b2ade0b11ba48873afcf7341 (patch)
treee41c4e39b323f43228d74189a9784995bb3be7d8 /config.h
parent506971f46867ad00011161adf7495e7e2d680b20 (diff)
fix transparent borders
Diffstat (limited to 'config.h')
-rw-r--r--config.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/config.h b/config.h
index 45cc4df..d28ff55 100644
--- a/config.h
+++ b/config.h
@@ -1,7 +1,7 @@
/* See LICENSE file for copyright and license details. */
/* Constants */
-#define TERMINAL "xterm"
+#define TERMINAL "st"
#define BROWSER "librewolf"
/* appearance */
@@ -152,8 +152,10 @@ static const Key keys[] = {
{ MODKEY, XK_c, spawn, SHCMD("cliphist add") },
{ MODKEY, XK_v, spawn, SHCMD("cliphist sel") },
{ MODKEY, XK_x, spawn, SHCMD("xkill") },
- { MODKEY, XK_h, shiftview, { .i = -1 } },
- { MODKEY, XK_l, shiftview, { .i = +1 } },
+ { MODKEY, XK_h, viewprev, {0} },
+ { MODKEY, XK_l, viewnext, {0} },
+ { MODKEY|ShiftMask, XK_h, tagtoprev, {0} },
+ { MODKEY|ShiftMask, XK_l, tagtonext, {0} },
{ MODKEY|ShiftMask, XK_r, quit, {1} },
/* Unused keys */