diff options
| author | stkhan <personal@slickd.xyz> | 2021-04-21 16:05:29 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-04-21 16:05:29 +0000 |
| commit | 4e329f2d149d81902eaba00b2fcb41fe9dfe0f75 (patch) | |
| tree | 59635bd346d0f0a6fcb407c9ffb8214513d5115a | |
| parent | cb5243727d6152a96b9819b0d0d8e8b7633cf32a (diff) | |
Added documentation
| -rw-r--r-- | README.md | 22 | ||||
| -rw-r--r-- | dwm-6.2/config.h | 10 | ||||
| -rwxr-xr-x | dwm-6.2/dwm | bin | 66968 -> 66864 bytes | |||
| -rw-r--r-- | dwm-6.2/dwm.o | bin | 60304 -> 60056 bytes | |||
| -rw-r--r-- | dwm-6.2/themes/green | 4 | ||||
| -rwxr-xr-x | install.sh | 2 |
6 files changed, 30 insertions, 8 deletions
@@ -24,6 +24,28 @@ Note that if you want to change anything in the dwm config, do it in dwm/themes/ - Green +## Shortcuts + +### Applications + +Alt+Shift+F = Qutebrowser +Alt+D = dmenu +Alt+Enter = st + +### Other + +Alt+Shift+B = Brightness goes up +Alt+Shift+L = Brightness goes down +Alt+Shift+U = Volume goes up +Alt+Shift+D = Volume goes down +Alt+Shift+M = Toggles mute + +### Exiting + +Alt+x = Closes app +Alt+Shift+Q = Quits dwm + + ## Credits ### st diff --git a/dwm-6.2/config.h b/dwm-6.2/config.h index 7125782..bdb4ba7 100644 --- a/dwm-6.2/config.h +++ b/dwm-6.2/config.h @@ -14,7 +14,7 @@ static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#0a0063"; +static const char col_cyan[] = "#00731f"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, @@ -71,9 +71,9 @@ static Key keys[] = { { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, - { MODKEY, XK_i, incnmaster, {.i = +1 } }, +/* { MODKEY, XK_i, incnmaster, {.i = +1 } }, { MODKEY, XK_d, incnmaster, {.i = -1 } }, - { MODKEY, XK_h, setmfact, {.f = -0.05} }, +*/ { MODKEY, XK_h, setmfact, {.f = -0.05} }, { MODKEY, XK_l, setmfact, {.f = +0.05} }, { MODKEY|ShiftMask, XK_Return, zoom, {0} }, { MODKEY, XK_Tab, view, {0} }, @@ -94,9 +94,9 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_equal, setgaps, {.i = 0 } }, { MODKEY|ShiftMask, XK_f, spawn, SHCMD("qutebrowser") }, { MODKEY|ShiftMask, XK_h, spawn, SHCMD("st htop") }, - { MODKEY|ShiftMask, XK_b, spawn, SHCMD("~/.local/bin/brighter") }, - { MODKEY|ShiftMask, XK_l, spawn, SHCMD("~/.local/bin/darker") }, { MODKEY|ShiftMask, XK_u, spawn, SHCMD("~/.local/bin/vol_up") }, + { MODKEY|ShiftMask, XK_l, spawn, SHCMD("~/.local/bin/darker") }, + { MODKEY|ShiftMask, XK_b, spawn, SHCMD("~/.local/bin/brighter") }, { MODKEY|ShiftMask, XK_d, spawn, SHCMD("~/.local/bin/vol_down") }, { MODKEY|ShiftMask, XK_m, spawn, SHCMD("~/.local/bin/mute") }, TAGKEYS( XK_1, 0) diff --git a/dwm-6.2/dwm b/dwm-6.2/dwm Binary files differindex bee20d3..6cae4fc 100755 --- a/dwm-6.2/dwm +++ b/dwm-6.2/dwm diff --git a/dwm-6.2/dwm.o b/dwm-6.2/dwm.o Binary files differindex f654e85..b2c1f7d 100644 --- a/dwm-6.2/dwm.o +++ b/dwm-6.2/dwm.o diff --git a/dwm-6.2/themes/green b/dwm-6.2/themes/green index e70b91d..bdb4ba7 100644 --- a/dwm-6.2/themes/green +++ b/dwm-6.2/themes/green @@ -95,8 +95,8 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_f, spawn, SHCMD("qutebrowser") }, { MODKEY|ShiftMask, XK_h, spawn, SHCMD("st htop") }, { MODKEY|ShiftMask, XK_u, spawn, SHCMD("~/.local/bin/vol_up") }, - { MODKEY|ShiftMask, XK_d, spawn, SHCMD("~/.local/bin/darker") }, - { MODKEY|ShiftMask, XK_l, spawn, SHCMD("~/.local/bin/brighter") }, + { MODKEY|ShiftMask, XK_l, spawn, SHCMD("~/.local/bin/darker") }, + { MODKEY|ShiftMask, XK_b, spawn, SHCMD("~/.local/bin/brighter") }, { MODKEY|ShiftMask, XK_d, spawn, SHCMD("~/.local/bin/vol_down") }, { MODKEY|ShiftMask, XK_m, spawn, SHCMD("~/.local/bin/mute") }, TAGKEYS( XK_1, 0) @@ -5,7 +5,7 @@ dwm="dwm-6.2" dmenu="./dmenu-5.0" st="./st" dwmblocks="./dwmblocks" -theme='blue' +theme='green' echo "Welcome to the sarc installer!" rm log.txt sudo pacman -Sy --needed adobe-source-code-pro-fonts xorg xorg-xinit picom feh dunst pulseaudio |