summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-28 11:01:48 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-28 11:01:48 +1000
commitf7b0e4665b223d86045110ff3d4704c1a7760a4d (patch)
tree5e71541184bf7b736b99d689e4920dda44eeefd8 /services
parentfeat: anims + box padding (diff)
downloadcaelestia-shell-f7b0e4665b223d86045110ff3d4704c1a7760a4d.tar.gz
caelestia-shell-f7b0e4665b223d86045110ff3d4704c1a7760a4d.tar.bz2
caelestia-shell-f7b0e4665b223d86045110ff3d4704c1a7760a4d.zip
format: conform to qml coding conventions
Diffstat (limited to 'services')
-rw-r--r--services/Hyprland.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/Hyprland.qml b/services/Hyprland.qml
index 2e24989..513d372 100644
--- a/services/Hyprland.qml
+++ b/services/Hyprland.qml
@@ -15,8 +15,6 @@ Singleton {
property HyprlandWorkspace activeWorkspace: null
property HyprlandMonitor focusedMonitor: Hyprland.monitors.values.find(m => m.lastIpcObject.focused) ?? null
- Component.onCompleted: reload()
-
function reload() {
Hyprland.refreshWorkspaces();
Hyprland.refreshMonitors();
@@ -29,6 +27,8 @@ Singleton {
Hyprland.dispatch(request);
}
+ Component.onCompleted: reload()
+
Connections {
target: Hyprland