21 lines
426 B
QML
21 lines
426 B
QML
import qs.services
|
|
import qs.widgets
|
|
import Quickshell
|
|
|
|
Scope {
|
|
id: root
|
|
|
|
LuxShortcut {
|
|
name: 'launcher'
|
|
description: 'Open the application launcher'
|
|
onPressed: {
|
|
console.log("Launcher shortcut pressed");
|
|
}
|
|
}
|
|
|
|
LuxShortcut {
|
|
name: 'power-menu'
|
|
description: 'Open the Power Menu'
|
|
onPressed: Visibility.powermenu = !Visibility.powermenu
|
|
}
|
|
}
|