Add local AI applications to firstboot setup
Added support for installing local AI applications like Alpaca and GPT-4 All.
This commit is contained in:
@@ -166,7 +166,8 @@ run_list GAMES \
|
|||||||
"Spiele" \
|
"Spiele" \
|
||||||
"<big><b>Spiele‑Plattformen</b></big>\nPlattformen für PC‑Spiele." \
|
"<big><b>Spiele‑Plattformen</b></big>\nPlattformen für PC‑Spiele." \
|
||||||
steam "Große Spielebibliothek und Community‑Funktionen" \
|
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 \
|
run_list MAIL \
|
||||||
"E‑Mail" \
|
"E‑Mail" \
|
||||||
@@ -175,6 +176,14 @@ run_list MAIL \
|
|||||||
geary "Schlanker Mail‑Client mit einfacher Bedienung" \
|
geary "Schlanker Mail‑Client mit einfacher Bedienung" \
|
||||||
evolution "E‑Mail, Kalender und Kontakte in einer Anwendung"
|
evolution "E‑Mail, Kalender und Kontakte in einer Anwendung"
|
||||||
|
|
||||||
|
run_list KI \
|
||||||
|
"Anwendungen für lokale KI" \
|
||||||
|
"<big><b>KI-Anwenungen</b></big>\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 \
|
run_list DEV \
|
||||||
"Entwicklung" \
|
"Entwicklung" \
|
||||||
"<big><b>Entwicklung</b></big>\nWerkzeuge für Software‑Entwicklung." \
|
"<big><b>Entwicklung</b></big>\nWerkzeuge für Software‑Entwicklung." \
|
||||||
@@ -240,6 +249,7 @@ ensure_flathub
|
|||||||
case "$g" in
|
case "$g" in
|
||||||
steam) flatpak install -y flathub com.valvesoftware.Steam ;;
|
steam) flatpak install -y flathub com.valvesoftware.Steam ;;
|
||||||
lutris) flatpak install -y flathub net.lutris.Lutris ;;
|
lutris) flatpak install -y flathub net.lutris.Lutris ;;
|
||||||
|
sober) flatpak install -y flathub org.vinegarhq.Sober ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -251,6 +261,13 @@ ensure_flathub
|
|||||||
esac
|
esac
|
||||||
done
|
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
|
for d in ${DEV//|/ }; do
|
||||||
[[ "$d" == vscode ]] && flatpak install -y flathub com.visualstudio.code
|
[[ "$d" == vscode ]] && flatpak install -y flathub com.visualstudio.code
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user