mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-01-01 20:35:39 +08:00
Keybind fixes for desktop elements
This commit is contained in:
parent
cbde9602e9
commit
2a912fc8fe
1 changed files with 6 additions and 2 deletions
|
|
@ -40,12 +40,16 @@ keys.desktopbuttons = gears.table.join(
|
|||
-- Right click - Show app drawer
|
||||
-- awful.button({ }, 3, function () mymainmenu:toggle() end),
|
||||
awful.button({ }, 3, function ()
|
||||
app_drawer_show()
|
||||
if app_drawer_show then
|
||||
app_drawer_show()
|
||||
end
|
||||
end),
|
||||
|
||||
-- Middle button - Toggle dashboard
|
||||
awful.button({ }, 2, function ()
|
||||
dashboard_show()
|
||||
if dashboard_show then
|
||||
dashboard_show()
|
||||
end
|
||||
end),
|
||||
|
||||
-- Scrolling - Switch tags
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue