Compare commits

..

No commits in common. "433d6268fc8287cfe8ae788bf751623f9c23c51c" and "5507646719bb47084ab14e5a6338dd20fc33e090" have entirely different histories.

5 changed files with 29 additions and 27 deletions

1
.gitignore vendored
View File

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

View File

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

View File

@ -2,6 +2,7 @@ import Quickshell
import QtQuick import QtQuick
import "../../settings/" import "../../settings/"
import "../../" import "../../"
import "../../reusables/"
import QtQuick.Layouts import QtQuick.Layouts
Variants { Variants {
@ -17,10 +18,12 @@ Variants {
left: true left: true
right: true right: true
} }
margins {
left: 10
right: 10
}
implicitHeight: Settings.config.barHeight implicitHeight: Settings.config.barHeight
Row { RowLayout {
leftPadding: 10
id: leftStuff id: leftStuff
spacing: 20 spacing: 20
anchors.left: parent.left anchors.left: parent.left
@ -37,10 +40,9 @@ Variants {
Clock {} Clock {}
} }
Row { RowLayout {
rightPadding: 10
id: rightStuff id: rightStuff
spacing: 10 spacing: 20
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: 0 spacing: 5
CustomText { CustomText {
id: volumeText id: volumeText
PwObjectTracker { PwObjectTracker {

View File

@ -48,6 +48,7 @@ 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();
} }