13 lines
278 B
Bash
Executable file
13 lines
278 B
Bash
Executable file
#! /bin/bash
|
|
|
|
case "$HOSTNAME" in
|
|
fau*)
|
|
# detects fau-machine and defines variable for Xresources
|
|
xrdb -load -DHOST_FAUCIP ~/.Xresources
|
|
setxkbmap us -variant altgr-intl -option ctr:nocaps
|
|
;;
|
|
*)
|
|
# other hosts cann use SRVR_host
|
|
xrdb -load ~/.Xresources
|
|
;;
|
|
esac
|