1
0
Fork 0
dotfiles/.config/X11/realinit
Luca Bilke 6174764bd4 small updates
small updates

small updates
2023-06-04 10:09:34 +02:00

17 lines
285 B
Bash
Executable file

#!/bin/sh
X11_CONFIG="$XDG_CONFIG_HOME/X11"
SESSIONFILES=$(run-parts --list "$X11_CONFIG/xsession.d")
if [ -n "$SESSIONFILES" ]; then
set +e
for SESSIONFILE in $SESSIONFILES; do
message "Executing $SESSIONFILE"
$SESSIONFILE
done
set -e
fi
. "$X11_CONFIG/xprofile"
exec dwm