diff options
| author | kj-sh604 | 2024-11-15 21:49:03 -0500 |
|---|---|---|
| committer | kj-sh604 | 2024-11-15 21:49:03 -0500 |
| commit | 16b203f8185e3f3640632779306756a776fdbe1d (patch) | |
| tree | 5123804d4cdf67c72383776ee80eed124ffa529f | |
| parent | 625b24f1c24d3f2856b8d6d230b01eb08b8f7494 (diff) | |
refactor: fix `xdgmenu` call
| -rw-r--r-- | .config/awesome/rc-4.3-3.lua | 2 | ||||
| -rw-r--r-- | .config/awesome/rc.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.config/awesome/rc-4.3-3.lua b/.config/awesome/rc-4.3-3.lua index f8f6016..9e0e3c7 100644 --- a/.config/awesome/rc-4.3-3.lua +++ b/.config/awesome/rc-4.3-3.lua @@ -7,7 +7,7 @@ local beautiful = require("beautiful") local menubar = require("menubar") local hotkeys_popup = require("awful.hotkeys_popup") require("awful.hotkeys_popup.keys") -xdg_menu = require("xdgmenu") +pcall(require, "xdgmenu") -- {{{ variable definitions -- themes define colours, icons, font and wallpapers. diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index dc34cac..e00504f 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -8,7 +8,7 @@ local ruled = require("ruled") local menubar = require("menubar") local hotkeys_popup = require("awful.hotkeys_popup") require("awful.hotkeys_popup.keys") -xdg_menu = require("xdgmenu") +pcall(require, "xdgmenu") -- {{{ variable definitions -- themes define colours, icons, font and wallpapers. |
