20 lines
420 B
QML
20 lines
420 B
QML
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 {
|
|
property real reserve: height
|
|
id: botRect
|
|
y: parent.height - height
|
|
color: Pywal.special.background
|
|
implicitHeight: 10
|
|
implicitWidth: parent.width
|
|
}
|