Regenerated

This commit is contained in:
2026-04-13 13:48:10 +02:00
parent 47c1ae2510
commit cdc2934d2e
4 changed files with 353 additions and 341 deletions
+339 -335
View File
File diff suppressed because it is too large Load Diff
+7 -3
View File
@@ -3056,12 +3056,16 @@ ShellRoot {
onActivated: Qt.quit() onActivated: Qt.quit()
} }
// Gradient border // Gradient border — hidden when app has focus
Rectangle { Rectangle {
anchors.fill: parent anchors.fill: parent
anchors.margins: -2 anchors.margins: -2
radius: 18 radius: 18
z: -1 z: -1
opacity: Qt.application.active ? 0 : 1
Behavior on opacity {
NumberAnimation { duration: 150 }
}
gradient: Gradient { gradient: Gradient {
orientation: Gradient.Horizontal orientation: Gradient.Horizontal
GradientStop { position: 0.0; color: colors.blue } GradientStop { position: 0.0; color: colors.blue }
@@ -4066,7 +4070,7 @@ These are config files for waybar
"calendar": { "calendar": {
"mode" : "year", "mode" : "year",
"mode-mon-col" : 3, "mode-mon-col" : 3,
"weeks-pos" : "right", "weeks-pos" : "left",
"on-scroll" : 1, "on-scroll" : 1,
"on-click-right": "mode", "on-click-right": "mode",
"format": { "format": {
@@ -4074,7 +4078,7 @@ These are config files for waybar
"days": "<span color='#cba6f7'><b>{}</b></span>", "days": "<span color='#cba6f7'><b>{}</b></span>",
"weeks": "<span color='#a6e3a1'><b>W{}</b></span>", "weeks": "<span color='#a6e3a1'><b>W{}</b></span>",
"weekdays": "<span color='#f9e2af'><b>{}</b></span>", "weekdays": "<span color='#f9e2af'><b>{}</b></span>",
"today": "<span color='#1e1e2e' bgcolor='#a6e3a1'><b> {} </b></span>" "today": "<span color='#1e1e2e' bgcolor='#a6e3a1'><b> {} </b></span>"
} }
}, },
"on-click": "flatpak run eu.betterbird.Betterbird -calendar" "on-click": "flatpak run eu.betterbird.Betterbird -calendar"
@@ -37,12 +37,16 @@ ShellRoot {
onActivated: Qt.quit() onActivated: Qt.quit()
} }
// Gradient border // Gradient border — hidden when app has focus
Rectangle { Rectangle {
anchors.fill: parent anchors.fill: parent
anchors.margins: -2 anchors.margins: -2
radius: 18 radius: 18
z: -1 z: -1
opacity: Qt.application.active ? 0 : 1
Behavior on opacity {
NumberAnimation { duration: 150 }
}
gradient: Gradient { gradient: Gradient {
orientation: Gradient.Horizontal orientation: Gradient.Horizontal
GradientStop { position: 0.0; color: colors.blue } GradientStop { position: 0.0; color: colors.blue }
+2 -2
View File
@@ -200,7 +200,7 @@
"calendar": { "calendar": {
"mode" : "year", "mode" : "year",
"mode-mon-col" : 3, "mode-mon-col" : 3,
"weeks-pos" : "right", "weeks-pos" : "left",
"on-scroll" : 1, "on-scroll" : 1,
"on-click-right": "mode", "on-click-right": "mode",
"format": { "format": {
@@ -208,7 +208,7 @@
"days": "<span color='#cba6f7'><b>{}</b></span>", "days": "<span color='#cba6f7'><b>{}</b></span>",
"weeks": "<span color='#a6e3a1'><b>W{}</b></span>", "weeks": "<span color='#a6e3a1'><b>W{}</b></span>",
"weekdays": "<span color='#f9e2af'><b>{}</b></span>", "weekdays": "<span color='#f9e2af'><b>{}</b></span>",
"today": "<span color='#1e1e2e' bgcolor='#a6e3a1'><b> {} </b></span>" "today": "<span color='#1e1e2e' bgcolor='#a6e3a1'><b> {} </b></span>"
} }
}, },
"on-click": "flatpak run eu.betterbird.Betterbird -calendar" "on-click": "flatpak run eu.betterbird.Betterbird -calendar"