all repos

tmux-stare @ 561d729

session manager, but my session manager
2 files changed, 2 insertions(+), 1 deletions(-)
increase size of picker, fix auto renaming of restored windows
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-05-31 11:27:52 +0300
Authored at: 2026-05-16 14:17:25 +0300
Change ID: ykzwnxwttkksrovlsykzpporqyruqrrn
Parent: 0471e15
M scripts/_pick.sh
···
        1
        1
         #!/usr/bin/env bash

      
        2
        2
         CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

      
        3
        
        -tmux display-popup -E -w 25% -h 40% "$CURRENT_DIR/pick.sh"

      
        
        3
        +tmux display-popup -E -w 25% -h 50% "$CURRENT_DIR/pick.sh"

      
M scripts/sessions.sh
···
        279
        279
                 IFS=$S read -r _ window_index window_name window_layout window_active <<<"$line"

      
        280
        280
                 window_id="$session_name:$window_index"

      
        281
        281
                 tmux new-window -k -t "$window_id" -n "$window_name"

      
        
        282
        +        tmux set-window-option -t "$window_id" automatic-rename on

      
        282
        283
                 [[ "$window_index" == "$initial_window_index" ]] && initial_window_restored=true

      
        283
        284
                 window_layouts["$window_id"]="$window_layout"

      
        284
        285
                 if [[ "$window_active" == "1" ]]; then