Re: [dev] bluetooth without Python

2016-07-03 Thread patrick295767 patrick295767
maybe it would work with apulse i wont install pulseaudio 2015-07-13 17:32 GMT+02:00 Alex Pilon : >> Pat wrote: >> > I would like to install bluetooth in a lightweight maneer. >> > On Mon, Jul 13, 2015 at 09:49:13AM -0400, Bobby Powers wrote: >> You may also need the helper programs located in t

[dev] [scc] typeof is a gcc keyword

2016-07-03 Thread Marc Collin
Hey, I tried to compile scc with gcc and it failed because typeof is a gcc keyword and scc has a function called typeof on cc1/expr.c A rename from typeof to type_of fixes the issue. --- a/cc1/expr.c +++ b/cc1/expr.c @@ -765,7 +765,7 @@ static Node *unary(void); static Type * -typeof(Node *np) +

Re: [dev] [scc] typeof is a gcc keyword

2016-07-03 Thread Quentin Rameau
Hey Marc, > Hey, I tried to compile scc with gcc and it failed because typeof is a > gcc keyword and scc has a function called typeof on cc1/expr.c That's not really the cause. You'll have to use a c99 compiler to build scc. Maybe yours need an option like “-std=c99”. > Then I got scc to compile.

Re: [dev] [scc] typeof is a gcc keyword

2016-07-03 Thread Marc Collin
>That's not really the cause. You'll have to use a c99 compiler to build >scc. Maybe yours need an option like “-std=c99”. I got the idea from here. https://sourceforge.net/p/schillix-on/schillix-on/ci/6071f8422be450d2c3abd949005e0cb02960932c/ I changed config.mk. #CC = c99 to CC = cc. Otherwise I

Re: [dev] [dwm] Unnecessary scoping blocks

2016-07-03 Thread Markus Teich
Eric Pruitt wrote: > @@ -944,40 +944,36 @@ void > grabbuttons(Client *c, int focused) > { > updatenumlockmask(); > - { > - unsigned int i, j; > - unsigned int modifiers[] = { 0, LockMask, numlockmask, > numlockmask|LockMask }; > … > + unsigned int i, j; > +

Re: [dev] [dwm] Unnecessary scoping blocks

2016-07-03 Thread Eric Pruitt
On Sun, Jul 03, 2016 at 06:55:40PM +0200, Markus Teich wrote: > you should shift the declarations above the updatenumlockmask() call acording > to > "Do not mix declarations and code" from http://suckless.org/coding_style. The > same for the second removed pair of braces. An updated patch is atta

Re: [dev] [st][PATCH] Use XftFontMatch in place of FcFontMatch.

2016-07-03 Thread Amer
Greetings, Christoph I tried many ways to fix my fontconfig, but fallback isn't working for me with XftFontMatch patch at all. There isn't much difference in my configuration, comparing with Gentoo or Arch wiki. Therefore I finally ask you to share your working fontconfig, where fallback correctl

Re: [dev] [st][PATCH] Use XftFontMatch in place of FcFontMatch.

2016-07-03 Thread Amer
Seems like I was able to narrow down the bug with fonts fallback. (Requisites: multiple fallback fonts for 'monospace'.) Running on HiDPI with 'pixelsize' -- all works as expected: st -f monospace:pixelsize=35 Using relative font size, only first font treats 'size' as relative. But all conse