25 lines
341 B
Lua
Executable File
25 lines
341 B
Lua
Executable File
return gears.table.join(
|
||
awful.key( {"Control"}, "Print",
|
||
function ()
|
||
bin.capture("region", "ocr")
|
||
end,
|
||
|
||
{
|
||
description = "OCR a region to the clipboard",
|
||
group = "Desktop"
|
||
}
|
||
),
|
||
|
||
awful.key( {}, "Print",
|
||
function ()
|
||
bin.flameshot.gui()
|
||
end,
|
||
|
||
{
|
||
description = "Take a screenshot",
|
||
group = "Desktop"
|
||
}
|
||
)
|
||
)
|
||
|