dwm

my dwm build
git clone https://s.sonu.ch/~roket1428/dwm.git
Log | Files | Refs | README | LICENSE

commit 7a52587645f167230f31453b632d8dbe03ded718
parent 5663b3d81566aba5b9c582f613c11d1371d2ad0e
Author: roket1428 <meorhan@protonmail.com>
Date:   Tue, 24 Aug 2021 19:39:28 +0300

removed rt signals as they not supported in OpenBSD

Diffstat:
Mconfig.h | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/config.h b/config.h @@ -64,13 +64,13 @@ static Key keys[] = { { MODKEY, XK_f, togglefullscr, {0} }, { MODKEY|ShiftMask, XK_f, togglebar, {0} }, { MODKEY|ShiftMask, XK_q, killclient, {0} }, - { MODKEY, XK_n, spawn, SHCMD("cmus-remote -p && pkill -RTMIN+9 dwmblocks") }, - { MODKEY, XK_m, spawn, SHCMD("cmus-remote -u && pkill -RTMIN+9 dwmblocks") }, - { MODKEY, XK_odiaeresis, spawn, SHCMD("cmus-remote -n && pkill -RTMIN+9 dwmblocks") }, - { MODKEY, XK_ccedilla, spawn, SHCMD("cmus-remote -r && pkill -RTMIN+9 dwmblocks") }, - { MODKEY, XK_j, spawn, SHCMD("sndioctl output.level=+0.1 && pkill -RTMIN+10 dwmblocks") }, - { MODKEY, XK_k, spawn, SHCMD("sndioctl output.level=-0.1 && pkill -RTMIN+10 dwmblocks") }, - { MODKEY, XK_l, spawn, SHCMD("sndioctl output.mute=! && pkill -RTMIN+10 dwmblocks") }, + { MODKEY, XK_n, spawn, SHCMD("cmus-remote -p") }, + { MODKEY, XK_m, spawn, SHCMD("cmus-remote -u") }, + { MODKEY, XK_odiaeresis, spawn, SHCMD("cmus-remote -n") }, + { MODKEY, XK_ccedilla, spawn, SHCMD("cmus-remote -r") }, + { MODKEY, XK_j, spawn, SHCMD("sndioctl output.level=+0.1") }, + { MODKEY, XK_k, spawn, SHCMD("sndioctl output.level=-0.1") }, + { MODKEY, XK_l, spawn, SHCMD("sndioctl output.mute=!") }, { 0, XK_Scroll_Lock, spawn, SHCMD("scrot -q 100 '%s-sshot.jpg' -e 'mv $f /home/roket1428/files/screenshots/'") }, { MODKEY, XK_Up, setmfact, {.f = -0.05} },