#!/usr/bin/env bash #X11 keyboard maps setxkbmap -layout de & # use .Xmodmap if [[ -f ~/.Xmodmap ]]; then /usr/bin/xmodmap ~/.Xmodmap & fi # use .Xresources if [[ -f ~/.Xresources ]];then /usr/bin/xrdb ~/.Xresources & fi # start lxpolkit to have polkit authentication if [ -x /usr/bin/lxpolkit ]; then /usr/bin/lxpolkit & fi if [ -x "$HOME/bin/lid-switch-action" ] && [ "$HOSTNAME" = dvzrv ]; then $HOME/bin/lid-switch-action login & fi if [ -x /usr/bin/termite ]; then termite & fi