lux-shell/modules/Shortcuts.qml
Benjamin Palko 3e1eb1b014 launcher v1
2025-08-19 23:51:58 -04:00

19 lines
403 B
QML

import qs.services
import qs.widgets
import Quickshell
Scope {
id: root
LuxShortcut {
name: 'launcher'
description: 'Open the application launcher'
onPressed: Visibility.launcher = !Visibility.launcher
}
LuxShortcut {
name: 'power-menu'
description: 'Open the Power Menu'
onPressed: Visibility.powermenu = !Visibility.powermenu
}
}