diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-06-03 20:17:57 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-06-03 20:17:57 +0200 |
commit | f1868b1a61b1823e1fbeac5246887f76c0774273 (patch) | |
tree | 76d51e94df906c01bd4908f6954315e51a38f421 | |
parent | dfd0e3c80a2dcb8c174f87d3cc5978b379e2c9f1 (diff) | |
download | scripts-f1868b1a61b1823e1fbeac5246887f76c0774273.tar.gz scripts-f1868b1a61b1823e1fbeac5246887f76c0774273.tar.bz2 scripts-f1868b1a61b1823e1fbeac5246887f76c0774273.zip |
update
-rw-r--r-- | xinitrc | 27 |
1 files changed, 15 insertions, 12 deletions
@@ -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 |