Integrate scripts into home-manager

This commit is contained in:
2026-04-07 18:37:17 +02:00
parent 5403b4988e
commit d7332f3cc6
5 changed files with 300 additions and 0 deletions

7
scripts/tmux-setup Normal file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env zsh
if [[ -x ./.tmux-setup ]]; then
./.setup-tmux
elif [[ -x $XDG_CONFIG_HOME/.tmux-setup ]]; then
$XDG_CONFIG_HOME/.tmux-setup
fi