]> git.rmz.io Git - dotfiles.git/blob - xinit/xprofile
xinit: use USB-C for both monitors on skull-canyon
[dotfiles.git] / xinit / xprofile
1 #!/usr/bin/env bash
2
3 start-pulseaudio-x11
4
5 rc_dir="$XDG_CONFIG_HOME/xinit/xprofile.d"
6 if [[ -d "$rc_dir" ]] ; then
7 for f in "$rc_dir"/?*.sh ; do
8 [ -x "$f" ] && source "$f"
9 done
10 unset f
11 fi
12 unset rc_dir