diff options
author | Tim Keller <tjkeller.xyz> | 2025-04-12 20:13:01 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-04-12 20:13:01 -0500 |
commit | 98060b5004fff8889d352667c130d89c21459f9f (patch) | |
tree | 4050f9603acb9532aa2486ffbd161c052c0aa0d1 | |
parent | 6a4e7e1e90e53fd7b4af50b971814fa290d2f5f2 (diff) | |
download | awesome-98060b5004fff8889d352667c130d89c21459f9f.tar.xz awesome-98060b5004fff8889d352667c130d89c21459f9f.zip |
calendar popup
-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) |