lux-shell/modules/Shortcuts.qml
Benjamin Palko 8911381cb2 move
2025-07-26 20:37:38 -04:00

14 lines
248 B
QML

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