I have dropbox setup using rclone and using systemd user service to mount the cloud storage
[Unit]
Description=Dropbox
AssertPathIsDirectory=/home/s1n7ax/Dropbox/
[Service]
Type=simple
ExecStart=/usr/bin/rclone mount Dropbox:/ /home/s1n7ax/Dropbox
ExecStop=/bin/fusermount -u /home/s1n7ax/Dropbox
Restart=always
RestartSec=10
[Install]
WantedBy=default.target
The internet package I'm using has 10GB per day. So, I want to all the uploading to be scheduled between 23:00 to 00:00 to sync using what's left by the end of the day. Is there a rclone feature I could use to schedule this? Note that I would still want to see remote files in the mounted directory but I want to upload the files I update locally to be synced in the given time period.