new font???
This commit is contained in:
@@ -19,6 +19,7 @@ Singleton {
|
||||
property alias background: adapter.background
|
||||
property alias useDynamicColors: adapter.useDynamicColors
|
||||
property alias barConfig: adapter.barConfig
|
||||
property alias transparency: adapter.transparency
|
||||
|
||||
FileView {
|
||||
id: root
|
||||
@@ -46,6 +47,7 @@ Singleton {
|
||||
property BackgroundConfig background: BackgroundConfig {}
|
||||
property bool useDynamicColors: false
|
||||
property BarConfig barConfig: BarConfig {}
|
||||
property Transparency transparency: Transparency {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -88,9 +88,9 @@ Singleton {
|
||||
}
|
||||
|
||||
component Transparency: QtObject {
|
||||
readonly property bool enabled: true
|
||||
readonly property real base: 0.85 - (root.light ? 0.1 : 0)
|
||||
readonly property real layers: 0.4
|
||||
readonly property bool enabled: Config.transparency.enabled
|
||||
readonly property real base: Config.transparency.base - (root.light ? 0.1 : 0)
|
||||
readonly property real layers: Config.transparency.layers
|
||||
}
|
||||
|
||||
component M3TPalette: QtObject {
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
import Quickshell.Io
|
||||
|
||||
JsonObject {
|
||||
property bool enabled: false
|
||||
property real base: 0.85
|
||||
property real layers: 0.4
|
||||
}
|
||||
Reference in New Issue
Block a user