diff --git a/profile b/profile index cf6adbe..fe27db4 100755 --- a/profile +++ b/profile @@ -17,7 +17,8 @@ test -f "${HOME}/.dotfiles/rc.py" && \ __add_to_path(){ for p in "$@" do - echo $PATH | grep -E "^$p:|:$p:|:$p$" >/dev/null 2>&1 || PATH="${PATH}:$p" + echo $PATH | grep -E "^$p:|:$p:|:$p$" >/dev/null 2>&1 || \ + PATH="${PATH}:$p" done } # export PATH="${PATH}:${HOME}/bin" @@ -30,6 +31,11 @@ export LD_LIBRARY_PATH="$HOME/.local/lib:$LD_LIBRARY_PATH" type setterm >/dev/null 2>&1 && setterm -blank 30 -powersave on # -powerdown 10 # in my environment powerdown does not work -export TMP="/tmp/${USER}-tmp" +if test -n $TMPDIR +then + export TMP=$TMPDIR +else + export TMP=/tmp/ +export TMP="${TMP}${USER}-tmp" export TEMP="$TMP" mkdir -p "$TMP" diff --git a/tmux.conf b/tmux.conf index 6ecc53c..90c054e 100644 --- a/tmux.conf +++ b/tmux.conf @@ -45,7 +45,3 @@ if "test `hostname` = newkiwi" \ setw -g window-status-current-fg black setw -g window-status-current-bg white setw -g window-status-current-attr bold - -# this does not work because it runs asyncly -# if "test -n \"tmux display -p '#{client_termname}' | grep -o 256color\"" \ -# "set -g default-terminal screen-256color" "set -g default-terminal screen"