quickshell: a bunch of changes

This commit is contained in:
Bloxx12 2025-07-19 00:36:05 +02:00
commit b82a3580ec
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
11 changed files with 137 additions and 100 deletions

View file

@ -49,9 +49,9 @@ Singleton {
}
}
width: 450
color: Config.catppuccin.base
color: Colors.base
radius: 5
border.color: Config.catppuccin.mantle
border.color: Colors.mantle
border.width: 2
ColumnLayout {
@ -64,9 +64,9 @@ Singleton {
id: searchContainer
Layout.fillWidth: true
implicitHeight: searchbox.implicitHeight + 10
color: Config.catppuccin.base
color: Colors.base
radius: 3
border.color: Config.catppuccin.mantle
border.color: Colors.mantle
RowLayout {
id: searchbox
@ -76,7 +76,7 @@ Singleton {
TextInput {
id: search
Layout.fillWidth: true
color: Config.catppuccin.text
color: Colors.text
font.pointSize: 13
focus: true
@ -252,7 +252,7 @@ Singleton {
highlight: Rectangle {
radius: 5
color: "transparent"
border.color: Config.catppuccin.lavender
border.color: Colors.lavender
border.width: 2
}
keyNavigationEnabled: true
@ -293,7 +293,7 @@ Singleton {
}
Text {
text: modelData.name
color: Config.catppuccin.text
color: Colors.text
font.family: "JetBrainsMono Nerd Font Mono"
font.pointSize: 13
Layout.alignment: Qt.AlignVCenter