8 lines
178 B
Bash
Executable file
8 lines
178 B
Bash
Executable file
#! /bin/bash
|
|
|
|
if [ "$HOSTNAME" = warthog ]; then
|
|
xrdb -load -DHOST_WARTHOG ~/.Xresources
|
|
else
|
|
xrdb -load ~/.Xresources
|
|
setxkbmap us -variant altgr-intl -option ctr:nocaps
|
|
fi
|