Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
fedevilensky committed Mar 4, 2020
2 parents 818a7a1 + 0a621a8 commit c3aad84
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
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.

0 comments on commit c3aad84

Please sign in to comment.