Add .xinitrc

This commit is contained in:
daniele 2024-04-01 16:17:18 +02:00
parent 3a77c2a5c3
commit 1ce0166ec9
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514

21
.xinitrc Normal file
View File

@ -0,0 +1,21 @@
#!/bin/sh
userresources=$HOME/.Xresources
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
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
setxkbmap -layout it,us,sk -variant ,,qwerty &
xinput set-prop 17 "Device Enabled" 0
xset s off
xset -dpms
exec xmonad