Add tmux package and common dotfiles deployment

This commit is contained in:
Fabio Scotto di Santolo
2026-03-17 10:17:42 +01:00
parent 046e69a2b6
commit cf86fcdc81
229 changed files with 10575 additions and 0 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