diff --git a/apps/Verba/description b/apps/Verba/description new file mode 100644 index 0000000000..1ba3b8870a --- /dev/null +++ b/apps/Verba/description @@ -0,0 +1 @@ +verba is an ai slop and doomscrolling free privacy first text social media platform (first version is in german, english is coming too). no profit for me. i make it in my free time as hobby. written in only one html file, but with menu and different sites. e-mail verification is coming too. based on supabase. diff --git a/apps/Verba/install b/apps/Verba/install new file mode 100755 index 0000000000..d55a279726 --- /dev/null +++ b/apps/Verba/install @@ -0,0 +1,19 @@ +#!/bin/bash +# 1. Abhängigkeiten installieren +sudo apt update +sudo apt install -y surf + +# 2. Den Starter (.desktop Datei) erstellen +# Damit erscheint "Verba" im Startmenü unter 'Internet' +echo "[Desktop Entry] +Name=Verba +Comment=Social Media Plattform +Exec=surf -K https://soc-verba.github.io/verba-soc/ +Icon=/opt/verba/icon.png +Terminal=false +Type=Application +Categories=Network;" | sudo tee /usr/share/applications/verba.desktop + +# 3. Icon-Verzeichnis anlegen und Icon speichern +sudo mkdir -p /opt/verba +sudo wget -O /opt/verba/icon.png https://raw.githubusercontent.com/soc-verba/verba-soc/main/icon.png diff --git a/apps/Verba/uninstall b/apps/Verba/uninstall new file mode 100755 index 0000000000..5cb41dc732 --- /dev/null +++ b/apps/Verba/uninstall @@ -0,0 +1,3 @@ +#!/bin/bash +sudo rm /usr/share/applications/verba.desktop +sudo rm -rf /opt/verba diff --git a/icon.png b/icon.png new file mode 100644 index 0000000000..55ddbce6f3 Binary files /dev/null and b/icon.png differ