Skip to content

Instantly share code, notes, and snippets.

@okhlybov
Last active August 26, 2019 15:30
Show Gist options
  • Save okhlybov/5d8db5273bbfa445b16a29447c424435 to your computer and use it in GitHub Desktop.
Save okhlybov/5d8db5273bbfa445b16a29447c424435 to your computer and use it in GitHub Desktop.
Cron-friendly shell script to fetch changes to the Dropbox folder and make notification on detected changes
#!/bin/bash
# Cron-friendly shell script to fetch changes to the Dropbox folder and make notification on detected changes
# Uses rclone, KDE
{ rclone --verbose copy dropbox: ~/Dropbox 2>&1 | grep -e 'Transferred.*%'; } && kdialog --passivepopup 'Dropbox changes detected'
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment