mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 23:49:56 +00:00
9 lines
166 B
Bash
9 lines
166 B
Bash
get_tmux_option() {
|
|
local option=$1
|
|
local default_value=$2
|
|
local option_value
|
|
|
|
option_value=$(tmux show -gqv "$option")
|
|
echo "${option_value:-$default_value}"
|
|
}
|