diff options
-rw-r--r-- | bar.lua | 4 | ||||
-rw-r--r-- | rc.lua | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -104,6 +104,10 @@ function widgets.right_widgets(s) return wibox.widget { --mylauncher, } end +-- create calendar popup on textclock +local month_calendar = awful.widget.calendar_popup.month() +month_calendar:attach(widgets.textclock, "t", { on_hover = false }) + -- create a wibox for each screen and add it awful.screen.connect_for_each_screen(function (s) awful.tag({"1", "2", "3", "4", "5", "6", "7", "8", "9"}, s, awful.layout.layouts[1]) @@ -25,7 +25,6 @@ require("func.noborders") require("func.sloppyfocus") --require("func.warpcursor") require("func.tagnames") ---require("widgets.audio") -- call override module if exists --pcall(function() require("hosts." .. hostname) end) |