Files
Linux_post_install/apps/utilities/btop.sh
T
2026-07-28 10:28:11 -04:00

11 lines
249 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
source "$(dirname "$0")/../../lib/common.sh"
install_btop() {
command -v btop &>/dev/null && { log "btop already installed"; return 0; }
spawn "Installing btop" sudo apt install -y btop
}
install_btop