Skip to content

Instantly share code, notes, and snippets.

@horaciod
Created May 2, 2022 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save horaciod/5559f2b71c35e0dd001ddc063d80487b to your computer and use it in GitHub Desktop.
Save horaciod/5559f2b71c35e0dd001ddc063d80487b to your computer and use it in GitHub Desktop.
toma screenshot y envia a telegram
#!/bin/bash
sleep 3
while true
do
gnome-screenshot -f /tmp/algo.png
./telegram-notify.sh --success --texto "pantalla" --photo /tmp/algo.png
rm /tmp/algo.png
sleep 300
echo "enviado cada 5 minutos"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment