moved to personal fennel config for awesome and added qutebrowser

This commit is contained in:
Chris Cochrun 2020-10-13 17:35:26 -05:00
parent 403cb92b7d
commit 688748f8a6
502 changed files with 8576 additions and 9597 deletions

View file

@ -0,0 +1,15 @@
(local awful (require "awful"))
(local gears (require "gears"))
(local beautiful (require "beautiful"))
(global clientbuttons
(gears.table.join
(awful.button [] 1 (fn [c] (: c :emit_signal "request::activate" "mouse_click" {:raise true})))
(awful.button [ modkey ] 1 (fn [c]
(: c :emit_signal "request::activate" "mouse_click" {:raise true})
(awful.mouse.client.move c)))
(awful.button [ modkey ] 3 (fn [c]
(: c :emit_signal "request::activate" "mouse_click" {:raise true})
(awful.mouse.client.resize c)))))
clientbuttons