dotfiles: leviathan: arch-openbox-20231010

This commit is contained in:
2023-10-10 20:44:53 -05:00
commit 0792b14382
390 changed files with 48601 additions and 0 deletions

19
.xinitrc Executable file
View 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