]> git.rmz.io Git - dotfiles.git/blobdiff - awesome/topbar.lua
awesome: update layout.inc call to new api
[dotfiles.git] / awesome / topbar.lua
index c6f21fc1513d75d2e5a1083f87ae291dc8a7d650..b945d80193a7dd846dd4c5ffd579344168ca8cec 100644 (file)
@@ -9,7 +9,7 @@ mytextclock = awful.widget.textclock(" %a %b %d, %k:%M ", 10)
 separator = wibox.widget.textbox()
 separator:set_markup('<span font="Symbola 10" color="#404040">│</span>')
 
--- {{{ Wibox
+-- Wibox {{{1
 -- Create a wibox for each screen and add it
 mywibox = {}
 mypromptbox = {}
@@ -82,7 +82,7 @@ for s = 1, screen.count() do
 
     -- Widgets that are aligned to the left
     local left_layout = wibox.layout.fixed.horizontal()
-    left_layout:add(mylauncher)
+    -- left_layout:add(mylauncher)
     left_layout:add(mytaglist[s])
     left_layout:add(mypromptbox[s])
 
@@ -108,4 +108,3 @@ for s = 1, screen.count() do
 
     mywibox[s]:set_widget(layout)
 end
--- }}}