feat: finish migrate

This commit is contained in:
2026-06-14 18:20:19 +02:00
parent 04a5d8919c
commit dce3c77a29
24 changed files with 92 additions and 200 deletions
+6 -6
View File
@@ -4,32 +4,32 @@ end
hl.define_submap("screenshot", function()
hl.bind("y", function()
hl.dispatch(hl.dsp.exec_cmd("grimblast --notify copy area"))
hl.dispatch(hl.dsp.exec_cmd("dms screenshot --no-file"))
exit_submap()
end)
hl.bind("c", function()
hl.dispatch(hl.dsp.exec_cmd("grimblast --notify copysave area"))
hl.dispatch(hl.dsp.exec_cmd("dms screenshot"))
exit_submap()
end)
hl.bind("s", function()
hl.dispatch(hl.dsp.exec_cmd("grimblast --notify save area"))
hl.dispatch(hl.dsp.exec_cmd("dms screenshot --no-copy"))
exit_submap()
end)
hl.bind("Shift + y", function()
hl.dispatch(hl.dsp.exec_cmd("grimblast --notify copy screen"))
hl.dispatch(hl.dsp.exec_cmd("dms screenshot full --no-file"))
exit_submap()
end)
hl.bind("Shift + c", function()
hl.dispatch(hl.dsp.exec_cmd("grimblast --notify copysave screen"))
hl.dispatch(hl.dsp.exec_cmd("dms screenshot full"))
exit_submap()
end)
hl.bind("Shift + s", function()
hl.dispatch(hl.dsp.exec_cmd("grimblast --notify save screen"))
hl.dispatch(hl.dsp.exec_cmd("dms screenshot full --no-copy"))
exit_submap()
end)