>>103136145
i don't know about xmonad. you kind of have to bypass your distro's package management and use ghcup or something. don't like that. that might just be too autistic on my part, but i like to use my package manager to install most things.
i'm also not very familiar with haskell, i took that short course they have on the website and it was cute.
>>103136162
lua:
s.wibox:setup({
layout = wibox.layout.align.horizontal,
s.taglist, -- Left widget
s.tasklist, -- Middle widget
{ -- Right widgets
layout = wibox.layout.fixed.horizontal,
wibox.container.place(s.systray),
kblayout,
textclock,
},
})
fennel:
(s.wibox:setup {1 s.taglist
2 s.tasklist
3 {1 (wibox.container.place s.systray)
2 kblayout
3 textclock
:layout wibox.layout.fixed.horizontal}
:layout wibox.layout.align.horizontal})
you're right. this is so good. what was i thinking. i love manually numbering elements.
(: (awful.titlebar c {:size (+ 2 (beautiful.get_font_height))})
:setup
{...})
another favorite of mine, the : operator, because that's the best solution they found for object methods. i love OOP.