mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 19:30:01 +02:00
11 lines
210 B
Bash
Executable file
11 lines
210 B
Bash
Executable file
#!/bin/bash
|
|
|
|
OPTS="list-sessions -F #{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}
|
|
|