30 lines
468 B
Lua
30 lines
468 B
Lua
|
|
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)
|
|
end
|
|
|
|
|
|
return {
|
|
keybinds = gears.table.join(
|
|
awful.key( {}, "Print",
|
|
function ()
|
|
flameshot()
|
|
end,
|
|
|
|
{
|
|
description = "Take a screenshot",
|
|
group = "Desktop"
|
|
}
|
|
)
|
|
)
|
|
}
|