diff options
| author | Blista Kanjo | 2023-02-05 15:57:36 -0500 |
|---|---|---|
| committer | Blista Kanjo | 2023-02-05 15:57:36 -0500 |
| commit | 85d0b7024d13f5f8f204bd3a8a207353140af467 (patch) | |
| tree | b9e13bb61322fa58c1c8872e971cf6b404a214cf | |
| parent | a3a103407eae4fc46e1151d382be2ee23308b3fc (diff) | |
refactor: updated section program comments
| -rw-r--r-- | .config/awesome/rc.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 707f0bd..9355021 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -59,8 +59,8 @@ awful.layout.layouts = { } -- }}} --- {{{ Menu --- Create a launcher widget and a main menu +-- {{{ Sub-Menus +-- Create sub-menus for different system functions s_menu = { { "off", function() awful.spawn.easy_async_with_shell("xset s off off") end }, { "10 # 10s", function() awful.spawn.easy_async_with_shell("xset s 10 0") end }, @@ -102,7 +102,10 @@ dunst_menu = { { "set-paused true", function() awful.spawn.easy_async_with_shell("dunstctl set-paused true") end }, { "set-paused false", function() awful.spawn.easy_async_with_shell("dunstctl set-paused false") end }, } +-- }}} +-- {{{ Menu +-- Create a launcher widget and a main menu myawesomemenu = { { "show hotkeys", function() hotkeys_popup.show_help(nil, awful.screen.focused()) end }, -- { "manual", terminal .. " -e man awesome" }, |
