From 41f3a08d9eac8a88a7897cd9adbbcbedbc03bfc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Czy=C5=BC?= Date: Thu, 21 Sep 2023 11:53:36 +0200 Subject: [PATCH] theming --- config.def.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 761a3df..9384baa 100644 --- a/config.def.h +++ b/config.def.h @@ -211,7 +211,7 @@ static const char *mutemic[] = {"/usr/bin/pactl", "set-source-mute", "0", "toggl static const char *downbrt[] = {"xbacklight", "-dec", "5", NULL}; static const char *upbrt[] = {"xbacklight", "-inc", "5", NULL}; static const char *displ[] = {"arandr", NULL}; -static const char *wlan[] = {"alacritty", "-e", "nmtui", NULL}; +static const char *wlan[] = {"kitty", "-e", "nmtui", NULL}; static const char *tools[] = {"lxappearance"}; static const char *search[] = {"rofi", "-show", "drun", NULL}; // static const char *launcha[] = {alttabstart}; @@ -880,7 +880,8 @@ static const char *dmenucmd[] = { #endif // BAR_DMENUMATCHTOP_PATCH NULL }; -static const char *termcmd[] = { "alacritty", NULL }; +static const char *termcmd[] = { "kitty", NULL }; +static const char *prtscrcmd[] = { "flameshot", "gui", NULL }; #if BAR_STATUSCMD_PATCH #if BAR_DWMBLOCKS_PATCH @@ -924,6 +925,8 @@ static const Key keys[] = { { MODKEY|Mod1Mask, XK_F3, spawn, {.v = downvol}}, { MODKEY, XK_n, spawn, {.v = explorer} }, { MODKEY|ShiftMask, XK_l, spawn, {.v = locksession} }, + { 0, XK_Print, spawn, {.v = prtscrcmd} }, + { MODKEY|ShiftMask, XK_s, spawn, {.v = prtscrcmd} }, #if KEYMODES_PATCH { MODKEY, XK_Escape, setkeymode, {.ui = COMMANDMODE} }, #endif // KEYMODES_PATCH