mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
22 lines
353 B
QML
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
|
|
}
|
|
}
|