summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dwm/dwm-6.6/config.def.h10
-rw-r--r--dwm/dwm-6.6/config.mk2
-rwxr-xr-xdwm/setup.sh2
-rw-r--r--qutebrowser/autoconfig.yml2
-rwxr-xr-xslstatus/setup.sh2
-rw-r--r--slstatus/slstatus-1.1/config.mk2
-rwxr-xr-xst/setup.sh2
-rw-r--r--st/st-0.9.3/config.mk2
-rw-r--r--symlinks.csv3
-rw-r--r--volume/volumedown3
-rw-r--r--volume/volumemute3
-rw-r--r--volume/volumeup3
12 files changed, 25 insertions, 11 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
diff --git a/qutebrowser/autoconfig.yml b/qutebrowser/autoconfig.yml
index 403eb4f..510c3c2 100644
--- a/qutebrowser/autoconfig.yml
+++ b/qutebrowser/autoconfig.yml
@@ -6,6 +6,8 @@
config_version: 2
settings:
+ auto_save.session:
+ global: true
colors.webpage.darkmode.enabled:
global: true
content.pdfjs:
diff --git a/slstatus/setup.sh b/slstatus/setup.sh
index dec7195..06f27d6 100755
--- a/slstatus/setup.sh
+++ b/slstatus/setup.sh
@@ -5,4 +5,4 @@ set -x
cd slstatus-1.1
make config.h
-sudo make install
+make install
diff --git a/slstatus/slstatus-1.1/config.mk b/slstatus/slstatus-1.1/config.mk
index a8f5c23..0de16de 100644
--- a/slstatus/slstatus-1.1/config.mk
+++ b/slstatus/slstatus-1.1/config.mk
@@ -4,7 +4,7 @@ VERSION = 1.1
# customize below to fit your system
# paths
-PREFIX = /usr/local
+PREFIX = ${HOME}/.local
MANPREFIX = $(PREFIX)/share/man
X11INC = /usr/X11R6/include
diff --git a/st/setup.sh b/st/setup.sh
index c3cabf0..25cc12f 100755
--- a/st/setup.sh
+++ b/st/setup.sh
@@ -5,4 +5,4 @@ set -x
cd st-0.9.3
make config.h
-sudo make install
+make install
diff --git a/st/st-0.9.3/config.mk b/st/st-0.9.3/config.mk
index 2fc854e..f5a97f5 100644
--- a/st/st-0.9.3/config.mk
+++ b/st/st-0.9.3/config.mk
@@ -4,7 +4,7 @@ VERSION = 0.9.3
# Customize below to fit your system
# paths
-PREFIX = /usr/local
+PREFIX = ${HOME}/.local
MANPREFIX = $(PREFIX)/share/man
X11INC = /usr/X11R6/include
diff --git a/symlinks.csv b/symlinks.csv
index 40ef898..6589763 100644
--- a/symlinks.csv
+++ b/symlinks.csv
@@ -11,3 +11,6 @@ fbterm/fbterm-emacs.sh,.local/bin/fbterm-emacs.sh
brightness/brightnessup,.local/bin/brightnessup
brightness/brightnessdown,.local/bin/brightnessdown
brightness/brightnessmax,.local/bin/brightnessmax
+volume/volumeup,.local/bin/volumeup
+volume/volumedown,.local/bin/volumedown
+volume/volumemute,.local/bin/volumemute
diff --git a/volume/volumedown b/volume/volumedown
new file mode 100644
index 0000000..aacc4fd
--- /dev/null
+++ b/volume/volumedown
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+exec amixer set Master 5%-
diff --git a/volume/volumemute b/volume/volumemute
new file mode 100644
index 0000000..ac0f0d0
--- /dev/null
+++ b/volume/volumemute
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+exec amixer set Master toggle
diff --git a/volume/volumeup b/volume/volumeup
new file mode 100644
index 0000000..49d508e
--- /dev/null
+++ b/volume/volumeup
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+exec amixer set Master 5%+ \ No newline at end of file