mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
12 lines
361 B
Bash
Executable file
12 lines
361 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# include session_activity to use for sorting
|
|
OPTS="list-sessions -F #{session_activity},#{session_id},#{session_name}"
|
|
|
|
## If we are inside tmux already, don't list active sessions
|
|
# if [[ ! -z $TMUX ]]; then
|
|
# OPTS="${OPTS} -f #{==:#{session_attached},0}"
|
|
# fi
|
|
|
|
tmux ${OPTS} | sort -nr | cut -d, -f2,3 | sed -r 's/^\$([[:digit:]]+),/\1: /'
|
|
|