21 lines
390 B
Bash
Executable file
21 lines
390 B
Bash
Executable file
#! /bin/bash
|
|
|
|
case "$HOSTNAME" in
|
|
fau*)
|
|
# detects fau-machine and defines variable for Xresources
|
|
xrdb -load -DHOST_FAUCIP ~/.Xresources
|
|
;;
|
|
*)
|
|
# other hosts cann use SRVR_host
|
|
xrdb -load ~/.Xresources
|
|
;;
|
|
esac
|
|
|
|
setxkbmap us -variant altgr-intl -option ctrl:nocaps -option compose:menu
|
|
|
|
if [ -d $HOME/.fonts ]; then
|
|
xset +fp $HOME/.fonts
|
|
xset fp rehash
|
|
fi
|
|
|
|
exec herbstluftwm
|