mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
22 lines
404 B
QML
22 lines
404 B
QML
import Quickshell
|
|
import Quickshell.Io
|
|
import QtQuick
|
|
import Niri 0.1
|
|
|
|
import "root:/Modules"
|
|
|
|
ShellRoot{
|
|
id: root
|
|
|
|
Niri {
|
|
id: niri
|
|
Component.onCompleted: connect()
|
|
|
|
onConnected: console.info("Connected to niri")
|
|
onErrorOccurred: function(error) {
|
|
console.error("Niri error:", error)
|
|
}
|
|
}
|
|
|
|
LazyLoader{ active: true; component: Bar{} }
|
|
}
|