From 1d41a0cdd41af906f3c64c41861b8bf6c765e81b Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 27 Dec 2025 09:09:34 +0200 Subject: change defaults --- internal/main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/main.go b/internal/main.go index 560daf2..9254ccc 100644 --- a/internal/main.go +++ b/internal/main.go @@ -23,12 +23,12 @@ func Main(composeModeDefault bool) { configPath := filepath.Join(os.Getenv("HOME"), ".config/gos/gos.json") configPath = *flag.String("configPath", configPath, "Gos' config file path") platforms := flag.String("platforms", "Mastodon:500,LinkedIn:1000,Noop:2000", "Platforms enabled plus their post size limits") - target := flag.Int("target", 2, "How many posts per week are the target?") - minQueued := flag.Int("minQueued", 10, "Minimum of queued items until printing a warn message!") - maxDaysQueued := flag.Int("maxDaysQueued", 365*5, "Maximum days worth of queued posts until target++ and pauseDays--") + target := flag.Int("target", 4, "How many posts per week are the target?") + minQueued := flag.Int("minQueued", 42, "Minimum of queued items until printing a warn message!") + maxDaysQueued := flag.Int("maxDaysQueued", 365*2, "Maximum days worth of queued posts until target++ and pauseDays--") pauseDays := flag.Int("pauseDays", 1, "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", 90, "How many days look back in time for posting history") + lookback := flag.Int("lookback", 42, "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") geminiCapsules := flag.String("geminiCapsules", "foo.zone", "Comma sepaeated list Gemini capsules. Used by geminiEnable to detect Gemtext links") gemtexterEnable := flag.Bool("gemtexterEnable", false, "Add special Gemtexter (the static site generator) tags to the Gemini Gemtext summary") -- cgit v1.2.3