X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/0a0094e2364ef2aa8a4cc61a434596deaf6e726b..fd2e16fc92dd7a33908ceff1e31f03e05a78fda9:/xprofile diff --git a/xprofile b/xprofile index 35de8a9..97580b9 100644 --- a/xprofile +++ b/xprofile @@ -1,3 +1,10 @@ -compton -b --config ~/.config/compton.conf -xmodmap ~/.Xmodmap -eval $(gpg-agent --daemon) & +#!/bin/sh + +userprofile_d=$XDG_CONFIG_HOME/xprofile.d + +if [ -d "$userprofile_d" ] ; then + for f in $userprofile_d/?*.sh ; do + [ -f "$f" ] && source "$f" + done + unset f +fi