summaryrefslogtreecommitdiff
path: root/roles/shell/bash/templates/bashrc.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/shell/bash/templates/bashrc.j2')
-rw-r--r--roles/shell/bash/templates/bashrc.j28
1 files changed, 6 insertions, 2 deletions
diff --git a/roles/shell/bash/templates/bashrc.j2 b/roles/shell/bash/templates/bashrc.j2
index fabe53f..08518c9 100644
--- a/roles/shell/bash/templates/bashrc.j2
+++ b/roles/shell/bash/templates/bashrc.j2
@@ -58,13 +58,17 @@ function tmux_dev() {
58 58
59 case "$type" in 59 case "$type" in
60 "bash") start_dir="$HOME";; 60 "bash") start_dir="$HOME";;
61 "remote") start_dir="$HOME";;
61 "puppet") start_dir="/etc/puppetlabs/code" 62 "puppet") start_dir="/etc/puppetlabs/code"
62 esac 63 esac
63 64
64 if tmux has-session -t "$type" 2>/dev/null; then 65 if tmux has-session -t "$type" 2>/dev/null; then
65 tmux $m -t "$type" 66 tmux $m -t "$type"
66 else 67 else
67 if [ -n "$start_dir" ]; then 68 if [ "$type" = "remote" ]; then
69 tmux new-session -d -c $start_dir -s "$type" mosh immae.eu \; \
70 $m -t "$type"
71 elif [ -n "$start_dir" ]; then
68 tmux new-session -d -c $start_dir -s "$type" \; \ 72 tmux new-session -d -c $start_dir -s "$type" \; \
69 $m -t "$type" \; \ 73 $m -t "$type" \; \
70 new-window -c $start_dir 74 new-window -c $start_dir
@@ -83,7 +87,7 @@ _tmux_dev() {
83 local cur="${COMP_WORDS[COMP_CWORD]}" 87 local cur="${COMP_WORDS[COMP_CWORD]}"
84 prefix="$HOME/workdir/" 88 prefix="$HOME/workdir/"
85 local IFS=$'\n' 89 local IFS=$'\n'
86 local items=($(IFS=' ' compgen -W "bash puppet" -- $cur) $(compgen -d $prefix$cur)) 90 local items=($(IFS=' ' compgen -W "bash remote puppet" -- $cur) $(compgen -d $prefix$cur))
87 for item in ${items[@]}; do 91 for item in ${items[@]}; do
88 [[ $item == $prefix.* ]] && continue 92 [[ $item == $prefix.* ]] && continue
89 COMPREPLY+=("${item#$prefix}") 93 COMPREPLY+=("${item#$prefix}")