aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2019-09-21 19:57:24 -0400
committertdro <tdro@users.noreply.github.com>2019-09-21 19:57:24 -0400
commit41f3e26c5bc3209b11dfc5ea124efad1bb2dfa79 (patch)
tree1d5aad9dd25fdb0d970c308faa92b819fa2c022e /.config/awesome
parent9ca2f3461e7f7e29c6f2f87c21e061974992d318 (diff)
downloaddotfiles-41f3e26c5bc3209b11dfc5ea124efad1bb2dfa79.tar.gz
dotfiles-41f3e26c5bc3209b11dfc5ea124efad1bb2dfa79.tar.bz2
dotfiles-41f3e26c5bc3209b11dfc5ea124efad1bb2dfa79.zip
.config/awesome/rc.lua: Remove scroll wheel mouse bindings
Diffstat (limited to '.config/awesome')
-rw-r--r--.config/awesome/rc.lua14
1 files changed, 2 insertions, 12 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index db05516..4d68d3c 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -194,10 +194,8 @@ mytaglist.buttons = awful.util.table.join(
if client.focus then
client.focus:toggle_tag(t)
end
- end),
- awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
- awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
- )
+ end)
+ )
local function set_wallpaper(s)
-- Wallpaper
@@ -278,14 +276,6 @@ awful.screen.connect_for_each_screen(function(s)
end)
-- }}}
--- {{{ Mouse bindings
-root.buttons(gears.table.join(
- awful.button({ }, 3, function () mymainmenu:toggle() end),
- awful.button({ }, 4, awful.tag.viewnext),
- awful.button({ }, 5, awful.tag.viewprev)
-))
--- }}}
-
-- {{{ Key bindings
globalkeys = gears.table.join(
awful.key({ modkey, }, "Left", awful.tag.viewprev,