12 lines
170 B
Bash
Executable File
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
|