From f6e245d900b1861c1a376cccd96df9c49114dbdb Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 22 Jun 2024 11:57:32 -0400 Subject: [PATCH] fonts and pamixer --- config.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config.h b/config.h index 7c19226..60b5d02 100644 --- a/config.h +++ b/config.h @@ -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") },