diff options
| author | Kyle Javier | 2021-09-30 02:19:41 -0400 |
|---|---|---|
| committer | Kyle Javier | 2021-09-30 02:19:41 -0400 |
| commit | 9e849ae90ef246a175c3cd8496ee4c97effc8094 (patch) | |
| tree | 773d20fabacce41aff8ea7008863c5315e1f2091 | |
| parent | c5f152d050af69b2134c09202daf7c4d9b54c496 (diff) | |
added recache for awesome.menubar
| -rw-r--r-- | awesome/rc.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 8436641..4128715 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -17,6 +17,7 @@ local hotkeys_popup = require("awful.hotkeys_popup") -- Enable hotkeys help widget for VIM and other apps -- when client with a matching name is opened: require("awful.hotkeys_popup.keys") +menubar.cache_entries = true -- {{{ Error handling -- Check if awesome encountered an error during startup and fell back to @@ -399,7 +400,7 @@ globalkeys = gears.table.join( end, {description = "lua execute prompt", group = "awesome"}), -- Menubar - awful.key({ "Shift" }, "space", function() menubar.show() end, + awful.key({ "Shift" }, "space", function() menubar.refresh() menubar.show() end, {description = "show the menubar", group = "launcher"}) ) |
