keybinds, patch fix
Build/Publish XBPS / build-and-publish (push) Successful in 10s Details

This commit is contained in:
Luca Bilke 2024-04-17 23:02:56 +02:00
parent 710ffd2801
commit 55e4c29b30
No known key found for this signature in database
GPG Key ID: AD6630D0A1E650AC
2 changed files with 5 additions and 3 deletions

View File

@ -311,11 +311,11 @@ static const Key keys[] = {
{ MODKEY, XK_q, killclient, {0} },
// { MODKEY | ShiftMask, XK_q, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_j, focusdir, {.i = 3} },
// { MODKEY | ShiftMask, XK_j, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY | ShiftMask, XK_j, focusstack, {.i = -1 } },
{ MODKEY, XK_k, focusdir, {.i = 2} },
// { MODKEY | ShiftMask, XK_k, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY | ShiftMask, XK_k, focusstack, {.i = 1 } },
{ MODKEY, XK_x, togglefloating, {0} },
{ MODKEY | ShiftMask, XK_x, unfloatvisible, {0} },
{ MODKEY | ShiftMask, XK_x, unfloatvisible, {0} },
{ MODKEY, XK_b, togglescratch, {.v = spinet} },
// { MODKEY | ShiftMask, XK_b, spawn, {.v = (const char *[]){NULL}} },
{ MODKEY, XK_m, togglescratch, {.v = spvolm} },

View File

@ -5,7 +5,9 @@
/* variables */
static const char broken[] = "broken";
-static char stext[1024];
-static char rawstext[512];
+static char stext[2048];
+static char rawstext[1024];
static int screen;
static int sw, sh; /* X display screen geometry width, height */