devconf/.config/awesome/flameshot.lua
2020-07-06 09:13:53 +02:00

13 lines
246 B
Lua

local awful = require("awful")
function flameshot_gui()
awful.spawn("flameshot gui")
end
function flameshot_screen()
awful.spawn("flameshot screen --clipboard")
end
function flameshot_full()
awful.spawn("flameshot full --clipboard")
end