forked from Shinonome/dots-hyprland
5d1a9b1e9c
Co-Authored-By: Vague Syntax <173799252+vaguesyntax@users.noreply.github.com>
28 lines
581 B
QML
28 lines
581 B
QML
import qs
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import qs.services
|
|
import QtQuick
|
|
import Quickshell
|
|
|
|
AndroidQuickToggleButton {
|
|
id: root
|
|
|
|
name: Translation.tr("Screen snip")
|
|
toggled: false
|
|
buttonIcon: "screenshot_region"
|
|
|
|
onClicked: {
|
|
GlobalStates.sidebarRightOpen = false;
|
|
delayedActionTimer.start()
|
|
}
|
|
Timer {
|
|
id: delayedActionTimer
|
|
interval: 300
|
|
repeat: false
|
|
onTriggered: {
|
|
Quickshell.execDetached(["qs", "-p", Quickshell.shellPath("screenshot.qml")])
|
|
}
|
|
}
|
|
}
|