From a48abd216a07e29294b89a7c98823b2b1102e2b5 Mon Sep 17 00:00:00 2001 From: Ezekiel Gonzales <141341590+notsoeazy@users.noreply.github.com> Date: Sat, 17 Jan 2026 21:25:30 +0800 Subject: launcher: add Settings action to open controlCenter (#1088) --- README.md | 8 ++++++++ config/LauncherConfig.qml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/README.md b/README.md index 7339723..2230f76 100644 --- a/README.md +++ b/README.md @@ -522,6 +522,14 @@ default, you must create it manually. "command": ["systemctl", "suspend-then-hibernate"], "enabled": true, "dangerous": false + }, + { + "name": "Settings", + "icon": "settings", + "description": "Configure the shell", + "command": ["caelestia", "shell", "controlCenter", "open"], + "enabled": true, + "dangerous": false } ], "dragThreshold": 50, diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml index 9d9c50c..7f9c788 100644 --- a/config/LauncherConfig.qml +++ b/config/LauncherConfig.qml @@ -133,6 +133,14 @@ JsonObject { command: ["systemctl", "suspend-then-hibernate"], enabled: true, dangerous: false + }, + { + name: "Settings", + icon: "settings", + description: "Configure the shell", + command: ["caelestia", "shell", "controlCenter", "open"], + enabled: true, + dangerous: false } ] } -- cgit v1.2.3-freya