Files
xinit/.xinitrc
T
2026-04-01 14:05:17 +02:00

12 lines
170 B
Bash
Executable File

#!/bin/sh
# System/wide xinit scripts
if [ -d /etc/X11/xinit/xinitrc.d]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[-x "$f"] && . "$f"
done
unset f
fi
exec dwm