Add .xinitrc

This commit is contained in:
RealStickman 2021-01-09 10:02:48 +01:00
parent 3767af3785
commit 522bdd9efe

16
arch-config/.xinitrc Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
setxkbmap ch
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec i3 -c "$HOME/.config/i3/config"