2017-01-03 14:29:10 +01:00
|
|
|
return function(_, _)
|
2016-07-09 19:03:49 +02:00
|
|
|
|
|
|
|
-- Set the global shims
|
2016-08-12 01:55:46 +02:00
|
|
|
-- luacheck: globals awesome root tag screen client mouse drawin button
|
2016-07-09 19:03:49 +02:00
|
|
|
awesome = require( "awesome" )
|
|
|
|
root = require( "root" )
|
|
|
|
tag = require( "tag" )
|
|
|
|
screen = require( "screen" )
|
|
|
|
client = require( "client" )
|
|
|
|
mouse = require( "mouse" )
|
|
|
|
drawin = require( "drawin" )
|
2016-08-12 01:55:46 +02:00
|
|
|
button = require( "button" )
|
2016-07-09 19:03:49 +02:00
|
|
|
|
|
|
|
-- Force luacheck to be silent about setting those as unused globals
|
|
|
|
assert(awesome and root and tag and screen and client and mouse)
|
|
|
|
|
|
|
|
-- Silence debug warnings
|
|
|
|
require("gears.debug").print_warning = function() end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|