I hereby claim:
- I am sjugge on github.
- I am sjugge (https://keybase.io/sjugge) on keybase.
- I have a public key ASDtsjxfsUuijPu4dS2L5zakAhXASTwJJnuV8IzH-2uv-go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
This tutorial demonstrates how to use Google Apps Script to:
Create copies of the Google Sheet in the desired destination folder automatically at set intervals.
Append the time stamp with each backup file's name.
Adjust time trigger for backing up every day/hour/minute.
| #!/usr/bin/env lua | |
| conky_color = "${color1}%2d${color}" | |
| t = os.date('*t', os.time()) | |
| year, month, currentday = t.year, t.month, t.day | |
| daystart = os.date("*t",os.time{year=year,month=month,day=01}).wday | |
| month_name = os.date("%B") |