diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-06-22 18:05:39 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-06-22 18:05:39 +0200 |
commit | 28dd2120a2551af6b901d37e66d23359298ec603 (patch) | |
tree | 84a2f86624c0d963b2a0333573a0dfafdf4bb69a | |
parent | 5d75fe05d79e832cf0ab6bf710945d1d3a79da8c (diff) | |
download | scripts-28dd2120a2551af6b901d37e66d23359298ec603.tar.gz scripts-28dd2120a2551af6b901d37e66d23359298ec603.tar.bz2 scripts-28dd2120a2551af6b901d37e66d23359298ec603.zip |
update
-rwxr-xr-x[-rw-r--r--] | bashrc | 0 | ||||
-rwxr-xr-x[-rw-r--r--] | xinitrc | 31 |
2 files changed, 17 insertions, 14 deletions
@@ -8,27 +8,24 @@ if [ -d /etc/X11/xinit/xinitrc.d ]; then unset f fi +source $HOME/.config/shell/vars #--- Settings -# Make sure display is set -systemctl --user import-environment DISPLAY - # turn off trackpad -#xinput --disable 11 -xinput set-prop 11 172 0 - -# X220 internal mic is crap -# so use noise reduction filter -pactl set-default-source rnnoise_source +#xinput set-prop 11 172 0 +xinput --disable 11 #--- Services +# start user services +dinit -q & + # automount usb drives to /media with udev rule udiskie & # clipboard manager -#clipmenud & +clipmenud & # pretty windows picom -b & @@ -36,9 +33,14 @@ picom -b & # pretty screen xscreensaver --no-splash & +# +~/.fehbg & + # pywal16 color theme matches wallpaper wal -Rq +xrdb ~/.Xresources & + # notification daemon launch-dunst & @@ -48,8 +50,9 @@ launch-dunst & #conky -c .config/conky/conkyrc & # status bar dwmblocks-async -dwmblocks & +/usr/local/bin/dwmblocks & + +# window manager +# if dwm exits 0, restart -- this allows hot reloading of config.h +while type dwm >/dev/null ; do dwm && continue || break ; done -while true ; do - /usr/local/bin/dwm 2> /dev/null -done |