From: Ismaƫl Bouya Date: Sat, 10 Nov 2018 07:11:16 +0000 (+0100) Subject: Add pupper tmux session X-Git-Tag: v1.0~31 X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FAnsible.git;a=commitdiff_plain;h=a65169cc0ad0e83e0febb22686e7efc250101615 Add pupper tmux session --- diff --git a/roles/shell/bash/templates/bashrc.j2 b/roles/shell/bash/templates/bashrc.j2 index 742e1e0..2018f55 100644 --- a/roles/shell/bash/templates/bashrc.j2 +++ b/roles/shell/bash/templates/bashrc.j2 @@ -54,12 +54,18 @@ function tmux_dev() { m=attach-session fi + case "$type" in + "bash") start_dir="$HOME";; + "puppet") start_dir="/etc/puppetlabs/code" + esac + if tmux has-session -t "$type" 2>/dev/null; then tmux $m -t "$type" else - if [ "$type" = "bash" ]; then - tmux new-session -d -s "$type" - tmux $m -t "$type" + if [ -n "$start_dir" ]; then + tmux new-session -d -c $start_dir -s "$type" \; \ + $m -t "$type" \; \ + new-window -c $start_dir else tmux new-session -d -c "$HOME/workdir/$type" -s "$type" \; \ $m -t "$type" \; \ @@ -75,7 +81,7 @@ _tmux_dev() { local cur="${COMP_WORDS[COMP_CWORD]}" prefix="$HOME/workdir/" local IFS=$'\n' - local items=($(compgen -W "bash" -- $cur) $(compgen -d $prefix$cur)) + local items=($(IFS=' ' compgen -W "bash puppet" -- $cur) $(compgen -d $prefix$cur)) for item in ${items[@]}; do [[ $item == $prefix.* ]] && continue COMPREPLY+=("${item#$prefix}")