diff --git a/dotfiles/.xutil b/dotfiles/.xutil index 261e6dcc46ff7d3a3b49b242d594f543f5feff97..296e79443f8e7265cae04504f04dac4db845bb76 100644 --- a/dotfiles/.xutil +++ b/dotfiles/.xutil @@ -4,4 +4,5 @@ setxkbmap -model pc105 -layout us,ru -option grp:caps_toggle picom --config ~/.picom.conf -b nitrogen --restore dunst -config ~/.dunstrc & +avizo-service & unclutter & diff --git a/dwm/config.def.h b/dwm/config.def.h index 0c24d988f363f9378008e110a1368b5c4c942474..87d7457b7d05fb7999449fbf2d961d8baf5a4200 100644 --- a/dwm/config.def.h +++ b/dwm/config.def.h @@ -26,9 +26,10 @@ static const Rule rules[] = { * WM_CLASS(STRING) = instance, class * WM_NAME(STRING) = title */ - /* class instance title tags mask isfloating monitor */ - { "Gimp", NULL, NULL, 0, 1, -1 }, - { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + /* class instance title tags mask isfloating monitor */ + { "Gimp", NULL, NULL, 0, 1, -1 }, + { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + { "Avizo-service", NULL, NULL, 0, 1, -1 } }; /* layout(s) */ @@ -66,6 +67,9 @@ static Key keys[] = { { MODKEY, XK_b, togglebar, {0} }, { 0, XK_Print, spawn, SHCMD("maim /dev/stdout | xclip -sel clip -t image/png") }, { ShiftMask, XK_Print, spawn, SHCMD("maim -s /dev/stdout | xclip -sel clip -t image/png") }, + { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("volumectl lower") }, + { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("volumectl raise") }, + { 0, XF86XK_AudioMute, spawn, SHCMD("volumectl mute") }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, { MODKEY, XK_i, incnmaster, {.i = +1 } },