nosignal-shell/services/Visibilities.qml
2 * r + 2 * t f305c3f3f6 notifs: better height
Get blocked by other panels from the right side (osd and session)
Limit max height to screen height
2025-05-26 22:32:25 +08:00

13 lines
343 B
QML

pragma Singleton
import Quickshell
Singleton {
property var screens: ({})
property var bars: ({})
property var panels: ({})
function getForActive(): PersistentProperties {
return Object.entries(screens).find(s => s[0].slice(s[0].indexOf('"') + 1, s[0].lastIndexOf('"')) === Hyprland.focusedMonitor.name)[1];
}
}