this will do for now
This commit is contained in:
parent
b5735ba756
commit
5f409d11ef
34
config/quickshell/Date.qml
Normal file
34
config/quickshell/Date.qml
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import QtQuick.Controls
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Io
|
||||||
|
|
||||||
|
|
||||||
|
ListView {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
height: 70
|
||||||
|
width: 60
|
||||||
|
|
||||||
|
property date currentDate: new Date()
|
||||||
|
|
||||||
|
Item {
|
||||||
|
width: parent.width
|
||||||
|
height: parent.height
|
||||||
|
anchors.centerIn: parent
|
||||||
|
Rectangle {
|
||||||
|
width: 60
|
||||||
|
height: 65
|
||||||
|
radius: 3
|
||||||
|
Text {
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
anchors.centerIn: parent
|
||||||
|
font.pointSize: 20
|
||||||
|
color: "black"
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@ ListView {
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: 60
|
width: 60
|
||||||
height: 60
|
height: 65
|
||||||
radius: 3
|
radius: 3
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
Text {
|
Text {
|
||||||
|
|
|
@ -14,9 +14,10 @@ ListView {
|
||||||
|
|
||||||
model: workspaceArray
|
model: workspaceArray
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
height: 150
|
height: 135
|
||||||
width: 60
|
width: 60
|
||||||
spacing: 5
|
spacing: 5
|
||||||
|
interactive: false
|
||||||
delegate: Item {
|
delegate: Item {
|
||||||
width: Math.max((modelData.active) ? 70 : 40, 70)
|
width: Math.max((modelData.active) ? 70 : 40, 70)
|
||||||
height: 10
|
height: 10
|
||||||
|
|
|
@ -8,6 +8,8 @@ import QtQuick.Layouts
|
||||||
|
|
||||||
ShellRoot {
|
ShellRoot {
|
||||||
|
|
||||||
|
id: root
|
||||||
|
|
||||||
ReloadPopup {}
|
ReloadPopup {}
|
||||||
property string time;
|
property string time;
|
||||||
|
|
||||||
|
@ -45,8 +47,8 @@ ShellRoot {
|
||||||
|
|
||||||
height: 30;
|
height: 30;
|
||||||
|
|
||||||
// left
|
// top
|
||||||
RowLayout {
|
ColumnLayout {
|
||||||
/* anchors.left: parent.left */
|
/* anchors.left: parent.left */
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
/* anchors.bottom: parent.bottom */
|
/* anchors.bottom: parent.bottom */
|
||||||
|
@ -58,39 +60,41 @@ ShellRoot {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Center
|
// Center
|
||||||
RowLayout {
|
ColumnLayout {
|
||||||
anchors.centerIn: parent
|
/* anchors.centerIn: parent */
|
||||||
Text {
|
/* Text { */
|
||||||
color: "#FFFFFF"
|
/* color: "#FFFFFF" */
|
||||||
// now just time instead of root.time
|
/* // now just time instead of root.time */
|
||||||
text: time
|
/* text: time */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// right
|
// bottom
|
||||||
RowLayout {
|
ColumnLayout {
|
||||||
/* anchors.right: parent.right */
|
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
/* spacing: 5 */
|
/* spacing: 5 */
|
||||||
|
|
||||||
|
|
||||||
Battery { }
|
Battery { }
|
||||||
Time { }
|
/* Date {} */
|
||||||
|
Time {}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Process {
|
/* Process { */
|
||||||
id: dateProc
|
/* id: dateProc */
|
||||||
command: ["date", "+%I:%M%p %A, %b %e, %Y"]
|
/* command: ["date", "+%m %d"] */
|
||||||
running: true
|
/* running: true */
|
||||||
|
|
||||||
stdout: SplitParser {
|
/* stdout: SplitParser { */
|
||||||
// now just time instead of root.time
|
/* // now just time instead of root.time */
|
||||||
onRead: data => time = data
|
/* onRead: data => time = data */
|
||||||
}
|
/* } */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
Timer {
|
Timer {
|
||||||
interval: 1000
|
interval: 1000
|
||||||
|
|
Loading…
Reference in a new issue