2010-08-20 22:27:07 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- @author Uli Schlachter
|
|
|
|
-- @copyright 2010 Uli Schlachter
|
|
|
|
-- @release @AWESOME_VERSION@
|
2014-05-19 15:15:39 +02:00
|
|
|
-- @module gears
|
2010-08-20 22:27:07 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2012-06-12 10:13:46 +02:00
|
|
|
return
|
|
|
|
{
|
|
|
|
color = require("gears.color");
|
|
|
|
debug = require("gears.debug");
|
|
|
|
object = require("gears.object");
|
|
|
|
surface = require("gears.surface");
|
2012-07-29 16:39:03 +02:00
|
|
|
wallpaper = require("gears.wallpaper");
|
2014-12-06 16:44:04 +01:00
|
|
|
timer = require("gears.timer");
|
2015-06-13 16:43:05 +02:00
|
|
|
cache = require("gears.cache");
|
2015-06-13 16:58:22 +02:00
|
|
|
matrix = require("gears.matrix");
|
2016-01-18 23:20:32 +01:00
|
|
|
shape = require("gears.shape");
|
2016-02-28 12:07:02 +01:00
|
|
|
protected_call = require("gears.protected_call");
|
2016-03-26 18:33:45 +01:00
|
|
|
screen = require("gears.screen");
|
2012-06-12 10:13:46 +02:00
|
|
|
}
|
2010-08-20 22:27:07 +02:00
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|