lux-shell/modules/Shortcuts.qml
2025-07-25 11:32:06 -04:00

14 lines
250 B
QML

import Quickshell
import "../widget/"
Scope {
id: root
LuxShortcut {
name: 'launcher'
description: 'Open the application launcher'
onPressed: {
console.log("Launcher shortcut pressed");
}
}
}