2016-10-10 16:23:16 +02:00
|
|
|
#!/bin/bash
|
|
|
|
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
|
|
|
|
|
2016-10-14 14:16:46 +02:00
|
|
|
xmodmap $HOME/.Xmodmap
|
2016-10-10 16:23:16 +02:00
|
|
|
setxkbmap -option ctrl:nocaps,grp:switch,grp_led:scroll us,se
|
2018-04-07 17:57:15 +02:00
|
|
|
alacritty -e tmux attach -t0 &
|
2018-11-01 09:50:03 +01:00
|
|
|
exec $HOME/bin/dwm
|