This commit is contained in:
2026-03-01 22:49:00 -08:00
parent adfd4e7a26
commit 06ba3281be

View File

@@ -85,11 +85,11 @@ static const char *brightnessupcmd[] = { "brightnessctl", "set", "5%+", NULL };
static const char *brightnessdowncmd[] = { "brightnessctl", "set", "5%-", NULL };
// recording
static const char *gsrcmd[] = { "gsr", NULL };
static const char *gsrnomiccmd[] = { "gsr", "1", NULL };
static const char *record_cmd[] = { "record", NULL };
static const char *record_nomiccmd[] = { "record", "1", NULL };
// displays (titanium)
static const char *displayctlcmd[] = { "displayctl", NULL };
//static const char *displayctlcmd[] = { "displayctl", NULL };
// misc
static const char *managercmd[] = { "manager", NULL };
@@ -114,8 +114,8 @@ static const Key keys[] = {
{ MODKEY|ShiftMask, XK_o, spawn, {.v = opencmd } },
{ MODKEY|ControlMask, XK_s, spawn, {.v = screenshot_selectioncmd } },
{ MODKEY|ShiftMask, XK_s, spawn, {.v = screenshot_fullscreencmd } },
{ MODKEY, XK_r, spawn, {.v = gsrcmd } },
{ MODKEY|ShiftMask, XK_r, spawn, {.v = gsrnomiccmd } },
{ MODKEY, XK_r, spawn, {.v = record_cmd } },
{ MODKEY|ShiftMask, XK_r, spawn, {.v = record_nomiccmd } },
{ MODKEY|ControlMask, XK_b, spawn, {.v = bgselectcmd } },
{ MODKEY|ControlMask|ShiftMask, XK_a, spawn, {.v = audioswitchcmd } },
{ MODKEY|ControlMask|ShiftMask, XK_d, spawn, {.v = displayctlcmd } },