mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
17 lines
240 B
QML
17 lines
240 B
QML
import Quickshell
|
|
import QtQuick
|
|
|
|
FloatingWindow {
|
|
visible: true
|
|
width: 200
|
|
height: 100
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
// centers it within parent
|
|
text: "Hello world!"
|
|
color: "#0db9d7"
|
|
font.pixelSize: 18
|
|
}
|
|
}
|