Compare commits

...

3 Commits

5 changed files with 27 additions and 29 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
Colors.qml

View File

@ -5,25 +5,25 @@ import Quickshell
Singleton { Singleton {
id: customColors id: customColors
// Core Backgrounds // Core Backgrounds
readonly property color background: "#161616" readonly property color background: "#1E1E2E"
readonly property color foreground: "#FFFFFF" readonly property color foreground: "#CDD6F4"
readonly property color cursor: "#6F6F6F" readonly property color cursor: "#CDD6F4"
// The 16 Colors of the Apocalypse // The 16 Colors of the Apocalypse
readonly property color color0: "#262626" readonly property color color0: "#45475A"
readonly property color color1: "#EE5396" readonly property color color1: "#F38BA8"
readonly property color color2: "#42BE65" readonly property color color2: "#A6E3A1"
readonly property color color3: "#FFE97B" readonly property color color3: "#F9E2AF"
readonly property color color4: "#33B1FF" readonly property color color4: "#89B4FA"
readonly property color color5: "#FF7EB6" readonly property color color5: "#F5C2E7"
readonly property color color6: "#3DDBD9" readonly property color color6: "#94E2D5"
readonly property color color7: "#DDE1E6" readonly property color color7: "#BAC2DE"
readonly property color color8: "#393939" readonly property color color8: "#585B70"
readonly property color color9: "#EE5396" readonly property color color9: "#F38BA8"
readonly property color color10: "#42BE65" readonly property color color10: "#A6E3A1"
readonly property color color11: "#FFE97B" readonly property color color11: "#F9E2AF"
readonly property color color12: "#33B1FF" readonly property color color12: "#89B4FA"
readonly property color color13: "#FF7EB6" readonly property color color13: "#F5C2E7"
readonly property color color14: "#3DDBD9" readonly property color color14: "#94E2D5"
readonly property color color15: "#FFFFFF" readonly property color color15: "#A6ADC8"
} }

View File

@ -2,7 +2,6 @@ import Quickshell
import QtQuick import QtQuick
import "../../settings/" import "../../settings/"
import "../../" import "../../"
import "../../reusables/"
import QtQuick.Layouts import QtQuick.Layouts
Variants { Variants {
@ -18,12 +17,10 @@ Variants {
left: true left: true
right: true right: true
} }
margins {
left: 10
right: 10
}
implicitHeight: Settings.config.barHeight implicitHeight: Settings.config.barHeight
RowLayout { Row {
leftPadding: 10
id: leftStuff id: leftStuff
spacing: 20 spacing: 20
anchors.left: parent.left anchors.left: parent.left
@ -40,9 +37,10 @@ Variants {
Clock {} Clock {}
} }
RowLayout { Row {
rightPadding: 10
id: rightStuff id: rightStuff
spacing: 20 spacing: 10
anchors.right: parent.right anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
Volume {} Volume {}

View File

@ -35,7 +35,7 @@ Item {
Row { Row {
id: textRow id: textRow
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
spacing: 5 spacing: 0
CustomText { CustomText {
id: volumeText id: volumeText
PwObjectTracker { PwObjectTracker {

View File

@ -48,7 +48,6 @@ Item {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
acceptedButtons: Qt.LeftButton acceptedButtons: Qt.LeftButton
cursorShape: Qt.PointingHandCursor
onClicked: { onClicked: {
parent.modelData.activate(); parent.modelData.activate();
} }