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,10 @@
#!/usr/bin/env bash
basedir="$(cd "$(dirname "$0")" && pwd)"
# shellcheck source=lib/tmux.bash
. "${basedir}/lib/tmux.bash"
key="$(get_tmux_option '@project-key' 'g')"
if [[ -n "$key" ]]; then
tmux bind-key "$key" run-shell -b "${basedir}/libexec/switch-project.bash"
fi