diff options
Diffstat (limited to 'config.dot/awesome.link/wibar.lua')
-rw-r--r-- | config.dot/awesome.link/wibar.lua | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/config.dot/awesome.link/wibar.lua b/config.dot/awesome.link/wibar.lua index 0f37ccf..41eafd8 100644 --- a/config.dot/awesome.link/wibar.lua +++ b/config.dot/awesome.link/wibar.lua @@ -1,11 +1,14 @@ -- {{{ Wibar -- Keyboard map indicator and switcher -mykeyboardlayout = awful.widget.keyboardlayout() +--mykeyboardlayout = awful.widget.keyboardlayout() -- Create a textclock widget --mytextclock = wibox.widget.textclock() mytextclock = wibox.widget.textclock('%H:%M ') +package.path = package.path .. ';/usr/share/powerline/bindings/awesome/?.lua' +require('powerline') + -- Create a wibox for each screen and add it local taglist_buttons = awful.util.table.join( awful.button({ }, 1, function(t) t:view_only() end), @@ -102,8 +105,9 @@ awful.screen.connect_for_each_screen(function(s) s.mytasklist, -- Middle widget { -- Right widgets layout = wibox.layout.fixed.horizontal, - mykeyboardlayout, - mytextclock, + --mykeyboardlayout, + powerline_widget, + --mytextclock, --s.mylayoutbox, wibox.widget.systray(), }, |