From e896eed381356e9eed160b33a3cfe5b5d6554d9e Mon Sep 17 00:00:00 2001 From: John Woltman Date: Tue, 30 Jun 2026 23:37:34 -0400 Subject: [PATCH 1/2] Add Battery and Syncthing status bar plugin repo files. --- plugins/micro-batt-status.json | 16 ++++++++++++++++ plugins/micro-syncthing-status.json | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 plugins/micro-batt-status.json create mode 100644 plugins/micro-syncthing-status.json diff --git a/plugins/micro-batt-status.json b/plugins/micro-batt-status.json new file mode 100644 index 0000000..e717687 --- /dev/null +++ b/plugins/micro-batt-status.json @@ -0,0 +1,16 @@ +[{ + "Name": "batt", + "Description": "Battery capacity and charging state for status", + "Tags": ["battery", "status"], + "Website": "https://codeberg.org/johnwoltman/micro-batt-status", + "License": "GNU General Public License v3", + "Versions": [ + { + "Version": "1.1.0", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/micro-batt-status-1.1.0.zip", + "Require": { + "micro": ">=2.0.7" + } + } + ] +}] diff --git a/plugins/micro-syncthing-status.json b/plugins/micro-syncthing-status.json new file mode 100644 index 0000000..47fb0e2 --- /dev/null +++ b/plugins/micro-syncthing-status.json @@ -0,0 +1,16 @@ +[{ + "Name": "syncthing", + "Description": "Shows if a file is synced with Syncthing", + "Tags": ["syncthing", "status"], + "Website": "https://codeberg.org/johnwoltman/micro-syncthing-status", + "License": "GNU General Public License v3", + "Versions": [ + { + "Version": "1.1.0", + "Url": "https://github.com/micro-editor/plugin-channel/releases/download/plugins/micro-syncthing-status-1.1.0.zip", + "Require": { + "micro": ">=2.0.7" + } + } + ] +}] From 588a9b7984ded4c4f1aab4dd3c5d653c7f45ee2f Mon Sep 17 00:00:00 2001 From: John Woltman Date: Tue, 30 Jun 2026 23:38:26 -0400 Subject: [PATCH 2/2] Add Battery and Syncthing status bar plugins to channel.json --- channel.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/channel.json b/channel.json index 6bd00cc..f70fd8c 100644 --- a/channel.json +++ b/channel.json @@ -87,6 +87,11 @@ "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/palettero.json", // cheat plugin - "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-cheat.json" + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-cheat.json", + // battery status plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-batt-status.json", + + // syncthing status plugin + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/plugins/micro-syncthing-status.json" ]