diff --git a/files/etc/skel/.config/firstboot/firstboot-setup.sh b/files/etc/skel/.config/firstboot/firstboot-setup.sh index dccd5ca..263d2d3 100644 --- a/files/etc/skel/.config/firstboot/firstboot-setup.sh +++ b/files/etc/skel/.config/firstboot/firstboot-setup.sh @@ -166,7 +166,8 @@ run_list GAMES \ "Spiele" \ "Spiele‑Plattformen\nPlattformen für PC‑Spiele." \ steam "Große Spielebibliothek und Community‑Funktionen" \ - lutris "Zentrale Verwaltung von Spielen aus vielen Quellen" + lutris "Zentrale Verwaltung von Spielen aus vielen Quellen" \ + sober "Spiele Roblox auf Linux" run_list MAIL \ "E‑Mail" \ @@ -175,6 +176,14 @@ run_list MAIL \ geary "Schlanker Mail‑Client mit einfacher Bedienung" \ evolution "E‑Mail, Kalender und Kontakte in einer Anwendung" +run_list KI \ + "Anwendungen für lokale KI" \ + "KI-Anwenungen\nProgramme für lokale KI-Anwendungen" \ + alpaca "All-In-One-Anwendung für lokale Chat- und RAG-Nutzung" \ + gpt4all "All-In-One-Anwendung von NomicAI" + + + run_list DEV \ "Entwicklung" \ "Entwicklung\nWerkzeuge für Software‑Entwicklung." \ @@ -240,6 +249,7 @@ ensure_flathub case "$g" in steam) flatpak install -y flathub com.valvesoftware.Steam ;; lutris) flatpak install -y flathub net.lutris.Lutris ;; + sober) flatpak install -y flathub org.vinegarhq.Sober ;; esac done @@ -251,6 +261,13 @@ ensure_flathub esac done + for m in ${KI//|/ }; do + case "$m" in + alpaca) flatpak install -y flathub com.jeffser.Alpaca ;; + gpt4all) flatpak install -y flathub io.gpt4all.gpt4all ;; + esac + done + for d in ${DEV//|/ }; do [[ "$d" == vscode ]] && flatpak install -y flathub com.visualstudio.code done