Merge branch 'main' into module/wifi
C++ / fmt (pull_request) Successful in 5s
JS/TS / fmt (pull_request) Successful in 17s
JS/TS / lint (pull_request) Successful in 16s
Python / fmt (pull_request) Successful in 31s
Python / lint (pull_request) Successful in 41s
Python / test (pull_request) Successful in 1m5s
Python / typecheck (pull_request) Successful in 1m15s
Rust / clippy (pull_request) Failing after 12m43s
Rust / fmt (pull_request) Failing after 12m57s
Rust / build (pull_request) Failing after 13m33s
Python / buildcheck (pull_request) Failing after 13m45s
C++ / clang-tidy (pull_request) Failing after 14m23s
C++ / build (pull_request) Failing after 14m25s

This commit is contained in:
2026-08-15 20:38:54 +02:00
377 changed files with 7398 additions and 8423 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ pragma ComponentBehavior: Bound
import Quickshell
import QtQuick
import qs.Config
import ZShell.Config
import qs.Components
Scope {
+1 -1
View File
@@ -1,7 +1,7 @@
import Quickshell
import QtQuick
import qs.Components
import qs.Config
import ZShell.Config
import qs.Helpers
import qs.Modules as BarPopouts
+4 -4
View File
@@ -14,7 +14,7 @@ import qs.Modules.Settings as Settings
import qs.Modules.Drawing as Drawing
import qs.Modules.Dock as Dock
import qs.Modules.Clipboard as Clipboard
import qs.Config
import ZShell.Config
Item {
id: root
@@ -108,7 +108,7 @@ Item {
id: toasts
anchors.bottom: sidebar.visible ? parent.bottom : utilities.top
anchors.margins: Appearance.padding.normal
anchors.margins: Tokens.padding.normal
anchors.right: sidebar.left
}
@@ -155,8 +155,8 @@ Item {
Behavior on offsetScale {
Anim {
duration: Appearance.anim.durations.expressiveDefaultSpatial
easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial
duration: Tokens.anim.durations.expressiveDefaultSpatial
easing.bezierCurve: Tokens.anim.curves.expressiveDefaultSpatial
}
}
+13 -12
View File
@@ -12,9 +12,10 @@ import qs.Modules.SysTray.Popouts.Network as N
import qs.Daemons
import qs.Components
import qs.Modules.Bar
import qs.Config
import ZShell.Config
import qs.Helpers
import qs.Drawers
import qs.Services
CustomWindow {
id: root
@@ -51,7 +52,7 @@ CustomWindow {
property var root: Quickshell.shellDir
readonly property real sdfBorderOffset: 2 * fsTransitionProg
readonly property real shadowOpacity: 0.7 * (1 - fsTransitionProg)
property color surfaceColor: DynamicColors.tPalette.m3surface
property color surfaceColor: Colors.tPalette.m3surface
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.keyboardFocus: visibilities.launcher || visibilities.settings ? WlrKeyboardFocus.OnDemand : WlrKeyboardFocus.None
@@ -189,7 +190,7 @@ CustomWindow {
layer.effect: MultiEffect {
blurMax: 32
shadowColor: Qt.alpha(DynamicColors.palette.m3shadow, Math.max(0, root.shadowOpacity))
shadowColor: Qt.alpha(Colors.palette.m3shadow, Math.max(0, root.shadowOpacity))
shadowEnabled: true
}
@@ -220,7 +221,7 @@ CustomWindow {
implicitHeight: panels.dashboard.height * (1 + extraHeight)
implicitWidth: panels.dashboard.width
panel: panels.dashboardWrapper
radius: Appearance.rounding.normal
radius: Tokens.rounding.normal
x: panels.dashboardWrapper.x + panels.dashboard.x + root.borderThickness
y: panels.dashboardWrapper.y + panels.dashboard.y + bar.implicitHeight - panels.dashboard.height * extraHeight
}
@@ -233,7 +234,7 @@ CustomWindow {
deformAmount: 0.06
implicitHeight: panels.launcher.height * (1 + extraHeight)
panel: panels.launcher
radius: Appearance.rounding.smallest + 5
radius: Tokens.rounding.smallest + 5
y: panels.launcher.y + bar.implicitHeight
}
@@ -263,7 +264,7 @@ CustomWindow {
id: notifsBg
panel: panels.notifications
radius: Appearance.rounding.normal
radius: Tokens.rounding.normal
}
PanelBg {
@@ -284,7 +285,7 @@ CustomWindow {
implicitHeight: panels.popouts.height * (1 + extraHeight)
implicitWidth: panels.popouts.width
panel: panels.popoutsWrapper
radius: panels.popouts.current?.panelRadius ?? Appearance.rounding.normal
radius: panels.popouts.current?.panelRadius ?? Tokens.rounding.normal
x: panels.popoutsWrapper.x + panels.popouts.x + root.borderThickness
y: panels.popoutsWrapper.y + panels.popouts.y + bar.implicitHeight - panels.popouts.height * extraHeight
@@ -301,7 +302,7 @@ CustomWindow {
implicitHeight: panels.resources.height
implicitWidth: panels.resources.width
panel: panels.resourcesWrapper
radius: Appearance.rounding.large
radius: Tokens.rounding.large
x: panels.resourcesWrapper.x + panels.resources.x + root.borderThickness
y: panels.resourcesWrapper.y + panels.resources.y + bar.implicitHeight
}
@@ -311,7 +312,7 @@ CustomWindow {
deformAmount: 0.03
panel: panels.settings
radius: Appearance.rounding.large + Appearance.padding.normal
radius: Tokens.rounding.large + Tokens.padding.normal
}
PanelBg {
@@ -319,7 +320,7 @@ CustomWindow {
deformAmount: 0.08
panel: panels.dock
radius: Appearance.rounding.normal
radius: Tokens.rounding.normal
}
PanelBg {
@@ -327,7 +328,7 @@ CustomWindow {
deformAmount: 0.08
panel: panels.drawing
radius: Appearance.rounding.normal
radius: Tokens.rounding.normal
}
PanelBg {
@@ -452,7 +453,7 @@ CustomWindow {
group: blobGroup
implicitHeight: panel.height
implicitWidth: panel.width
radius: Appearance.rounding.smallest
radius: Tokens.rounding.smallest
x: panel.x + root.borderThickness
y: panel.y + bar.implicitHeight
}