summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-10 17:41:54 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-09-10 17:41:54 +0200
commit8890a5c69bd327701b4d4de109b6f91f3f739c38 (patch)
treeb076ef4f6fbf8a4ded38db831098fc16e5c1940c
parentae0a4227201bfa8101905c5c8c012cb29de68f7f (diff)
downloadawesome-configs-8890a5c69bd327701b4d4de109b6f91f3f739c38.tar.xz
Fixed widget visibility with multiple displays
-rw-r--r--rc.lua14
1 files changed, 8 insertions, 6 deletions
diff --git a/rc.lua b/rc.lua
index 0ca8b89..ab9c9a0 100644
--- a/rc.lua
+++ b/rc.lua
@@ -326,7 +326,7 @@ datewidget:buttons(awful.util.table.join(
-- PyLendar: http://sysphere.org/~anrxc/j/archives/2009/03/11/desktop_calendars
awful.button({ }, 1, function () awful.util.spawn("pylendar.py", false) end)))
-- }}}
-
+
-- {{{ System tray
-- Initialize widget
systray = widget({ type = "systray" })
@@ -376,7 +376,7 @@ for s = 1, screen.count() do
separator,
datewidget, dateicon,
separator,
- volwidget, spacer, volbarwidget, volicon,
+ volwidget, spacer, volbarwidget.widget, volicon,
separator,
spacer, orgwidget, orgicon,
separator,
@@ -386,14 +386,16 @@ for s = 1, screen.count() do
separator,
neticonup, netwidget, neticon,
separator,
- fswidget["backup"], fswidget["storage"],
- fswidget["home"], fswidget["root"], fsicon,
+ fswidget["backup"].widget,
+ fswidget["storage"].widget,
+ fswidget["home"].widget,
+ fswidget["root"].widget, fsicon,
separator,
- spacer, memwidget, spacer, memicon,
+ spacer, memwidget.widget, spacer, memicon,
separator,
spacer, batwidget, baticon,
separator,
- cpuwidget, spacer, thermalwidget, cpuicon,
+ cpuwidget.widget, spacer, thermalwidget, cpuicon,
layout = awful.widget.layout.horizontal.rightleft
}
end