summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-12-26 22:43:48 +0100
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-12-26 22:43:48 +0100
commitc5dd408c09e463e8bd06303497ab9db21c5a4230 (patch)
tree0b2e2b16c353c0b525af26a3e90c8b8339b68006 /rc.lua
parent33bbb86bec46a7eb311ef56f776f27caf8c2d1a6 (diff)
downloadawesome-configs-c5dd408c09e463e8bd06303497ab9db21c5a4230.tar.xz
rc.lua: separator is now an imagebox
Commit 15b92bf introduced the wibox border, now this commit moves widgets into containers.
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua19
1 files changed, 10 insertions, 9 deletions
diff --git a/rc.lua b/rc.lua
index 083a81b..76a0528 100644
--- a/rc.lua
+++ b/rc.lua
@@ -1,6 +1,6 @@
-- {{{ License
--
--- Awesome configuration, using awesome 3.4.2 on Arch GNU/Linux
+-- Awesome configuration, using awesome 3.4.3 on Arch GNU/Linux
-- * Adrian C. <anrxc@sysphere.org>
-- Screenshot: http://sysphere.org/gallery/snapshots
@@ -68,9 +68,10 @@ end
-- {{{ Widgets configuration
--
-- {{{ Reusable separators
-spacer = widget({ type = "textbox" })
-separator = widget({ type = "textbox" })
-separator.text, spacer.text = "|", " "
+spacer = widget({ type = "textbox" })
+separator = widget({ type = "imagebox" })
+spacer.text = " "
+separator.image = image(beautiful.widget_sep)
-- }}}
-- {{{ CPU usage and temperature
@@ -297,14 +298,14 @@ for s = 1, screen.count() do
s == screen.count() and systray or nil,
separator, datewidget, dateicon,
separator, volwidget, spacer, volbar.widget, volicon,
- separator, spacer, orgwidget, orgicon,
+ separator, orgwidget, orgicon,
separator, mailwidget, mailicon,
separator, upicon, netwidget, dnicon,
separator, fs.b.widget, fs.s.widget, fs.h.widget, fs.r.widget, fsicon,
- separator, spacer, membar.widget, spacer, memicon,
- separator, spacer, batwidget, baticon,
- separator, cpugraph.widget, spacer, tzswidget, cpuicon,
- ["layout"] = awful.widget.layout.horizontal.rightleft
+ separator, membar.widget, spacer, memicon,
+ separator, batwidget, baticon,
+ separator, cpugraph.widget, separator, tzswidget, cpuicon,
+ separator, ["layout"] = awful.widget.layout.horizontal.rightleft
}
end
-- }}}