summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2021-04-21 16:05:29 +0000
committerstkhan <personal@slickd.xyz>2021-04-21 16:05:29 +0000
commit4e329f2d149d81902eaba00b2fcb41fe9dfe0f75 (patch)
tree59635bd346d0f0a6fcb407c9ffb8214513d5115a
parentcb5243727d6152a96b9819b0d0d8e8b7633cf32a (diff)
Added documentation
-rw-r--r--README.md22
-rw-r--r--dwm-6.2/config.h10
-rwxr-xr-xdwm-6.2/dwmbin66968 -> 66864 bytes
-rw-r--r--dwm-6.2/dwm.obin60304 -> 60056 bytes
-rw-r--r--dwm-6.2/themes/green4
-rwxr-xr-xinstall.sh2
6 files changed, 30 insertions, 8 deletions
diff --git a/README.md b/README.md
index e4217cf..a758a20 100644
--- a/README.md
+++ b/README.md
@@ -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
index bee20d3..6cae4fc 100755
--- a/dwm-6.2/dwm
+++ b/dwm-6.2/dwm
Binary files differ
diff --git a/dwm-6.2/dwm.o b/dwm-6.2/dwm.o
index f654e85..b2c1f7d 100644
--- a/dwm-6.2/dwm.o
+++ b/dwm-6.2/dwm.o
Binary files differ
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)
diff --git a/install.sh b/install.sh
index a282981..e71ac8c 100755
--- a/install.sh
+++ b/install.sh
@@ -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