Cleaned up keybinds

This commit is contained in:
2022-07-17 20:29:08 -07:00
parent 067b02c69e
commit fc761cb33b
9 changed files with 22 additions and 233 deletions

View File

@ -2,9 +2,11 @@
local script = conf_dir .. "modules/screenshot/screenshot.fish"
script = script .. " "
--[[
local function capture(source, target)
awful.spawn(script .. "capture " .. source .. " " .. target, false)
end
]]--
local function flameshot()
awful.spawn("flameshot gui", false)
@ -13,17 +15,6 @@ end
return {
keybinds = gears.table.join(
awful.key( {"Control"}, "Print",
function ()
capture("region", "ocr")
end,
{
description = "OCR a region to the clipboard",
group = "Desktop"
}
),
awful.key( {}, "Print",
function ()
flameshot()