dotfiles: leviathan: arch-openbox-20231010
This commit is contained in:
19
.xinitrc
Executable file
19
.xinitrc
Executable file
@ -0,0 +1,19 @@
|
||||
#!/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
|
Reference in New Issue
Block a user