summary refs log tree commit diff
path: root/.config
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2012-07-07 23:29:50 -0400
committerJune McEnroe <programble@gmail.com>2012-07-07 23:29:50 -0400
commit50dd1fdf281a4aeaa0f1a4dd315cab1157047fc6 (patch)
tree629d2ad0ff637d44eb12e8fd165b1a7af2100b7b /.config
parentSwitch to default ruby when leaving project directory (diff)
downloadsrc-50dd1fdf281a4aeaa0f1a4dd315cab1157047fc6.tar.gz
src-50dd1fdf281a4aeaa0f1a4dd315cab1157047fc6.zip
Fuck awesome
Diffstat (limited to '.config')
-rw-r--r--.config/awesome/rc.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index ed39e8f0..5a71d92a 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -95,6 +95,7 @@ taglist = {
 }
 
 wibox = {
+    separator = widget({ type = "textbox" }),
     promptbox = awful.widget.prompt({ layout = awful.widget.layout.horizontal.leftright }),
     clock = awful.widget.textclock({ align = "right" }, "%a %b %d, %I:%M %p"),
     systray = widget({ type = "systray" }),
@@ -111,6 +112,7 @@ wibox = {
     },
 }
 
+wibox.separator.text = " "
 wibox.clockicon.image = wibox.icons.clock
 
 vicious.register(wibox.mpd, vicious.widgets.mpd, function (widget, args)
@@ -127,7 +129,7 @@ vicious.register(wibox.mpd, vicious.widgets.mpd, function (widget, args)
 end, 5)
 
 for s = 1, screen.count() do
-    wibox[s] = awful.wibox({ position = "top", screen = s})
+    wibox[s] = awful.wibox({ position = "top", screen = s, height = 16 })
     wibox[s].widgets = {
         {
             taglist.create(s),
@@ -137,6 +139,7 @@ for s = 1, screen.count() do
         s == 1 and wibox.systray or nil,
         wibox.clock,
         wibox.clockicon,
+        wibox.separator,
         wibox.mpd,
         wibox.mpdicon,
         layout = awful.widget.layout.horizontal.rightleft