summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/Appearance.qml2
-rw-r--r--config/LauncherConfig.qml1
2 files changed, 2 insertions, 1 deletions
diff --git a/config/Appearance.qml b/config/Appearance.qml
index dcd1308..728021d 100644
--- a/config/Appearance.qml
+++ b/config/Appearance.qml
@@ -23,7 +23,7 @@ Singleton {
return c;
c = Qt.rgba(c.r, c.g, c.b, layer ? transparency.layers : transparency.base);
if (layer)
- c.hsvValue = Math.max(0, Math.min(1, c.hslLightness + (light ? -0.2 : 0.2)));
+ c.hsvValue = Math.max(0, Math.min(1, c.hslLightness + (light ? -0.2 : 0.2))); // TODO: edit based on colours (hue or smth)
return c;
}
diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml
index 1b9efc0..caa3bc5 100644
--- a/config/LauncherConfig.qml
+++ b/config/LauncherConfig.qml
@@ -4,6 +4,7 @@ import Quickshell
import QtQuick
Singleton {
+ readonly property int maxShown: 8
readonly property Sizes sizes: Sizes {}
component Sizes: QtObject {