controls: use basic style

Material style placeholder is kinda annoying
This commit is contained in:
2 * r + 2 * t 2025-05-02 21:17:50 +10:00
parent 1d942b0737
commit bbe650e327
3 changed files with 5 additions and 8 deletions

View file

@ -4,7 +4,6 @@ import "root:/utils"
import "root:/config"
import Quickshell
import QtQuick
import QtQuick.Controls
StyledRect {
id: root

View file

@ -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 {

View file

@ -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 {}
}