14 lines
248 B
QML
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");
|
|
}
|
|
}
|
|
}
|