devconf/.config/awesome/flameshot.lua

14 lines
246 B
Lua
Raw Normal View History

2020-07-06 07:13:53 +00:00
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