[dev] [dwm] [microPATCH] normal root window title

2016-09-26 Thread Cág
Root window title becomes the same as normal fg and bg. I like how this looks more than the original. Try only without fancybar and its children. Cágdiff --git a/dwm.c b/dwm.c index 421bf27..efc9cd8 100644 --- a/dwm.c +++ b/dwm.c @@ -743,7 +743,7 @@ drawbar(Monitor *m) if ((w = m->ww - sw

[dev] slcon 2016 videos are online

2016-09-26 Thread FRIGN
Hello fellow hackers, the videos of this year's suckless conference in the webm format are online. You can view them on the conference page[0]. Cheers FRIGN [0]: http://suckless.org/conferences/2016 -- FRIGN

Re: [dev] [dwm] [microPATCH] normal root window title

2016-09-26 Thread Alex Pilon
On Mon, Sep 26, 2016 at 06:21:31PM +0100, Cág wrote: > Root window title becomes the same as normal fg and bg. > […] > - drw_setscheme(drw, scheme[m == selmon ? SchemeSel : > SchemeNorm]); > + drw_setscheme(drw, scheme[m == selmon ? SchemeNorm : > SchemeNor

Re: [dev] [dwm] [microPATCH] normal root window title

2016-09-26 Thread Cág
Alex Pilon wrote: Isn't that just scheme[SchemeNorm] in either case? Whoops, fixed. Thank you. Cágdiff --git a/dwm.c b/dwm.c index 421bf27..7fca393 100644 --- a/dwm.c +++ b/dwm.c @@ -743,7 +743,7 @@ drawbar(Monitor *m) if ((w = m->ww - sw - x) > bh) { if (m->sel) { - drw_setscheme(dr

Re: [dev] seif opinions?

2016-09-26 Thread Louis Santillan
On Sun, Sep 25, 2016 at 11:12 PM, Thomas wrote: > This is interesting. Thanks for sharing. > > However, as welcome as alternatives to the current PKI system must be at > this point, replacing HTTPS and the rest of what we call "the web" with > nodejs, Qt, and JSON has got to be some sort of sick j

Re: [dev] seif opinions?

2016-09-26 Thread Martin Kühne
So, what about the impact of #3 and #4 on the code size of modern browsers. That means it should be easier to understand (and implement) than DOM. Or is there an even harder problem? cheers! mar77i