summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-05-02 14:13:47 +0300
committerPaul Buetow <paul@buetow.org>2025-05-02 14:13:47 +0300
commit070bde0567b24c67ab4f8556d8ea2f04c055d2d9 (patch)
treefe6cb57dd24fa4e5031cacded4262112bd5ab735
parent990dd13e56264429cf75ab539cbb63b3c2d6bbcb (diff)
update defaults
-rw-r--r--internal/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/main.go b/internal/main.go
index 564b125..c1b72d6 100644
--- a/internal/main.go
+++ b/internal/main.go
@@ -26,7 +26,7 @@ func Main(composeModeDefault bool) {
target := flag.Int("target", 2, "How many posts per week are the target?")
minQueued := flag.Int("minQueued", 4, "Minimum of queued items until printing a warn message!")
maxDaysQueued := flag.Int("maxDaysQueued", 1000, "Maximum days worth of queued posts until target++ and pauseDays--")
- pauseDays := flag.Int("pauseDays", 3, "How many days until next post can be posted?")
+ pauseDays := flag.Int("pauseDays", 2, "How many days until next post can be posted?")
runInterval := flag.Int("runInterval", 6, "How many hours to wait for the next run.")
lookback := flag.Int("lookback", 30, "How many days look back in time for posting history")
geminiSummaryFor := flag.String("geminiSummaryFor", "", "Generate a summary in Gemini Gemtext format, format is coma separated string of months, e.g. 202410,202411")