add hm module
This commit is contained in:
38
config/aurora/modules/BarLeft.qml
Normal file
38
config/aurora/modules/BarLeft.qml
Normal file
@@ -0,0 +1,38 @@
|
||||
import Quickshell // for PanelWindow
|
||||
import QtQuick // for Text
|
||||
import QtQuick.Shapes
|
||||
import QtQuick.Controls
|
||||
import QtQuick.Layouts
|
||||
import Quickshell.Io
|
||||
import Quickshell.Widgets
|
||||
import Quickshell.Wayland
|
||||
import Quickshell.Hyprland
|
||||
|
||||
|
||||
Rectangle {
|
||||
|
||||
id: leftRect
|
||||
|
||||
implicitHeight: parent.height
|
||||
|
||||
implicitWidth: 40
|
||||
|
||||
color: Pywal.special.background
|
||||
|
||||
|
||||
Launcher {
|
||||
id: launcher
|
||||
x: parent.width / 2 - implicitWidth / 2
|
||||
y: implicitWidth / 3
|
||||
Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
|
||||
}
|
||||
|
||||
Workspaces {
|
||||
id: workspaces
|
||||
x: parent.width / 2 - implicitWidth / 2
|
||||
y: 20 + launcher.y + launcher.height
|
||||
Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user