14 lines
254 B
Bash
14 lines
254 B
Bash
#!/bin/sh
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh; do
|
|
[ -x "$f" ] && . "$f"
|
|
done
|
|
fi
|
|
|
|
exec bspwm
|
|
|
|
xset s off
|
|
[ -r ~/.xprofile ] && . ~/.xprofile
|
|
[ -r ~/.screenlayout/layout.sh ] && . ~/.screenlayout/layout.sh
|