mirror of
https://github.com/danielepintore/dotfiles.git
synced 2026-06-15 20:25:13 +02:00
Add tmux-sessionizer
This commit is contained in:
@@ -5,4 +5,6 @@
|
||||
export PATH="$PATH:/opt/flutter/bin/"
|
||||
export PATH="$PATH:/home/daniele/go/bin/"
|
||||
|
||||
export PATH="$PATH:$HOME/.local/scripts/"
|
||||
|
||||
export CAPACITOR_ANDROID_STUDIO_PATH="/home/daniele/.local/share/JetBrains/Toolbox/apps/android-studio/bin/studio.sh"
|
||||
|
||||
@@ -75,5 +75,8 @@ source $HOME/.config/zsh/themes/dracula.zsh
|
||||
# Set up fzf key bindings and fuzzy completion
|
||||
eval "$(fzf --zsh)"
|
||||
|
||||
# tmux-sessionizer
|
||||
bindkey -s ^n "tmux-sessionizer\n"
|
||||
|
||||
# Zsh syntax highlighting
|
||||
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
|
||||
25
.local/scripts/tmux-sessionizer
Executable file
25
.local/scripts/tmux-sessionizer
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [[ $# -eq 1 ]]; then
|
||||
selected=$1
|
||||
else
|
||||
selected=$(find ~/Documents ~/Documents/projects ~/ -mindepth 1 -maxdepth 1 -type d | fzf)
|
||||
fi
|
||||
|
||||
if [[ -z $selected ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
selected_name=$(basename "$selected" | tr . _)
|
||||
tmux_running=$(pgrep tmux)
|
||||
|
||||
if [[ -z $TMUX ]] && [[ -z $tmux_running ]]; then
|
||||
tmux new-session -s $selected_name -c $selected
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if ! tmux has-session -t=$selected_name 2> /dev/null; then
|
||||
tmux new-session -ds $selected_name -c $selected
|
||||
fi
|
||||
|
||||
tmux switch-client -t $selected_name
|
||||
13
.local/scripts/tmux-windowizer
Executable file
13
.local/scripts/tmux-windowizer
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
branch_name=$(basename $1)
|
||||
session_name=$(tmux display-message -p "#S")
|
||||
clean_name=$(echo $branch_name | tr "./" "__")
|
||||
target="$session_name:$clean_name"
|
||||
|
||||
if ! tmux has-session -t $target 2> /dev/null; then
|
||||
tmux neww -dn $clean_name
|
||||
fi
|
||||
|
||||
shift
|
||||
tmux send-keys -t $target "$*"
|
||||
Reference in New Issue
Block a user