]> git.friedersdorff.com Git - max/dotfiles.git/blobdiff - bash/.profile
Merge branch 'master' of git.friedersdorff.com:max/dotfiles
[max/dotfiles.git] / bash / .profile
index ac900b6d8c78604472769b6ee13edf2dc5d42b42..43fbef4ef214c8e7a6d4e208a7ee95a231c3b8a4 100644 (file)
@@ -9,6 +9,10 @@ if test -z "${XDG_RUNTIME_DIR}"; then
   fi
 fi
 
+# Make TMPDIR
+mkdir -p "/tmp/${USER}"
+chmod 770 "/tmp/${USER}"
+
 export QT_QPA_PLATFORM=wayland-egl
 
 if [ -f ~/.config/sway/config.base ]; then
@@ -28,18 +32,6 @@ if [ -f ~/.config/termite/config.base ]; then
 fi
 
 
-if [ $HOSTNAME = "magnesium" ]; then
-  export XKB_DEFAULT_LAYOUT=us
-  export XKB_DEFAULT_VARIANT=colemak
-  export XKB_DEFAULT_OPTIONS=ctrl:nocaps
-fi
-
-if [ $HOSTNAME = "platinum" ]; then
-  export XKB_DEFAULT_LAYOUT=gb
-  export XKB_DEFAULT_VARIANT=colemak
-  export XKB_DEFAULT_OPTIONS=ctrl:nocaps
-fi
-
 # make less more friendly for non-text input files, see lesspipe(1)
 if [ -x /usr/bin/lesspipe ]; then 
   export LESSOPEN="|lesspipe %s"