+++ /dev/null
-#!/usr/bin/env bash
-
-start-pulseaudio-x11
-
-rc_dir="$XDG_CONFIG_HOME/xinit/xprofile.d"
-if [[ -d "$rc_dir" ]] ; then
- for f in "$rc_dir"/?*.sh ; do
- [ -x "$f" ] && source "$f"
- done
- unset f
-fi
-unset rc_dir
userresources=$XDG_CONFIG_HOME/xinit/Xresources
userresources_d=$XDG_CONFIG_HOME/xinit/Xresources.d
usermodmap=$HOME/.Xmodmap
-userprofile=$XDG_CONFIG_HOME/xinit/xprofile
+userprofile_d=$XDG_CONFIG_HOME/xinit/xprofile.d
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
unset f
fi
+if [ -d "$userprofile_d" ] ; then
+ for f in $userprofile_d/?*.sh ; do
+ [ -f "$f" ] && source "$f"
+ done
+ unset f
+fi
+
if [ -f "$userprofile" ]; then
source "$userprofile"
fi