From 9ad7425bed6329c069a933653a0c12960c0c823a Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Wed, 9 Nov 2016 19:46:00 -0700 Subject: A couple more updates for better tmuxing --- scripts/tmux_start.sh | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100755 scripts/tmux_start.sh (limited to 'scripts/tmux_start.sh') diff --git a/scripts/tmux_start.sh b/scripts/tmux_start.sh deleted file mode 100755 index 924cf78..0000000 --- a/scripts/tmux_start.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -#from http://www.huyng.com/posts/productivity-boost-with-tmux-iterm2-workspaces/ -export PATH=$PATH:/usr/local/bin - -# abort if we're already inside a TMUX session -[ "$TMUX" == "" ] || exit 0 - -# startup a "default" session if none currently exists -#tmux has-session -t _default || tmux new-session -s _default -d - -# present menu for user to choose which workspace to open -PS3="Please choose your session: " -options=("tmux" "dashboard" $(tmux list-sessions -F "#S")) -echo "Available sessions" -echo "------------------" -echo " " -select opt in "${options[@]}" -do - case $opt in - #"NEW SESSION") - #read -p "Enter new session name: " SESSION_NAME - #tmux new -s "$SESSION_NAME" - #break - #;; - "dashboard") - tmuxomatic ~/.tmux/tmuxomatic/dashboard - break - ;; - "tmux") - tmux - break - ;; - *) - tmux attach-session -t "$opt" - break - ;; - esac -done -- cgit v1.2.3