#!/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 # 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 use noise reduction pactl set-default-source rnnoise_source #--- Services # automount usb drives to /media with udev rule udiskie & # clipboard manager clipmenud & # pretty windows picom -b & # pretty screen xscreensaver --no-splash & # pywal16 color theme matches wallpaper wal -Rq # notification daemon launch-dunst & #--- Desktop # system stats #conky -c .config/conky/conkyrc & # status bar dwmblocks & while true ; do /usr/local/bin/dwm 2> /dev/null done