feat: set if notifs can be above fullscreen apps

This commit is contained in:
FUFSoB
2025-09-23 11:01:05 +05:00
parent b47ac6dd8a
commit ea0350bcca
4 changed files with 10 additions and 1 deletions
@@ -71,6 +71,13 @@ ColumnLayout {
currentKey: Settings.data.notifications.location || "top_right"
onSelected: key => Settings.data.notifications.location = key
}
NToggle {
label: "Always on top"
description: "Display notifications above fullscreen windows and other layers."
checked: Settings.data.notifications.alwaysOnTop
onToggled: checked => Settings.data.notifications.alwaysOnTop = checked
}
}
NDivider {