fonts and pamixer

Ryan 2024-06-22 11:57:32 -04:00
parent b20ac7cf52
commit f6e245d900
Signed by: ryan
GPG Key ID: 7D7E2E94267DAD95
1 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@
* Appearance
*/
static unsigned int snap = 32; /* snap pixel */
static char *fonts[] = { "Iosevka Term:size=14" };
static char *fonts[] = { "Iosevka Term:size=14","JuliaMono Nerd Font:pixelsize=14:antialias=true:autohint=true" };
static unsigned int borderpx = 1; /* border pixel of windows */
static char normbgcolor[] = "#222222";
static char normbordercolor[] = "#444444";
@ -148,10 +148,10 @@ static Key keys[] = {
/* system managemment */
{ 0, XF86XK_AudioMute, spawn, SHCMD("pamixer --toggle-mute") },
{ 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pamixer -d 5") },
{ ShiftMask, XF86XK_AudioLowerVolume, spawn, SHCMD("pamixer -d 10") },
{ 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pamixer -i 5") },
{ ShiftMask, XF86XK_AudioRaiseVolume, spawn, SHCMD("pamixer -i 10") },
{ 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pamixer -d 5 --allow-boost") },
{ ShiftMask, XF86XK_AudioLowerVolume, spawn, SHCMD("pamixer -d 10 --allow-boost") },
{ 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pamixer -i 5 --allow-boost") },
{ ShiftMask, XF86XK_AudioRaiseVolume, spawn, SHCMD("pamixer -i 10 --allow-bost") },
{ 0, XF86XK_MonBrightnessUp, spawn, SHCMD("sudo light -A 5") },
{ 0, XF86XK_MonBrightnessDown, spawn, SHCMD("sudo light -U 5") },
{ 0, XF86XK_AudioPlay, spawn, SHCMD("playerctl play-pause") },