This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| echo "=== Proxmox: Install lightweight GUI (XFCE) + LightDM + Firefox ESR ===" | |
| echo "NOTE: This is for homelab / single-PC usage. Not recommended for production." | |
| echo | |
| # Must run as root | |
| if [[ "$(id -u)" -ne 0 ]]; then | |
| echo "Please run as root: sudo -i" |