summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-02 21:17:50 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-02 21:17:50 +1000
commitbbe650e327db476c764f248494a02012d6c588d7 (patch)
tree2ccc60a0c0dcd1d5aacdcdd822eb4d0ec8a351b8
parentscrollbar: show gutter + enable scrolling (diff)
downloadcaelestia-shell-bbe650e327db476c764f248494a02012d6c588d7.tar.gz
caelestia-shell-bbe650e327db476c764f248494a02012d6c588d7.tar.bz2
caelestia-shell-bbe650e327db476c764f248494a02012d6c588d7.zip
controls: use basic style
Material style placeholder is kinda annoying
-rw-r--r--modules/bar/components/StatusIcons.qml1
-rw-r--r--modules/launcher/Content.qml5
-rw-r--r--shell.qml7
3 files changed, 5 insertions, 8 deletions
diff --git a/modules/bar/components/StatusIcons.qml b/modules/bar/components/StatusIcons.qml
index ae3bfad..2721cc9 100644
--- a/modules/bar/components/StatusIcons.qml
+++ b/modules/bar/components/StatusIcons.qml
@@ -4,7 +4,6 @@ import "root:/utils"
import "root:/config"
import Quickshell
import QtQuick
-import QtQuick.Controls
StyledRect {
id: root
diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml
index edbc605..92de980 100644
--- a/modules/launcher/Content.qml
+++ b/modules/launcher/Content.qml
@@ -110,6 +110,11 @@ Item {
anchors.bottom: parent.bottom
anchors.margins: root.padding
+ topPadding: Appearance.padding.normal
+ bottomPadding: Appearance.padding.normal
+ leftPadding: root.padding
+ rightPadding: root.padding
+
placeholderText: qsTr("Type \">\" for commands")
background: StyledRect {
diff --git a/shell.qml b/shell.qml
index 1131bae..93bc3a1 100644
--- a/shell.qml
+++ b/shell.qml
@@ -1,15 +1,8 @@
import "modules/bar"
import "modules/launcher"
-import "config"
import Quickshell
-import QtQuick.Controls.Material
ShellRoot {
- Material.accent: Appearance.colours.m3primary
- Material.primary: Appearance.colours.m3secondary
- Material.foreground: Appearance.colours.m3onBackground
- Material.background: Appearance.colours.m3background
-
Bar {}
Launcher {}
}