commit 7659997e5711569c98ae360b1ebd74f90e49667e parent 08fa4bdbdac034213ae242440d880e142aae3bb7 Author: JayVii <jayvii[AT]posteo[DOT]de> Date: Sun, 30 Mar 2025 21:31:52 +0200 feat: restructure number ordering Diffstat:
5 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/perlanetrc/01_pulse.yaml b/perlanetrc/01_pulse.yaml @@ -2,7 +2,7 @@ title: Pulse description: Current news with high frequency. url: https://news.jayvii.de/pulse.html entries: 500 -entries_per_feed: 15 +entries_per_feed: 10 entries_sort_order: "issued" entries_age: 86400 author: diff --git a/perlanetrc/99_net.yaml b/perlanetrc/03_net.yaml diff --git a/perlanetrc/00_flash.yaml.mini b/perlanetrc/98_flash.yaml.mini diff --git a/perlanetrc/00_flash.yaml b/perlanetrc/99_flash.yaml diff --git a/scripts/run.sh b/scripts/run.sh @@ -4,7 +4,7 @@ # fetch input config file, fall back to "centre" if [ -z $1 ]; then - config="01_pulse.yaml" + for conf in $(find ./perlanetrc/ -type f | sort -r); do ${0} "$conf"; done else config="$1" fi