summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-21 17:34:55 +1000
committerGitHub <noreply@github.com>2025-09-21 17:34:55 +1000
commit37b61cb0d923bc8ab988a0ba4174cd55de458bdc (patch)
treeee4808009110c6e85540b4b6d0f0b947b3f80d25 /README.md
parentsidebar/notifs: add link support (diff)
parentfeat: add battery warnings (diff)
downloadcaelestia-shell-37b61cb0d923bc8ab988a0ba4174cd55de458bdc.tar.gz
caelestia-shell-37b61cb0d923bc8ab988a0ba4174cd55de458bdc.tar.bz2
caelestia-shell-37b61cb0d923bc8ab988a0ba4174cd55de458bdc.zip
Merge pull request #662 from caelestia-dots/toasts
utilities: add toasts & battery warnings
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 26 insertions, 1 deletions
diff --git a/README.md b/README.md
index c63769d..421b012 100644
--- a/README.md
+++ b/README.md
@@ -253,6 +253,30 @@ default, you must create it manually.
"terminal": ["foot"],
"audio": ["pavucontrol"]
},
+ "battery": {
+ "warnLevels": [
+ {
+ "level": 20,
+ "title": "Low battery",
+ "message": "You might want to plug in a charger",
+ "icon": "battery_android_frame_2"
+ },
+ {
+ "level": 10,
+ "title": "Did you see the previous message?",
+ "message": "You should probably plug in a charger <b>now</b>",
+ "icon": "battery_android_frame_1"
+ },
+ {
+ "level": 5,
+ "title": "Critical battery level",
+ "message": "PLUG THE CHARGER RIGHT NOW!!",
+ "icon": "battery_android_alert",
+ "critical": true
+ }
+ ],
+ "criticalLevel": 3
+ },
"idle": {
"inhibitWhenAudio": true,
"lockTimeout": 180,
@@ -530,7 +554,8 @@ default, you must create it manually.
"enabled": true
},
"utilities": {
- "enabled": true
+ "enabled": true,
+ "maxToasts": 4
}
}
```