diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-14 13:00:37 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-14 13:00:37 -0800 |
| commit | 9799f5c3eff3f97a3da220705cab5a7bf5ae61a7 (patch) | |
| tree | 1a1bf67c8107e450a617c43286719142aeea5c9f /dwm | |
| parent | e746b8156ef22dd2d17c3007e3c68ce6a3c11613 (diff) | |
suckless normalize to .local/bin, volume+term+browse norm form
Diffstat (limited to 'dwm')
| -rw-r--r-- | dwm/dwm-6.6/config.def.h | 10 | ||||
| -rw-r--r-- | dwm/dwm-6.6/config.mk | 2 | ||||
| -rwxr-xr-x | dwm/setup.sh | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/dwm/dwm-6.6/config.def.h b/dwm/dwm-6.6/config.def.h index 964e6d6..7989be8 100644 --- a/dwm/dwm-6.6/config.def.h +++ b/dwm/dwm-6.6/config.def.h @@ -60,14 +60,14 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_purple, "-sf", col_gray4, NULL }; -static const char *termcmd[] = { "alacritty", NULL }; -static const char *browsercmd[] = { "qutebrowser", NULL }; +static const char *termcmd[] = { "tmuterm", NULL }; +static const char *browsercmd[] = { "tmubrowse", NULL }; static const char *bupcmd[] = { "brightnessup", NULL }; static const char *bdowncmd[] = { "brightnessdown", NULL }; static const char *bmaxcmd[] = { "brightnessmax", NULL }; -static const char *upvol[] = { "/usr/bin/amixer", "set", "Master", "5%+", NULL }; -static const char *downvol[] = { "/usr/bin/amixer", "set", "Master", "5%-", NULL }; -static const char *mutevol[] = { "/usr/bin/amixer", "set", "Master", "toggle", NULL }; +static const char *upvol[] = { "volumeup", NULL }; +static const char *downvol[] = { "volumedown", NULL }; +static const char *mutevol[] = { "volumemute", NULL }; #include "movestack.c" static const Key keys[] = { diff --git a/dwm/dwm-6.6/config.mk b/dwm/dwm-6.6/config.mk index b469a2b..e3a2826 100644 --- a/dwm/dwm-6.6/config.mk +++ b/dwm/dwm-6.6/config.mk @@ -4,7 +4,7 @@ VERSION = 6.6 # Customize below to fit your system # paths -PREFIX = /usr/local +PREFIX = ${HOME}/.local MANPREFIX = ${PREFIX}/share/man X11INC = /usr/X11R6/include diff --git a/dwm/setup.sh b/dwm/setup.sh index 9b958dd..74fb40d 100755 --- a/dwm/setup.sh +++ b/dwm/setup.sh @@ -5,4 +5,4 @@ set -x cd dwm-6.6 make config.h -sudo make install +make install |
