mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
7 lines
136 B
Bash
7 lines
136 B
Bash
|
if [ -d "${HOME}/.xinitrc.d" ] ; then
|
||
|
for f in "${HOME}"/.xinitrc.d/*.sh ; do
|
||
|
[ -x "$f" ] && . "$f"
|
||
|
done
|
||
|
unset f
|
||
|
fi
|