local wibox = require("wibox")
-- Create a textclock widget
-mytextclock = awful.widget.textclock()
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 = {}
-- 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])
right_layout:add(require("widgets/battery_widget"))
end
right_layout:add(separator)
- right_layout:add(mytextclock)
+ right_layout:add(require("widgets/calendar"))
right_layout:add(mylayoutbox[s])
-- Now bring it all together (with the tasklist in the middle)
mywibox[s]:set_widget(layout)
end
--- }}}