diff options
author | Cody Hiar <codyfh@gmail.com> | 2016-07-21 14:59:53 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2016-07-21 16:04:39 -0600 |
commit | a75ee65fe7993327d3c22265bfe3a207f83bb623 (patch) | |
tree | a73b6345c581593fe63059ce3c2ebfa47a3a03a4 | |
parent | 29734b71b5784b6d238af5baf30e8677a1a0cada (diff) |
Minor tweaks.
-rwxr-xr-x | scripts/tmux_start.sh | 4 | ||||
-rwxr-xr-x | scripts/tmux_window_renum.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/tmux_start.sh b/scripts/tmux_start.sh index bbf33c5..924cf78 100755 --- a/scripts/tmux_start.sh +++ b/scripts/tmux_start.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash #from http://www.huyng.com/posts/productivity-boost-with-tmux-iterm2-workspaces/ export PATH=$PATH:/usr/local/bin @@ -31,7 +31,7 @@ do break ;; *) - tmux attach-session -t $opt + tmux attach-session -t "$opt" break ;; esac diff --git a/scripts/tmux_window_renum.sh b/scripts/tmux_window_renum.sh index 6a63814..ed33584 100755 --- a/scripts/tmux_window_renum.sh +++ b/scripts/tmux_window_renum.sh @@ -1,4 +1,4 @@ -for session in $(tmux ls | awk -F: '{print $1}') ;do +for session in $(tmux ls | awk -F: '{print $1}') ; do active_window=$(tmux lsw -t ${session} | awk -F: '/\(active\)$/ {print $1}') inum=0 for window in $(tmux lsw -t ${session} | awk -F: '{print $1}') ;do |