dots/chezmoi/dot_config/tmux/plugins/tmux-fzf/scripts/executable_window.sh
aleidk 224c7ed45c Migrate to chezmoi
Move config files from config to chezmoi
Add script to auto install packages with DNF and Cargo
2024-03-01 20:26:02 -03:00

78 lines
3.8 KiB
Bash

#!/usr/bin/env bash
CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "$CURRENT_DIR/.envs"
current_window_origin=$(tmux display-message -p '#S:#I: #{window_name}')
current_window=$(tmux display-message -p '#S:#I:')
if [[ -z "$TMUX_FZF_WINDOW_FILTER" ]]; then
window_filter="-a"
else
window_filter="-f \"$TMUX_FZF_WINDOW_FILTER\""
fi
if [[ -z "$TMUX_FZF_WINDOW_FORMAT" ]]; then
windows=$(tmux list-windows $window_filter)
else
windows=$(tmux list-windows $window_filter -F "#S:#{window_index}: $TMUX_FZF_WINDOW_FORMAT")
fi
FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS --header='Select an action.'"
if [[ -z "$1" ]]; then
action=$(printf "switch\nlink\nmove\nswap\nrename\nkill\n[cancel]" | eval "$TMUX_FZF_BIN $TMUX_FZF_OPTIONS")
else
action="$1"
fi
[[ "$action" == "[cancel]" || -z "$action" ]] && exit
if [[ "$action" == "link" ]]; then
cur_ses=$(tmux display-message -p | sed -e 's/^.//' -e 's/].*//')
last_win_num=$(tmux list-windows | sort -r | sed '2,$d' | sed 's/:.*//')
windows=$(echo "$windows" | grep -v "^$cur_ses")
FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS --header='Select source window.'"
src_win_origin=$(printf "%s\n[cancel]" "$windows" | eval "$TMUX_FZF_BIN $TMUX_FZF_OPTIONS $TMUX_FZF_PREVIEW_OPTIONS")
[[ "$src_win_origin" == "[cancel]" || -z "$src_win_origin" ]] && exit
src_win=$(echo "$src_win_origin" | sed 's/: .*//')
tmux link-window -a -s "$src_win" -t "$cur_ses"
elif [[ "$action" == "move" ]]; then
cur_ses=$(tmux display-message -p | sed -e 's/^.//' -e 's/].*//')
last_win_num=$(tmux list-windows | sort -r | sed '2,$d' | sed 's/:.*//')
windows=$(echo "$windows" | grep -v "^$cur_ses")
FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS --header='Select source window.'"
src_win_origin=$(printf "%s\n[cancel]" "$windows" | eval "$TMUX_FZF_BIN $TMUX_FZF_OPTIONS $TMUX_FZF_PREVIEW_OPTIONS")
[[ "$src_win_origin" == "[cancel]" || -z "$src_win_origin" ]] && exit
src_win=$(echo "$src_win_origin" | sed 's/: .*//')
tmux move-window -a -s "$src_win" -t "$cur_ses"
else
if [[ "$action" == "kill" ]]; then
FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS --header='Select target window(s). Press TAB to mark multiple items.'"
else
FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS --header='Select target window.'"
fi
if [[ "$action" != "switch" ]]; then
target_origin=$(printf "[current]\n%s\n[cancel]" "$windows" | eval "$TMUX_FZF_BIN $TMUX_FZF_OPTIONS $TMUX_FZF_PREVIEW_OPTIONS")
target_origin=$(echo "$target_origin" | sed -E "s/\[current\]/$current_window_origin/")
else
windows=$(echo "$windows" | grep -v "^$current_window")
target_origin=$(printf "%s\n[cancel]" "$windows" | eval "$TMUX_FZF_BIN $TMUX_FZF_OPTIONS $TMUX_FZF_PREVIEW_OPTIONS")
fi
[[ "$target_origin" == "[cancel]" || -z "$target_origin" ]] && exit
target=$(echo "$target_origin" | sed 's/: .*//')
if [[ "$action" == "kill" ]]; then
echo "$target" | sort -r | xargs -I{} tmux unlink-window -k -t {}
elif [[ "$action" == "rename" ]]; then
tmux command-prompt -I "rename-window -t $target "
elif [[ "$action" == "swap" ]]; then
windows=$(echo "$windows" | grep -v "^$target")
FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS --header='Select another target window.'"
target_swap_origin=$(printf "%s\n[cancel]" "$windows" | eval "$TMUX_FZF_BIN $TMUX_FZF_OPTIONS $TMUX_FZF_PREVIEW_OPTIONS")
[[ "$target_swap_origin" == "[cancel]" || -z "$target_swap_origin" ]] && exit
target_swap=$(echo "$target_swap_origin" | sed 's/: .*//')
tmux swap-pane -s "$target" -t "$target_swap"
elif [[ "$action" == "switch" ]]; then
echo "$target" | sed 's/:.*//g' | xargs -I{} tmux switch-client -t {}
echo "$target" | xargs -I{} tmux select-window -t {}
fi
fi