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

19
awes2/bar.fnl Normal file
View file

@ -0,0 +1,19 @@
(local awful (require "awful"))
(local beautiful (require "beautiful"))
(local wibox (require "wibox"))
(local dpi xresources.apply_dpi)
(awful.screen.connect_for_each_screen(fn screen_bar [s]
"Adding a bar for each screen"
(awful.tag([ "◉", "◉", "◉", "◉"] s awful.layout.layouts[1]))
(let [yoffset (dpi 45)])
(let [xoffset (dpi 18)])
(let [mypanel (wibox
[
(let x (+ s.geometry.x xoffset))
(let y (- s.geometry.height yoffset))
(let height (dpi 30))
])])
))