From 351fc511e870ee3a40290739c45dcc34e102c097 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Sun, 15 Aug 2021 14:15:53 +0200 Subject: [PATCH] Minor tweak --- src/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.h b/src/config.h index c74ddf1..1a81d91 100644 --- a/src/config.h +++ b/src/config.h @@ -79,7 +79,7 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-p", "Run >", "-z", "512", NULL }; static const char *termcmd[] = { "alacritty", NULL }; static const char *betterlockscreencmd[] = { "betterlockscreen", "--lock", "blur", NULL }; -static const char *spectaclecmd[] = { "spectacle", "-r", "-c", "-b", NULL }; +static const char *screenshotcmd[] = { "flameshot", "gui", NULL }; static const char *cmuspausecmd[] = { "cmus-remote", "--pause", NULL }; static Key keys[] = { @@ -125,7 +125,7 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_x, spawn, {.v = betterlockscreencmd} }, - { MODKEY, XK_Print, spawn, {.v = spectaclecmd} }, + { MODKEY, XK_Print, spawn, {.v = screenshotcmd} }, { MODKEY, XK_u, spawn, {.v = cmuspausecmd} }, { MODKEY, XK_g, switchgaps, {.i = +1 } }, { MODKEY, XK_v, switchgaps, {.i = -1 } },