moved to personal fennel config for awesome and added qutebrowser
This commit is contained in:
parent
403cb92b7d
commit
688748f8a6
502 changed files with 8576 additions and 9597 deletions
19
awes2/bar.fnl
Normal file
19
awes2/bar.fnl
Normal 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))
|
||||
])])
|
||||
))
|
Loading…
Add table
Add a link
Reference in a new issue