configs/desktop/configs/xinitrc
Lucas Barbieri 4f87eb7f23 add the rest of it
lots of changes :)
2023-10-09 18:27:04 -03:00

51 lines
857 B
Bash

#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/Xresources
sysmodmap=/etc/X11/xinit/Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -n "$(/etc/X11/chooser.sh)" ]; then
command="$(/etc/X11/chooser.sh)"
else
failsafe="yes"
fi
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/?*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
if [ -n "$failsafe" ]; then
export XDG_SESSION_TYPE="x11"
exec dbus-launch --exit-with-session leftwm | tee ~/leftwm.log
else
exec $command
fi