Restrict tmux and desktop tools to Void hosts

This commit is contained in:
Fabio Scotto di Santolo
2026-03-31 19:00:15 +02:00
parent 99f1610a2c
commit 353ebb2624
177 changed files with 11 additions and 102 deletions

View File

@@ -0,0 +1,8 @@
get_tmux_option() {
local option=$1
local default_value=$2
local option_value
option_value=$(tmux show -gqv "$option")
echo "${option_value:-$default_value}"
}