reorg bar
This commit is contained in:
parent
8130cb1bdd
commit
96d8ab6534
6 changed files with 89 additions and 82 deletions
12
components/StyledLayoutSeparator.qml
Normal file
12
components/StyledLayoutSeparator.qml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import qs.config
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
|
||||
Rectangle {
|
||||
color: Styling.theme.basecontent
|
||||
opacity: 0.33
|
||||
Layout.fillHeight: true
|
||||
Layout.margins: 2
|
||||
implicitWidth: 0.5
|
||||
radius: 9999
|
||||
}
|
||||
|
|
@ -28,7 +28,7 @@ StyledWrapperRectangle {
|
|||
RowLayout {
|
||||
id: leftbar
|
||||
|
||||
spacing: Styling.layout.spacing.base
|
||||
spacing: Styling.layout.spacing.lg
|
||||
|
||||
SystemLogo {
|
||||
implicitSize: 22
|
||||
|
|
@ -44,7 +44,7 @@ StyledWrapperRectangle {
|
|||
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
|
||||
spacing: Styling.layout.spacing.base
|
||||
spacing: Styling.layout.spacing.lg
|
||||
|
||||
Mpris {}
|
||||
}
|
||||
|
|
@ -54,18 +54,14 @@ StyledWrapperRectangle {
|
|||
|
||||
Layout.alignment: Qt.AlignRight
|
||||
|
||||
spacing: Styling.layout.spacing.base
|
||||
|
||||
Pywal {}
|
||||
spacing: Styling.layout.spacing.lg
|
||||
|
||||
Pipewire {}
|
||||
|
||||
Caffeine {}
|
||||
StyledLayoutSeparator {}
|
||||
|
||||
Network {}
|
||||
|
||||
Bluetooth {}
|
||||
|
||||
Storage {}
|
||||
|
||||
Memory {}
|
||||
|
|
@ -74,10 +70,20 @@ StyledWrapperRectangle {
|
|||
|
||||
Gpu {}
|
||||
|
||||
Power {}
|
||||
StyledLayoutSeparator {}
|
||||
|
||||
Pywal {}
|
||||
|
||||
Caffeine {}
|
||||
|
||||
Bluetooth {}
|
||||
|
||||
StyledLayoutSeparator {}
|
||||
|
||||
Clock {}
|
||||
|
||||
Power {}
|
||||
|
||||
Notifications {}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,10 @@
|
|||
import qs.components
|
||||
import Quickshell
|
||||
|
||||
StyledRectangle {
|
||||
StyledText {
|
||||
StyledText {
|
||||
text: ` ${Qt.formatDateTime(clock.date, "hh:mm:ss AP")}`
|
||||
SystemClock {
|
||||
id: clock
|
||||
precision: SystemClock.Seconds
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,9 +5,7 @@ import qs.utils
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
|
||||
StyledRectangle {
|
||||
|
||||
RowLayout {
|
||||
RowLayout {
|
||||
|
||||
Ref {
|
||||
service: SystemInfo
|
||||
|
|
@ -20,5 +18,4 @@ StyledRectangle {
|
|||
StyledText {
|
||||
text: ` ${(SystemInfo.memPerc * 100).toFixed()}%`
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,9 +5,7 @@ import qs.utils
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
|
||||
StyledRectangle {
|
||||
|
||||
RowLayout {
|
||||
RowLayout {
|
||||
|
||||
Ref {
|
||||
service: NetworkService
|
||||
|
|
@ -51,5 +49,4 @@ StyledRectangle {
|
|||
id: text
|
||||
text: ` ${(NetworkService.active?.strength ?? 0).toFixed()}%`
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,9 +5,7 @@ import qs.utils
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
|
||||
StyledRectangle {
|
||||
|
||||
RowLayout {
|
||||
RowLayout {
|
||||
|
||||
Ref {
|
||||
service: SystemInfo
|
||||
|
|
@ -22,5 +20,4 @@ StyledRectangle {
|
|||
|
||||
text: ` ${(SystemInfo.storagePerc * 100).toFixed()}%`
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue