1
0
mirror of https://github.com/Morantron/tmux-fingers.git synced 2024-06-30 08:01:00 +02:00
tmux-fingers/kill-windows.sh
Jorge Morante 9b50a233be wip
2023-04-12 15:46:20 +02:00

4 lines
130 B
Bash

for id in $(tmux list-windows -F "#{window_id}:#{window_name}" | grep 'fingers' | cut -f1 -d:); do
tmux kill-window -t $id
done