This commit is contained in:
qugalet 2024-11-12 00:48:23 +02:00
parent c9ff65b3b8
commit 9b669e02be

View file

@ -16,7 +16,7 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
static const int showsystray = 1; /* 0 means no systray */ static const int showsystray = 1; /* 0 means no systray */
static const int showbar = 1; /* 0 means no bar */ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */ static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "Fira Code:size=12", "Symbols Nerd Font:size=12" }; static const char *fonts[] = { "Fira Code:size=12", "Noto Emoji:pixelsize=12:antialias=true:autohint=true", "Symbols Nerd Font:size=12" };
static const char dmenufont[] = "Fira Code:size=12"; static const char dmenufont[] = "Fira Code:size=12";
static char normbgcolor[] = "#1d2021"; static char normbgcolor[] = "#1d2021";
static char normbordercolor[] = "#1d2021"; static char normbordercolor[] = "#1d2021";
@ -56,7 +56,7 @@ static const Rule rules[] = {
*/ */
/* class instance title tags mask isfloating isterminal noswallow monitor */ /* class instance title tags mask isfloating isterminal noswallow monitor */
{ "Gimp", NULL, NULL, 0, 1, 0, 0, -1 }, { "Gimp", NULL, NULL, 0, 1, 0, 0, -1 },
{ "st-256color", NULL, NULL, 0, 0, 1, 0, -1 }, { "Alacritty", NULL, NULL, 0, 0, 1, 0, -1 },
{ NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
}; };
@ -142,9 +142,9 @@ static const Key keys[] = {
{ 0, XF86XK_AudioNext, spawn, SHCMD("music_mode next") }, { 0, XF86XK_AudioNext, spawn, SHCMD("music_mode next") },
{ 0, XF86XK_AudioPrev, spawn, SHCMD("music_mode prev") }, { 0, XF86XK_AudioPrev, spawn, SHCMD("music_mode prev") },
{ 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pactl set-sink-volume 0 +5%") }, { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pactl set-sink-volume 0 +5%; sigdwmblocks 2") },
{ 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pactl set-sink-volume 0 -5%") }, { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pactl set-sink-volume 0 -5%; sigdwmblocks 2") },
{ 0, XF86XK_AudioMute, spawn, SHCMD("pactl set-sink-mute 0 toggle") }, { 0, XF86XK_AudioMute, spawn, SHCMD("pactl set-sink-mute 0 toggle; sigdwmblocks 2") },
// screenshot // screenshot
{ 0, XK_Print, spawn, SHCMD("screenshot full") }, { 0, XK_Print, spawn, SHCMD("screenshot full") },