first commit

This commit is contained in:
2026-03-30 14:53:09 -06:00
commit fbec1a6ade
81 changed files with 4479 additions and 0 deletions

12
sv-vpn-call.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
INTERFAZ=$1
output=$(sudo /home/arthur/scripts/sv-vpn.sh $INTERFAZ)
echo $output
if [ "$output" = 'Activando' ]; then
FLAG=$(sh /home/arthur/scripts/get_flag.sh)
notify-send "VPN Activada $FLAG" "Interfaz $INTERFAZ activada "
else
FLAG=$(sh /home/arthur/scripts/get_flag.sh)
notify-send "VPN Desactivada $FLAG" "Interfaz $INTERFAZ Desactivada "
fi