initial commit
This commit is contained in:
commit
35524b5e6e
7 changed files with 412 additions and 0 deletions
37
Bar.qml
Normal file
37
Bar.qml
Normal file
|
@ -0,0 +1,37 @@
|
|||
pragma ComponentBehavior: Bound
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import Quickshell
|
||||
|
||||
PanelWindow {
|
||||
id: root
|
||||
color: "transparent"
|
||||
|
||||
anchors {
|
||||
top: true
|
||||
bottom: true
|
||||
right: true
|
||||
}
|
||||
width: 60
|
||||
|
||||
ColumnLayout {
|
||||
// anchors.fill: parent
|
||||
anchors.margins: 2
|
||||
spacing: 2
|
||||
anchors {
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
top: parent.top
|
||||
margins: 2
|
||||
}
|
||||
|
||||
ClockWidget {}
|
||||
|
||||
WorkspaceWidget {
|
||||
bar: root
|
||||
}
|
||||
// SysTray {
|
||||
// bar: root
|
||||
// }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue