dotfiles

personal configuration files and scripts
git clone https://tongong.net/git/dotfiles.git
Log | Files | Refs | README

xinitrc (425B)


      1 #!/bin/sh
      2 # X init script
      3 
      4 # keyboard layout
      5 # this line is also in dwm/autostart.sh; maybe delete one of them?
      6 setxkbmap de
      7 
      8 # load Xresources file
      9 [[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
     10 
     11 # gnome keyring is needed for minecraft
     12 mkdir -p "$HOME"/.local/share/keyrings
     13 source /etc/X11/xinit/xinitrc.d/50-systemd-user.sh
     14 eval $(gnome-keyring-daemon --start)
     15 export SSH_AUTH_SOCK
     16 
     17 # window manager
     18 exec dwm