sudo pacman -S flameshot
- edit ~/.config/awesome/rc.lua
- go to the line where keybinds are. add it after the menubar keybind if u want
- paste in lines:
awful.key(
{},
"Print",
function()
awful.spawn("flameshot gui")
end,
{description = "flameshot gui", group = "awesome"}
),
awful.key(
{"Shift"},
"Print",
function()
awful.spawn("flameshot gui -d 2000")
end,
{description = "flameshot gui with 2 second delay", group = "awesome"}
)