Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
348 changes: 191 additions & 157 deletions README.md

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions ghosttrack_menu.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

clear
echo "🌐 GHOSTTRACK – GLOBAL OBSERVER FRAMEWORK"
echo "-----------------------------------------"
echo "1) 🌱 AgroWatch"
echo "2) 🛰️ OrbitalWatch"
echo "3) 🏔️ SportExtreme"
echo "4) 🚨 SOS Beacon"
echo "5) 📡 Starlink Geo-Sentinel"
echo "6) 🔭 BOINC Node"
echo "0) ❌ Esci"
echo "-----------------------------------------"
read -p "Seleziona un modulo: " choice

case $choice in
1) bash modules/AgroWatch/AgroWatch.sh ;;
2) bash modules/OrbitalWatch/OrbitalWatch.sh ;;
3) bash modules/SportExtreme/SportExtreme.sh ;;
4) bash modules/SOSBeacon/SOSBeacon.sh ;;
5) bash modules/StarlinkNode/StarlinkNode.sh ;;
6) bash modules/BOINCNode/BOINCNode.sh ;;
0) exit ;;
*) echo "Scelta non valida." ;;
esac
5 changes: 5 additions & 0 deletions modules/AgroWatch/AgroWatch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
echo "🌱 AgroWatch – Modulo agricolo"
echo "Caricamento configurazione..."
sleep 1
echo "Modulo pronto. I dati verranno generati al primo avvio reale."
3 changes: 3 additions & 0 deletions modules/BOINCNode/BOINCNode.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
echo "🔭 BOINC Scientific Node"
echo "Struttura creata. Integrazione futura."
5 changes: 5 additions & 0 deletions modules/OrbitalWatch/OrbitalWatch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
echo "🛰️ OrbitalWatch – Monitoraggio orbitale"
echo "Caricamento struttura..."
sleep 1
echo "Modulo pronto. I dati verranno generati al primo avvio reale."
5 changes: 5 additions & 0 deletions modules/SOSBeacon/SOSBeacon.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
echo "🚨 SOS Beacon – Sistema di emergenza"
echo "Inizializzazione..."
sleep 1
echo "Modulo pronto. Il beacon verrà configurato al primo avvio."
5 changes: 5 additions & 0 deletions modules/SportExtreme/SportExtreme.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
echo "🏔️ SportExtreme – Supporto attività outdoor"
echo "Caricamento struttura..."
sleep 1
echo "Modulo pronto. Funzioni SOS disponibili al primo avvio."
5 changes: 5 additions & 0 deletions modules/StarlinkNode/StarlinkNode.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
echo "📡 Starlink Geo-Sentinel Node"
echo "Preparazione struttura..."
sleep 1
echo "Modulo pronto. La raccolta dati avverrà al primo avvio."