summaryrefslogtreecommitdiff
path: root/lib/wibox/widget/background.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/wibox/widget/background.lua')
-rw-r--r--lib/wibox/widget/background.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/wibox/widget/background.lua b/lib/wibox/widget/background.lua
new file mode 100644
index 0000000..3c35a0b
--- /dev/null
+++ b/lib/wibox/widget/background.lua
@@ -0,0 +1,16 @@
+---------------------------------------------------------------------------
+-- This class has been moved to `wibox.container.background`
+--
+-- @author Uli Schlachter
+-- @copyright 2010 Uli Schlachter
+-- @classmod wibox.widget.background
+---------------------------------------------------------------------------
+local util = require("awful.util")
+
+return util.deprecate_class(
+ require("wibox.container.background"),
+ "wibox.widget.background",
+ "wibox.container.background"
+)
+
+-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80