awesome/spec/preload.lua

10 lines
411 B
Lua
Raw Normal View History

-- This script is given to Busted via the --helper argument. Modules loaded here
-- won't be cleared and reloaded by Busted. This is needed for lgi because lgi
-- is not safe to reload and yet Busted manages to do this.
require("lgi")
-- "fix" some intentional beautiful breakage done by .travis.yml
require("beautiful").init{}
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80