diff options
| author | Paul Buetow <paul@buetow.org> | 2025-12-27 09:09:34 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-12-27 09:09:34 +0200 |
| commit | 1d41a0cdd41af906f3c64c41861b8bf6c765e81b (patch) | |
| tree | 352fc4cfbf97f58f01f572cb4f6b7f143d4d3b0f | |
| parent | 9c3a341250ebcda8e6cf40afe1ed77074a138448 (diff) | |
change defaults
| -rw-r--r-- | internal/main.go | 8 |
1 files 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") |
