aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xinitrc27
1 files changed, 15 insertions, 12 deletions
diff --git a/xinitrc b/xinitrc
index 7af353a..a7ed490 100644
--- a/xinitrc
+++ b/xinitrc
@@ -8,11 +8,16 @@ if [ -d /etc/X11/xinit/xinitrc.d ]; then
unset f
fi
+
#--- Settings
-# I have a red trackpoint button
+
+# Make sure display is set
+# systemctl --user import-environment DISPLAY
+
+# I have a red trackpoint button and big hands
synclient TouchpadOff=1
-# internal mic is crappy so noise reduction
+# internal mic is crappy so use noise reduction
pactl set-default-source rnnoise_source
#--- Services
@@ -20,12 +25,6 @@ pactl set-default-source rnnoise_source
# automount usb drives to /media with udev rule
udiskie &
-# notification daemon
-launch-dunst &
-
-# bluetooth headset
-bluetooth-autoconnect -d &
-
# clipboard manager
clipmenud &
@@ -38,13 +37,17 @@ xscreensaver --no-splash &
# pywal16 color theme matches wallpaper
wal -Rq
+# notification daemon
+launch-dunst &
+
#--- Desktop
# system stats
-conky -c .config/conky/conkyrc &
+#conky -c .config/conky/conkyrc &
# status bar
-slstatus &
+dwmblocks &
-# restart dwm on quit
-while type ~/.local/bin/dwm >/dev/null ; do ~/.local/bin/dwm && continue || break ; done
+while true ; do
+ /usr/local/bin/dwm 2> /dev/null
+done