Files
dotfiles/modules/quickshell/quickshell/bar/widgets/common/VerticalSeprator.qml

18 lines
294 B
QML
Executable File

import Quickshell
import QtQml
import QtQuick
Item {
id: root
anchors {
top: parent.top
bottom: parent.bottom
}
Rectangle {
anchors.centerIn: root
implicitHeight: root.height - 4
width: 1
color: "#8d8d8d"
}
}