[dev] [PATCH] [slock] rework setting window color

2015-05-08 Thread Markus Teich
--- Heyho, while reviewing the latest slock patch, I noticed code duplication where the background colors are set. This patch fixes that. If you have any comments, let me know. --Markus slock.c | 17 +++-- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/slock.c b/sl

Re: [dev] [slock] [PATCH] Option to not show failure color on clear

2015-05-08 Thread Markus Teich
Nick Currier wrote: > I've made this change and attached the updated patch. Heyho, thanks for your contribution, I've pushed the patch. --Markus

[dev] surf patch: Explain cookie management in the man page.

2015-05-08 Thread Greg Reagle
Attached is the patch. This might seem obvious to many of you, but I think it would be nice to have it explained in the man page for people who are not computer experts like the suckless developers. Probably suckless users will be able to figure this out eventually, but this explanation can save

Re: [dev] How to use ssam in Ubuntu 14.04

2015-05-08 Thread Greg Reagle
On Thu, May 7, 2015, at 03:20 PM, Connor Lane Smith wrote: > It's also in the 9base git repo [1], just not in a release. > > [1]: http://git.suckless.org/9base/tree/ssam Thank you so much, that works! -- http://www.fastmail.com - Same, same, but different...

Re: [dev] [sbase] [PATCH 1/2] ln: only check existence of src/to for hardlinks

2015-05-08 Thread Dimitris Papastamos
Applied both, thanks :)

Re: [dev] [slock] [PATCH] Option to not show failure color on clear

2015-05-08 Thread koneu
On May 6, 2015 6:45:25 PM CEST, FRIGN wrote: >Come to think of this sentence, who seriously eats at a pub? There's a nice jazz pub 15 minutes down the road (by foot). They serve beer, weed, and some exceptional curry dish. -- koneu

[dev] [sbase] [PATCH 1/2] ln: only check existence of src/to for hardlinks

2015-05-08 Thread Eivind Uggedal
This allows for creating dangling symlinks with force applied: # Before: $ ln -sf non-existant target ln: stat non-existent: No such file or directory $ ls -l target ls: lstat target: No such file or directory # After: $ ln -sf non-existant target $ ls -l target

Re: [dev] sple - A simple PDF links/emails extracotr.

2015-05-08 Thread Hiltjo Posthuma
On Sun, May 3, 2015 at 11:06 PM, Hypsurus wrote: > Hello to dev@suckless, > > i just started a new project: "sple - simple PDF links extractor" > > the uses for sple: > 1. to extract email addresses/links from a multiple PDF files > > i working on the following features: > 2. parse PDF documents O

[dev] [sbase] [PATCH 2/2] ln: exit non-zero when errors accured

2015-05-08 Thread Eivind Uggedal
--- ln.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ln.c b/ln.c index 2bfdbbdeacc6..bbda8215716f 100644 --- a/ln.c +++ b/ln.c @@ -19,7 +19,8 @@ int main(int argc, char *argv[]) { char *fname, *to; - int sflag = 0, fflag = 0, hasto = 0, dirfd = AT_FD