homelab-control.sh: setup wizard bei fehlendem config — kein löschen mehr, setup auch nach installation nutzbar

This commit is contained in:
2026-05-29 18:48:48 +02:00
parent e2f8313034
commit 8f8c3cac3d
2 changed files with 66 additions and 8 deletions

View File

@@ -15,12 +15,76 @@ if ! command -v ags >/dev/null 2>&1; then
fi fi
if ! command -v sshpass >/dev/null 2>&1; then if ! command -v sshpass >/dev/null 2>&1; then
notify "sshpass ist nicht installiert." if command -v gum >/dev/null 2>&1; then
gum confirm "sshpass ist nicht installiert. Installieren?" && sudo pacman -S --noconfirm sshpass || true
else
read -r -p "sshpass ist nicht installiert. Installieren? [Y/n] " response
response="${response:-Y}"
if [[ "$response" =~ ^[yY](es)?$ ]]; then
sudo pacman -S --noconfirm sshpass
fi
fi
if ! command -v sshpass >/dev/null 2>&1; then
notify "sshpass wird benötigt."
exit 1 exit 1
fi
fi fi
setup_homelab() {
local server_address server_username server_port
if command -v gum >/dev/null 2>&1; then
gum style --foreground 212 "Homelab Control Center Setup"
echo
server_address="$(gum input --prompt "Server address: " --placeholder "192.168.1.100")"
[[ -z "$server_address" ]] && { notify "Keine Adresse angegeben."; return 1; }
server_username="$(gum input --prompt "SSH username: " --value "root")"
server_port="$(gum input --prompt "SSH port: " --value "22")"
elif command -v whiptail >/dev/null 2>&1; then
server_address="$(whiptail --inputbox "Server address" 10 60 3>&1 1>&2 2>&3)" || return 1
[[ -z "$server_address" ]] && { notify "Keine Adresse angegeben."; return 1; }
server_username="$(whiptail --inputbox "SSH username" 10 60 "root" 3>&1 1>&2 2>&3)" || return 1
server_port="$(whiptail --inputbox "SSH port" 10 60 "22" 3>&1 1>&2 2>&3)" || return 1
else
echo "=== Homelab Control Center Setup ==="
echo
read -r -p "Server address (IP or domain): " server_address
[[ -z "$server_address" ]] && { echo "Keine Adresse eingegeben."; return 1; }
read -r -p "SSH username [root]: " server_username
server_username="${server_username:-root}"
read -r -p "SSH port [22]: " server_port
server_port="${server_port:-22}"
fi
mkdir -p "$(dirname "$HOMELAB_CONFIG")"
cat > "$HOMELAB_CONFIG" <<CONFIG
# Homelab Configuration
server:
address: "${server_address}"
username: "${server_username}"
port: ${server_port:-22}
control_center:
refresh_interval: 5
theme: "dark"
features:
docker: true
services: true
storage: true
network: true
monitoring: true
CONFIG
notify-send "Homelab" "Konfiguration gespeichert" >/dev/null 2>&1 || true
}
if [[ -f "$HOMELAB_CONFIG" ]]; then if [[ -f "$HOMELAB_CONFIG" ]]; then
export HOMELAB_CONFIG export HOMELAB_CONFIG
else
notify "Keine Homelab-Konfiguration gefunden. Setup startet..."
if ! setup_homelab; then
exit 1
fi
export HOMELAB_CONFIG
fi fi
cd "$HYPR_DIR" cd "$HYPR_DIR"

View File

@@ -60,12 +60,6 @@ print(' '.join(items))
copy_path "$source" "$target" copy_path "$source" "$target"
done done
if [[ ! -f "$HOME/.config/homelab/config.yaml" ]]; then
rm -f "$HOME/.config/hypr/Scripts/homelab-control.sh"
rm -f "$HOME/.config/hypr/ags/homelab.tsx"
rm -f "$HOME/.config/hypr/ags/homelab.css"
fi
if [[ -f "$dotfiles_dir/starship.toml" ]]; then if [[ -f "$dotfiles_dir/starship.toml" ]]; then
copy_path "$dotfiles_dir/starship.toml" "$HOME/.config/starship.toml" copy_path "$dotfiles_dir/starship.toml" "$HOME/.config/starship.toml"
fi fi