feat: install script re-org

This commit is contained in:
2026-02-13 15:13:12 +00:00
parent faf3bf2dfc
commit eb958a36e0
26 changed files with 5 additions and 3 deletions

27
install.d/24-tmux.sh Normal file
View File

@@ -0,0 +1,27 @@
#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# Install and configure tmux.
#
if ! command -v tmux &> /dev/null; then
case "$DOTS_PKG" in
apt)
sudo apt-get install -qq tmux
;;
pacman)
sudo pacman -S --noconfirm tmux
;;
brew)
brew install tmux
;;
*)
log_warn "Skipping tmux install: no supported package manager found"
return 0
;;
esac
fi
tmux -V
log_pass "tmux installed"