diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 232f819..81a8d94 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -1902,18 +1902,27 @@ in anchors.centerIn: parent spacing: 4 - Row { - spacing: 0 - Repeater { - model: ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"] - Text { - required property var modelData - width: 32 - horizontalAlignment: Text.AlignHCenter - text: modelData - color: Theme.base03 - font.family: "FiraMono Nerd Font" - font.pixelSize: 13 + Rectangle { + width: 7 * 32 + height: weekdayRow.height + 8 + radius: 6 + color: Theme.base02 + + Row { + id: weekdayRow + anchors.centerIn: parent + spacing: 0 + Repeater { + model: ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"] + Text { + required property var modelData + width: 32 + horizontalAlignment: Text.AlignHCenter + text: modelData + color: Theme.base03 + font.family: "FiraMono Nerd Font" + font.pixelSize: 13 + } } } }