20 lines
521 B
Bash
Executable File
20 lines
521 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# this file is run when calling startx
|
|
|
|
# default arch init scripts
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh; do
|
|
[ -x "$f" ] && . "$f"
|
|
done
|
|
fi
|
|
|
|
# user init scripts and settings
|
|
[ -r /etc/X11/xinit/.Xmodmap ] && xmodmap /etc/X11/xinit/.Xmodmap
|
|
[ -r ~/.Xmodmap ] && xmodmap ~/.Xmodmap
|
|
[ -r ~/.Xresources ] && xrdb -merge ~/.Xresources
|
|
[ -r ~/.xprofile ] && . ~/.xprofile
|
|
|
|
# launch the session, commands below this line will be ignored
|
|
exec openbox-session
|