#!/usr/bin/env bash # Source global X session scripts. if [ -d /etc/X11/xinit/xinitrc.d ]; then for f in /etc/X11/xinit/xinitrc.d/*; do [ -x "$f" ] && . "$f" done unset f fi #--- Settings # I have a red trackpoint button synclient TouchpadOff=1 # internal mic is crappy so noise reduction pactl set-default-source rnnoise_source #--- Services # automount usb drives to /media with udev rule udiskie & # notification daemon launch-dunst & # bluetooth headset bluetooth-autoconnect -d & # clipboard manager clipmenud & # pretty windows picom -b & # pretty screen xscreensaver --no-splash & # pywal16 color theme matches wallpaper wal -Rq #--- Desktop # system stats conky -c .config/conky/conkyrc & # status bar slstatus & # restart dwm on quit while type ~/.local/bin/dwm >/dev/null ; do ~/.local/bin/dwm && continue || break ; done