summaryrefslogtreecommitdiff
path: root/.config/quickshell/shell.qml
blob: 4285ded5c795a2250c9f85ecfbd6e3f623919844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()
		}
	}
}