summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoel R. <59534812+h0useofdupree@users.noreply.github.com>2025-07-29 04:45:33 +0200
committerGitHub <noreply@github.com>2025-07-29 12:45:33 +1000
commit7dc5b65d2221bf6ed5f33cd8666ea4214c63f1d2 (patch)
tree3f3ec61af00a4d0b84d085b5730c0ad921d8f7f1 /README.md
parentbar: fix kb layout (diff)
downloadcaelestia-shell-7dc5b65d2221bf6ed5f33cd8666ea4214c63f1d2.tar.gz
caelestia-shell-7dc5b65d2221bf6ed5f33cd8666ea4214c63f1d2.tar.bz2
caelestia-shell-7dc5b65d2221bf6ed5f33cd8666ea4214c63f1d2.zip
session: add custom session/lock menu button commands (#292)
* session: add custom menu-buttons commands * lock: use custom session-menu buttons * readme: update config options for custom commands
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index ff767eb..fd26863 100644
--- a/README.md
+++ b/README.md
@@ -223,7 +223,13 @@ All configuration options are in `~/.config/caelestia/shell.json`.
"useFahrenheit": false
},
"session": {
- "dragThreshold": 30
+ "dragThreshold": 30,
+ "commands": {
+ "logout": ["loginctl", "terminate-user", ""],
+ "shutdown": ["systemctl", "poweroff"],
+ "hibernate": ["systemctl", "hibernate"],
+ "reboot": ["systemctl", "reboot"]
+ }
}
}
```