-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
# DumbedDownCron | ||
A dumbed down cron done in c#, no need to install | ||
|
||
Just build it and run it. It will use any json places inside the folder the exe is placed, or any of it's subfolders. You can rename, delete, add or modify files on the fly and the program will know what to do, no need to restart it. | ||
|
||
An example json file could be: | ||
``` | ||
{ | ||
"repeat_after"{ | ||
"days":1, | ||
"hours":5, | ||
"seconds":300 | ||
}, | ||
"commands": ["notepad hello_world.txt", "code"] | ||
} | ||
``` | ||
|
||
The json must have a "commands" list, as seen on the commands_template.json file. "repeat_after" is optional. | ||
|
||
Scheduling commands is not yet implemented. |