aaa
This commit is contained in:
parent
7d14df79e9
commit
5cf07d7e54
|
@ -1,5 +1,6 @@
|
||||||
import Quickshell.Hyprland
|
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Hyprland
|
||||||
|
|
||||||
|
Repeater {}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Io
|
import Quickshell.Io
|
||||||
|
import Quickshell.Hyprland
|
||||||
import QtQuick
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
|
||||||
ShellRoot {
|
ShellRoot {
|
||||||
|
|
||||||
|
@ -15,20 +17,48 @@ ShellRoot {
|
||||||
screen: modelData
|
screen: modelData
|
||||||
|
|
||||||
anchors {
|
anchors {
|
||||||
top: true
|
top: true;
|
||||||
left: true
|
left: true;
|
||||||
right: true
|
right: true;
|
||||||
}
|
}
|
||||||
|
|
||||||
height: 30
|
height: 30;
|
||||||
|
|
||||||
|
// left
|
||||||
|
RowLayout {
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
spacing: 5
|
||||||
|
|
||||||
Text {
|
Workspaces {}
|
||||||
anchors.centerIn: parent
|
|
||||||
|
|
||||||
|
Text {
|
||||||
|
text: "Left side"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Center
|
||||||
|
RowLayout {
|
||||||
|
anchors.centerIn: parent
|
||||||
|
Text {
|
||||||
// now just time instead of root.time
|
// now just time instead of root.time
|
||||||
text: time
|
text: time
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// right
|
||||||
|
RowLayout {
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
spacing: 5
|
||||||
|
|
||||||
|
Text {
|
||||||
|
text: "Right side"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue