mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
7 lines
136 B
Bash
Executable File
7 lines
136 B
Bash
Executable File
if [ -d "${HOME}/.xinitrc.d" ] ; then
|
|
for f in "${HOME}"/.xinitrc.d/*.sh ; do
|
|
[ -x "$f" ] && . "$f"
|
|
done
|
|
unset f
|
|
fi
|