From 51c59620cde763ca8ef2f91dfe08b6556bd7c7ca Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Thu, 20 Jun 2024 17:19:59 -0500 Subject: [PATCH] readme/autostarts: fix missing indent --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5497bb4..9dc7ada 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,10 @@ Config example with in-line comments: ```yaml --- autostarts: -pre: [] # *always* run, before/blocking others. ie: backup -weekend: [] # blocking Sat/Sun. after 'pre'/before 'common'. ie: backup tier 2 -common: [] # things started every day, after 'pre' - non-blocking -work: [] # does not execute on weekends; only if within working day/hours + pre: [] # *always* run, before/blocking others. ie: backup + weekend: [] # blocking Sat/Sun. after 'pre'/before 'common'. ie: backup tier 2 + common: [] # things started every day, after 'pre' - non-blocking + work: [] # does not execute on weekends; only if within working day/hours ``` Touch `~/.vacation` to skip `work` autostarts; `rm` when work may continue :)