awesome/tests/examples/shims/mousegrabber.lua

10 lines
227 B
Lua
Raw Normal View History

local mousegrabber = {
run = function() end,
stop = function() end,
is_running = function() return false end,
}
return mousegrabber
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80