added panels page
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 9s
Python / lint-format (pull_request) Successful in 28s
Python / test (pull_request) Successful in 28s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m6s

This commit is contained in:
2026-06-23 23:06:30 +02:00
parent 6a80961b2b
commit 5c6882d2a8
14 changed files with 433 additions and 8 deletions
+4 -1
View File
@@ -167,7 +167,6 @@ Singleton {
enabled: dashboard.enabled,
mediaUpdateInterval: dashboard.mediaUpdateInterval,
resourceUpdateInterval: dashboard.resourceUpdateInterval,
dragThreshold: dashboard.dragThreshold,
performance: {
showBattery: dashboard.performance.showBattery,
showGpu: dashboard.performance.showGpu,
@@ -245,6 +244,9 @@ Singleton {
return {
maxAppsShown: launcher.maxAppsShown,
maxWallpapers: launcher.maxWallpapers,
dragThreshold: launcher.dragThreshold,
enableDangerousActions: launcher.enableDangerousActions,
enabled: launcher.enabled,
hiddenApps: launcher.hiddenApps,
favoriteApps: launcher.favoriteApps,
uwsm: launcher.uwsm,
@@ -349,6 +351,7 @@ Singleton {
function serializeSidebar(): var {
return {
enabled: sidebar.enabled,
dragThreshold: sidebar.dragThreshold,
sizes: {
width: sidebar.sizes.width
}
-1
View File
@@ -1,7 +1,6 @@
import Quickshell.Io
JsonObject {
property int dragThreshold: 50
property bool enabled: true
property int mediaUpdateInterval: 500
property Performance performance: Performance {
+3
View File
@@ -84,6 +84,9 @@ JsonObject {
dangerous: false
},
]
property int dragThreshold: 50
property bool enableDangerousActions: false
property bool enabled: true
property list<string> favoriteApps: []
property list<string> hiddenApps: []
property int maxAppsShown: 10
+1
View File
@@ -1,6 +1,7 @@
import Quickshell.Io
JsonObject {
property int dragThreshold: 30
property bool enabled: true
property Sizes sizes: Sizes {
}