about summary refs log tree commit diff
path: root/home/profiles/zsh/tmux.zsh
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-16 20:09:27 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-16 20:09:27 -0700
commit354afc1754f0616cd086b1a6f607022155a1f9e3 (patch)
treed79cde08506a4297e749828d8f6662b88f69b5cd /home/profiles/zsh/tmux.zsh
parenthome/ssh: add rsync.net to the match block (diff)
downloadworld-354afc1754f0616cd086b1a6f607022155a1f9e3.tar.gz
profiles/workstation: stop using dark mode + prezto
Diffstat (limited to 'home/profiles/zsh/tmux.zsh')
-rw-r--r--home/profiles/zsh/tmux.zsh9
1 files changed, 0 insertions, 9 deletions
diff --git a/home/profiles/zsh/tmux.zsh b/home/profiles/zsh/tmux.zsh
deleted file mode 100644
index 97944f5..0000000
--- a/home/profiles/zsh/tmux.zsh
+++ /dev/null
@@ -1,9 +0,0 @@
-# If we're not in an ssh connection, and tmux is installed, and we're
-# not already in a tmux session, attach to the session named
-# 'default', and if the session does not exist, start one named
-# 'default'
-if [ -z "$SSH_CONNECTION" ]; then
-  if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then
-    tmux attach -t default || tmux new -s default
-  fi
-fi