nixnew/modules/user/modules/quickshell/shell/ShellIpc.qml

14 lines
208 B
QML

pragma Singleton
import Quickshell
import Quickshell.Io
import Quickshell.Hyprland
Singleton {
signal screenshot();
IpcHandler {
target: "screenshot"
function takeScreenshot() { screenshot(); }
}
}