19 lines
282 B
QML
19 lines
282 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import Quickshell.Hyprland
|
|
|
|
Singleton {
|
|
readonly property alias termSelect: termSelectBind.pressed;
|
|
signal screenshot();
|
|
|
|
Shortcut {
|
|
name: "screenshot"
|
|
onPressed: screenshot()
|
|
}
|
|
|
|
Shortcut {
|
|
id: termSelectBind
|
|
name: "termselect"
|
|
}
|
|
}
|