Files
cescobar 03084e2d5a Commit inicial: G Radio Player
Sistema de automatización de radio en Rust (GTK4 + GStreamer): reproductor
principal con crossfade y ducking, scheduler de comerciales, refill de
playlist, y herramientas auxiliares (pautaje, parrilla, botonera, visor,
buscador, playlist, grabador, reportes). Incluye sistema de skins y modos
de Players (paneles de reproducción configurables).
2026-08-23 00:57:40 -05:00

12 lines
678 B
Bash
Executable File

#!/bin/bash
# ─── G Radio Player — desinstalador ──────────────────────────────────────────
echo "==> Desinstalando G Radio Player..."
rm -f "$HOME/.local/bin/radio-player"
rm -f "$HOME/.local/bin/comercial-scheduler"
rm -f "$HOME/.local/bin/playlist-refill"
rm -rf "$HOME/.local/share/radio-player"
rm -f "$HOME/.local/share/applications/com.gradio.radio-player.desktop"
rm -f "$HOME/.local/share/applications/gradio-player.desktop"
update-desktop-database "$HOME/.local/share/applications" 2>/dev/null || true
echo "✅ Desinstalado. Los datos en ~/.gradio/ no se han borrado."