mirror of
https://github.com/AlexMacocian/quick-visor.git
synced 2026-07-15 15:09:32 +00:00
21 lines
433 B
QML
21 lines
433 B
QML
import Quickshell
|
|
import Quickshell.Io
|
|
|
|
ShellRoot {
|
|
IpcHandler {
|
|
target: "quick-visor"
|
|
function toggle(): void { VisorService.toggle(); }
|
|
function open(): void { VisorService.open(); }
|
|
function close(): void { VisorService.close(); }
|
|
function refresh(): void { VisorService.refresh(); }
|
|
}
|
|
|
|
Visor {}
|
|
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
ScreenLabel {}
|
|
}
|
|
}
|