diff options
| author | Tim Hämisch <haemtim@gmail.com> | 2025-06-13 17:49:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-13 17:49:49 +0200 |
| commit | 5fb727a4c8d9e89acc63a1c353202423bc7b120e (patch) | |
| tree | 28839211a383025df53168993d090cdccaa9bf7a /modules/Shortcuts.qml | |
| parent | Add shutdown, reboot, and logout actions to launcher (diff) | |
| parent | docs: add contributing.md (diff) | |
| download | caelestia-shell-5fb727a4c8d9e89acc63a1c353202423bc7b120e.tar.gz caelestia-shell-5fb727a4c8d9e89acc63a1c353202423bc7b120e.tar.bz2 caelestia-shell-5fb727a4c8d9e89acc63a1c353202423bc7b120e.zip | |
Merge branch 'caelestia-dots:main' into betteractions
Diffstat (limited to 'modules/Shortcuts.qml')
| -rw-r--r-- | modules/Shortcuts.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/Shortcuts.qml b/modules/Shortcuts.qml index bed620c..3d665ff 100644 --- a/modules/Shortcuts.qml +++ b/modules/Shortcuts.qml @@ -9,6 +9,15 @@ Scope { property bool launcherInterrupted CustomShortcut { + name: "showall" + description: "Toggle launcher, dashboard and osd" + onPressed: { + const v = Visibilities.getForActive(); + v.launcher = v.dashboard = v.osd = !(v.launcher || v.dashboard || v.osd); + } + } + + CustomShortcut { name: "session" description: "Toggle session menu" onPressed: { |