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