launcher: add Settings action to open controlCenter (#1088)

This commit is contained in:
Ezekiel Gonzales 2026-01-17 21:25:30 +08:00 committed by GitHub
parent 50e541efde
commit a48abd216a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 16 additions and 0 deletions

View file

@ -522,6 +522,14 @@ default, you must create it manually.
"command": ["systemctl", "suspend-then-hibernate"], "command": ["systemctl", "suspend-then-hibernate"],
"enabled": true, "enabled": true,
"dangerous": false "dangerous": false
},
{
"name": "Settings",
"icon": "settings",
"description": "Configure the shell",
"command": ["caelestia", "shell", "controlCenter", "open"],
"enabled": true,
"dangerous": false
} }
], ],
"dragThreshold": 50, "dragThreshold": 50,

View file

@ -133,6 +133,14 @@ JsonObject {
command: ["systemctl", "suspend-then-hibernate"], command: ["systemctl", "suspend-then-hibernate"],
enabled: true, enabled: true,
dangerous: false dangerous: false
},
{
name: "Settings",
icon: "settings",
description: "Configure the shell",
command: ["caelestia", "shell", "controlCenter", "open"],
enabled: true,
dangerous: false
} }
] ]
} }