Re: [hackers] [st][PATCH] st-disable-bold-italic-fonts-0.8.2

2019-04-02 Thread Ryan
Fair enough. I'll refactor when I have nothing else to, until then priority for me was to get this working with 0.8.2 :) On Tue, Apr 2, 2019 at 6:32 PM Eric Pruitt wrote: > On Tue, Apr 02, 2019 at 08:15:21AM +0200, Ryan wrote: > > Feel free to change it. All I did with the patch is change the

Re: [hackers] [st][PATCH] st-disable-bold-italic-fonts-0.8.2

2019-04-02 Thread Eric Pruitt
On Tue, Apr 02, 2019 at 08:15:21AM +0200, Ryan wrote: > Feel free to change it. All I did with the patch is change the previous > version so it works with 6.2. I have no interest in the patch itself, just pointing out a problem I saw. Eric

Re: [hackers] [st] revert part of commit add0211522737b79dad990ccd65c8af63b5cc1dd || Hiltjo Posthuma

2019-04-02 Thread Hiltjo Posthuma
On Tue, Apr 02, 2019 at 01:12:48PM +0300, Lauri Tirkkonen wrote: > Hey, > > On Fri, Mar 15 2019 20:41:37 +0100, g...@suckless.org wrote: > > commit 21367a040f056f6a207fafa066bd1cb2d9cae586 > > Author: Hiltjo Posthuma > > AuthorDate: Fri Mar 15 20:40:16 2019 +0100 > > Commit: Hiltjo

Re: [hackers] [PATCH] volume: compute volume by alsa api on linux

2019-04-02 Thread Ryan
Works great! There's just still one issue as far as I can see. How do you select a mixer when you have multiple cards (for example usb Microphone in)? On Tue, Apr 2, 2019 at 3:11 AM Doan Tran Cong Danh wrote: > From: Đoàn Trần Công Danh > > There's a non-posix assignment inside config.mk, >

Re: [hackers] [st][PATCH] st-disable-bold-italic-fonts-0.8.2

2019-04-02 Thread Eric Pruitt
On Mon, Apr 01, 2019 at 10:19:30PM -0700, Eric Pruitt wrote: > On Sat, Mar 30, 2019 at 02:31:56PM +0100, Ryan Kes wrote: > > +int disableroman = 0; > > [...] > > + if (!disableitalic) > > + FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC); > > + if (!disableroman) > > +

Re: [hackers] [st] revert part of commit add0211522737b79dad990ccd65c8af63b5cc1dd || Hiltjo Posthuma

2019-04-02 Thread Lauri Tirkkonen
Hey, On Fri, Mar 15 2019 20:41:37 +0100, g...@suckless.org wrote: > commit 21367a040f056f6a207fafa066bd1cb2d9cae586 > Author: Hiltjo Posthuma > AuthorDate: Fri Mar 15 20:40:16 2019 +0100 > Commit: Hiltjo Posthuma > CommitDate: Fri Mar 15 20:40:16 2019 +0100 > > revert part of

Re: [hackers] [st][PATCH] st-disable-bold-italic-fonts-0.8.2

2019-04-02 Thread Ryan
Feel free to change it. All I did with the patch is change the previous version so it works with 6.2. On Tue, 2 Apr 2019, 08:13 Eric Pruitt, wrote: > On Sat, Mar 30, 2019 at 02:31:56PM +0100, Ryan Kes wrote: > > +int disableroman = 0; > > [...] > > + if (!disableitalic) > > +

Re: [hackers] [st][PATCH] st-disable-bold-italic-fonts-0.8.2

2019-04-02 Thread Eric Pruitt
On Sat, Mar 30, 2019 at 02:31:56PM +0100, Ryan Kes wrote: > +int disableroman = 0; > [...] > + if (!disableitalic) > + FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC); > + if (!disableroman) > + FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ROMAN); I