summaryrefslogtreecommitdiff
path: root/dotfiles/system/.profile.d/auto-tmux-session.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/system/.profile.d/auto-tmux-session.sh')
-rw-r--r--dotfiles/system/.profile.d/auto-tmux-session.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/dotfiles/system/.profile.d/auto-tmux-session.sh b/dotfiles/system/.profile.d/auto-tmux-session.sh
deleted file mode 100644
index 2f17085..0000000
--- a/dotfiles/system/.profile.d/auto-tmux-session.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-# auto-tmux-session.sh
-# Craig Jennings <c@cjennings.net>
-# if TRAMP (ssh dumb terminal), simplify prompt, and start tmux.
-
-# start tmux when logging in via ssh
-if [[ -z "$TMUX" ]] && [ "$SSH_CONNECTION" != "" ]; then
- export TERM="xterm-mono"
- # if dumb terminal (i.e., tramp), then set a simple prompt, otherwise set monochrome TERM and start tmux
- tmux attach-session -t "$USER" || tmux new-session -s "$USER"
-fi