diff options
Diffstat (limited to '.config/quickshell/shell.qml')
| -rw-r--r-- | .config/quickshell/shell.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.config/quickshell/shell.qml b/.config/quickshell/shell.qml index 7a27cf2..4285ded 100644 --- a/.config/quickshell/shell.qml +++ b/.config/quickshell/shell.qml @@ -1,6 +1,17 @@ import Quickshell +import Quickshell.Hyprland +import QtQuick +import qs.Modules Scope { Bar {} Wall {} + + Connections { + target: Hyprland + function onRawEvent(event) { + throw new Exception('hyprland event') + Hyprland.refreshWorkspaces() + } + } } |
