mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2025-01-11 02:08:08 +00:00
10 lines
254 B
Lua
10 lines
254 B
Lua
local awful = require("awful")
|
|
|
|
-- {{{ Mouse bindings
|
|
root.buttons(awful.util.table.join(
|
|
awful.button({ }, 3, function () mymainmenu:toggle() end),
|
|
awful.button({ }, 4, awful.tag.viewnext),
|
|
awful.button({ }, 5, awful.tag.viewprev)
|
|
))
|
|
-- }}}
|