1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-04 12:38:31 -04:00

launcher: add option to choose spotlight style on niri overview

This commit is contained in:
bbedward
2026-07-13 16:01:08 -04:00
parent 2cb48aaf6b
commit 3da19e5c15
9 changed files with 145 additions and 69 deletions
@@ -223,8 +223,9 @@ Rectangle {
Rectangle {
id: dankWarning
width: parent.width
visible: CalendarService && CalendarService.dankNeedsLaunch
height: visible ? Math.max(28, warningRow.implicitHeight) + Theme.spacingS : 0
readonly property bool showWarning: CalendarService?.dankNeedsLaunch ?? false
visible: showWarning
height: showWarning ? Math.max(28, warningRow.implicitHeight) + Theme.spacingS : 0
radius: Theme.cornerRadius
color: Theme.warningHover
border.color: Theme.withAlpha(Theme.warning, 0.35)