Compare commits
No commits in common. "433d6268fc8287cfe8ae788bf751623f9c23c51c" and "5507646719bb47084ab14e5a6338dd20fc33e090" have entirely different histories.
433d6268fc
...
5507646719
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
Colors.qml
|
||||
38
Colors.qml
38
Colors.qml
@ -5,25 +5,25 @@ import Quickshell
|
||||
Singleton {
|
||||
id: customColors
|
||||
// Core Backgrounds
|
||||
readonly property color background: "#1E1E2E"
|
||||
readonly property color foreground: "#CDD6F4"
|
||||
readonly property color cursor: "#CDD6F4"
|
||||
readonly property color background: "#161616"
|
||||
readonly property color foreground: "#FFFFFF"
|
||||
readonly property color cursor: "#6F6F6F"
|
||||
|
||||
// The 16 Colors of the Apocalypse
|
||||
readonly property color color0: "#45475A"
|
||||
readonly property color color1: "#F38BA8"
|
||||
readonly property color color2: "#A6E3A1"
|
||||
readonly property color color3: "#F9E2AF"
|
||||
readonly property color color4: "#89B4FA"
|
||||
readonly property color color5: "#F5C2E7"
|
||||
readonly property color color6: "#94E2D5"
|
||||
readonly property color color7: "#BAC2DE"
|
||||
readonly property color color8: "#585B70"
|
||||
readonly property color color9: "#F38BA8"
|
||||
readonly property color color10: "#A6E3A1"
|
||||
readonly property color color11: "#F9E2AF"
|
||||
readonly property color color12: "#89B4FA"
|
||||
readonly property color color13: "#F5C2E7"
|
||||
readonly property color color14: "#94E2D5"
|
||||
readonly property color color15: "#A6ADC8"
|
||||
readonly property color color0: "#262626"
|
||||
readonly property color color1: "#EE5396"
|
||||
readonly property color color2: "#42BE65"
|
||||
readonly property color color3: "#FFE97B"
|
||||
readonly property color color4: "#33B1FF"
|
||||
readonly property color color5: "#FF7EB6"
|
||||
readonly property color color6: "#3DDBD9"
|
||||
readonly property color color7: "#DDE1E6"
|
||||
readonly property color color8: "#393939"
|
||||
readonly property color color9: "#EE5396"
|
||||
readonly property color color10: "#42BE65"
|
||||
readonly property color color11: "#FFE97B"
|
||||
readonly property color color12: "#33B1FF"
|
||||
readonly property color color13: "#FF7EB6"
|
||||
readonly property color color14: "#3DDBD9"
|
||||
readonly property color color15: "#FFFFFF"
|
||||
}
|
||||
|
||||
@ -2,6 +2,7 @@ import Quickshell
|
||||
import QtQuick
|
||||
import "../../settings/"
|
||||
import "../../"
|
||||
import "../../reusables/"
|
||||
import QtQuick.Layouts
|
||||
|
||||
Variants {
|
||||
@ -17,10 +18,12 @@ Variants {
|
||||
left: true
|
||||
right: true
|
||||
}
|
||||
|
||||
margins {
|
||||
left: 10
|
||||
right: 10
|
||||
}
|
||||
implicitHeight: Settings.config.barHeight
|
||||
Row {
|
||||
leftPadding: 10
|
||||
RowLayout {
|
||||
id: leftStuff
|
||||
spacing: 20
|
||||
anchors.left: parent.left
|
||||
@ -37,10 +40,9 @@ Variants {
|
||||
Clock {}
|
||||
}
|
||||
|
||||
Row {
|
||||
rightPadding: 10
|
||||
RowLayout {
|
||||
id: rightStuff
|
||||
spacing: 10
|
||||
spacing: 20
|
||||
anchors.right: parent.right
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
Volume {}
|
||||
|
||||
@ -35,7 +35,7 @@ Item {
|
||||
Row {
|
||||
id: textRow
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
spacing: 0
|
||||
spacing: 5
|
||||
CustomText {
|
||||
id: volumeText
|
||||
PwObjectTracker {
|
||||
|
||||
@ -48,6 +48,7 @@ Item {
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
acceptedButtons: Qt.LeftButton
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
onClicked: {
|
||||
parent.modelData.activate();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user