Ajout du script xinitrc

This commit is contained in:
Hippolyte Chauvin 2023-04-16 12:48:57 +02:00
parent d271d5589a
commit 29c3841354

40
home/xinitrc Executable file
View file

@ -0,0 +1,40 @@
#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
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
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
# Environment
export \
TERMINAL=st \
DRI_PRIME=1 \
QT_QPA_PLATFORMTHEME=qt5ct
numlockx &
exec /usr/bin/i3