hover background color config option

This commit is contained in:
Zacharias-Brohn
2025-11-19 00:02:04 +01:00
parent 36cf913830
commit ddae364005
5 changed files with 31 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
import Quickshell.Io
JsonObject {
property BgColors backgrounds: BgColors {}
component BgColors: JsonObject {
property string hover: "#15ffffff"
}
}
+2
View File
@@ -13,6 +13,7 @@ Singleton {
property alias maxWallpapers: adapter.maxWallpapers
property alias wallust: adapter.wallust
property alias workspaceWidget: adapter.workspaceWidget
property alias colors: adapter.colors
FileView {
id: root
@@ -35,6 +36,7 @@ Singleton {
property int maxWallpapers: 7
property bool wallust: false
property WorkspaceWidget workspaceWidget: WorkspaceWidget {}
property Colors colors: Colors {}
}
}
}