1local mousegrabber = {
2    run = function() end,
3    stop = function() end,
4    is_running = function() return false end,
5}
6
7return mousegrabber
8
9-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
10