nixfiles/quickshell/Components/SystemTraySeparator.qml
2025-12-06 16:55:48 -08:00

22 lines
353 B
QML

import QtQuick
import QtQuick.Layouts
import Quickshell
import QtQuick.Controls
import Quickshell.Widgets
import Quickshell.Services.SystemTray
import "root:/DataSources"
Item {
width: parent.width
height: 2
Rectangle {
anchors {
fill: parent
leftMargin: 5
rightMargin: 5
}
color: Stylix.base00
radius: 5
}
}