Re: [dev] [slock] [PATCH] Blank the screen with colour 0

2015-02-11 Thread David Phillips
Hi, Markus Teich wrote: >You can easily tell if someone tried to unlock your computer Hmm that's actually quite a good point/idea/use of the feature. Three colours sounds like a good middle ground. Attached is a patch which: * Adds another colour in config.def.h, COLOR_INIT * Renames the colours

Re: [dev] Re: [libutf] Proposal for additional rune utility functions

2015-02-11 Thread Connor Lane Smith
Hi, On 11 February 2015 at 20:48, FRIGN wrote: > there's no need for a separate GitHub-repo. You are the maintainer and > have the right to push your stuff to suckless, and at least I personally > would really like to see the fresh changes here on suckless.org rather > than some GitHub 0815 repos

Re: [dev] Re: [libutf] Proposal for additional rune utility functions

2015-02-11 Thread FRIGN
On Wed, 11 Feb 2015 20:29:49 + Connor Lane Smith wrote: Hey Connor, > I've added these proposed functions, and done some other work too, on > my GitHub repo [1], which is where I maintain libutf now that I no > longer contribute particularly regularly. Please feel free to send me > any other

[dev] Re: [libutf] Proposal for additional rune utility functions

2015-02-11 Thread Connor Lane Smith
Hi, I've added these proposed functions, and done some other work too, on my GitHub repo [1], which is where I maintain libutf now that I no longer contribute particularly regularly. Please feel free to send me any other patch proposals, either directly or via this mailing list (preferably with a

[dev] [sbase] [PATCH] uniq [input [output]] support

2015-02-11 Thread Ralph Eastwood
Attached to probably complete uniq functionality to POSIX-2008? From 0025ad0d56cae46275bfec1d9fe61f82e6ec5eb5 Mon Sep 17 00:00:00 2001 From: Tai Chi Minh Ralph Eastwood Date: Wed, 11 Feb 2015 15:18:10 + Subject: [PATCH 2/2] uniq.1: add [input [output]] information --- uniq.1 | 20 +++

Re: [dev] [sbase] [PATCH] uuencode base64 encoding/decoding and stdout output for uudecode

2015-02-11 Thread Ralph Eastwood
On 10 February 2015 at 19:45, Ralph Eastwood wrote: > On 10 February 2015 at 19:23, Ralph Eastwood wrote: >> >> Hi, >> >> Attached patch gives support for uuencode -m, base64 encoding and decoding >> in uudecode. >> Flag, -o, added so that uudecode can output to stdout to override the >> output i

Re: [dev] [sbase] [PATCH] readlink: add -m and -f flags

2015-02-11 Thread Ralph Eastwood
On 11 February 2015 at 10:58, Dimitris Papastamos wrote: > > Hi, > > Applied your patches, thanks! Can you send separate patches > to update the program usage + manpages for the options that you added? > I missed that initially. > I can do the manpages. I just noticed that my commit message sa

Re: [dev] [slock] [PATCH] Blank the screen with colour 0

2015-02-11 Thread Markus Teich
David Phillips wrote: > When started, slock doesn't blank the displays to colour 0 until a slock to > realise the input buffer is empty (i.e. backspace is hit). As far as I can > tell, this isn't the intended behaviour. This patch fixes this problem such > that as soon as slock is started, the disp

Re: [dev] [sbase] [PATCH] readlink: add -m and -f flags

2015-02-11 Thread Dimitris Papastamos
Hi, Applied your patches, thanks! Can you send separate patches to update the program usage + manpages for the options that you added? I missed that initially.

Re: [dev] [libutf] Proposal for additional rune utility functions

2015-02-11 Thread Dimitris Papastamos
On Wed, Feb 11, 2015 at 07:37:00AM +0100, Julian Dammann wrote: > > > Yes, I speak about static linking, because It is what we have in > > > sbase, so dynamic linking is outside of this discussion (ant it is > > > not suckless :P). And maybe compilers are smarters, but the link > > > process is the

[dev] [sbase] [PATCH] uniq: add ascii implementation of -s and -f flags

2015-02-11 Thread Ralph Eastwood
Should be easily portable to move isspace to isrunespace for utf8 whitespace skipping. Once the UTF8 tables are available, it should be possible to use implement a utf8 equivalent of strspn and strcspn in place of isspace (which may be faster). Thanks to FRIGN for the suggestions. Cheers, Ralph F

[dev] [sbase] [PATCH] readlink: add -m and -f flags

2015-02-11 Thread Ralph Eastwood
As stated in the title. Cheers, Ralph From b141c652d8a71b4bbdf59e61fee175ccfbeaf50b Mon Sep 17 00:00:00 2001 From: Tai Chi Minh Ralph Eastwood Date: Wed, 11 Feb 2015 08:55:17 + Subject: [PATCH] readlink: add -m and -f flags --- readlink.c | 68 +++