16 lines
240 B
QML
16 lines
240 B
QML
import Quickshell.Io
|
|
|
|
IpcHandler {
|
|
target: target
|
|
required property var item
|
|
function close() {
|
|
item.close();
|
|
}
|
|
function open() {
|
|
item.open();
|
|
}
|
|
function toggle() {
|
|
item.toggle();
|
|
}
|
|
}
|