traymenu width calc

This commit is contained in:
Zacharias-Brohn
2025-11-26 20:04:31 +01:00
parent fa19c59d0e
commit fb864da6fb
4 changed files with 87 additions and 53 deletions
+14
View File
@@ -0,0 +1,14 @@
import Quickshell
import QtQuick
import Quickshell.Hyprland
FloatingWindow {
id: root
title: "terminal"
minimumSize: Qt.size(400, 300)
Component.onCompleted: {
Hyprland.refreshToplevels()
console.log(Hyprland.toplevels.values)
}
}