Re: [dev] Announcing sinit - the suckless init

2014-02-08 Thread Truls Becken
Hi, Wrapping the argument to spawn in Arg union is useless now. Probably a leftover from the design with FIFO. -Truls

Re: [dev] Announcing sinit - the suckless init

2014-02-08 Thread sin
On Sat, Feb 08, 2014 at 09:27:36AM +0100, Truls Becken wrote: Hi, Wrapping the argument to spawn in Arg union is useless now. Probably a leftover from the design with FIFO. Yeah, indeed. Will remove.

[dev] [surf] [PATCH] improve title change handling

2014-02-08 Thread Quentin Rameau
This patch prevents title from being empty when following an anchor within a page. I'm don't think it breaks anything else, but of course I could be wrong. 0001-Prevent-title-from-being-empty-when-following-an-anc.patch Description: Binary data

Re: [dev] Re: [dev] [surf] [PATCH] replacing deprecating signal “title-changed” with “notify::title”

2014-02-08 Thread Christoph Lohmann
Greetings. On Sat, 08 Feb 2014 20:11:41 +0100 Quentin Rameau quinq...@gmail.com wrote: Sorry please disregard last mail, again I corrected some inconsistencies in my patch. This one is ok. Thanks for the patch. It has been applied. Sincerely, Christoph Lohmann

Re: [dev] Announcing sinit - the suckless init

2014-02-08 Thread Eckehard Berns
On Fri, Feb 07, 2014 at 09:36:01PM +, sin wrote: On Fri, Feb 07, 2014 at 09:56:17PM +0100, Eckehard Berns wrote: I tested v0.3 and besides some glitches due to my system everything worked fine. I'm using fgetty (yeah, freeing a couple more kb might not be worth using it, but I tried it

[dev] hotkey (1) - a suckless global keybinder

2014-02-08 Thread Calvin Morrison
Comrades - I have had a love affair with dwm's config.h. Unfortunately I also love i3, and also deal with a plethora of other desktops on my day to day work. so I created hotkey (1). Why wasn't there a simple way to have hotkeys, dealt with properly, in a suckless manner? I don't want inane

[dev] Re: hotkey (1) - a suckless global keybinder

2014-02-08 Thread Calvin Morrison
and I forgot the link... which is located here. http://github.com/mutantturkey/hotkey On 8 February 2014 18:37, Calvin Morrison mutanttur...@gmail.com wrote: Comrades - I have had a love affair with dwm's config.h. Unfortunately I also love i3, and also deal with a plethora of other desktops

[dev][ubase][PATCH] swapon/swapoff -a and -p

2014-02-08 Thread Carlos Torres
Hi sin, attached are two patches for the -a flag on swapon and swapoff. there is room for improvement. and cleaning up, but i wasn't sure how you might want it organized. i altered the error handling a little bit, since it felt funny how you let the loop continue on error and possibly removing

Re: [dev] hotkey (1) - a suckless global keybinder

2014-02-08 Thread Chris Down
On 2014-02-08 18:37:19 -0500, Calvin Morrison wrote: I have had a love affair with dwm's config.h. Unfortunately I also love i3, and also deal with a plethora of other desktops on my day to day work. so I created hotkey (1). Why wasn't there a simple way to have hotkeys, dealt with properly,

Re: [dev] hotkey (1) - a suckless global keybinder

2014-02-08 Thread Calvin Morrison
On 9 February 2014 01:07, Chris Down ch...@chrisdown.name wrote: On 2014-02-08 18:37:19 -0500, Calvin Morrison wrote: I have had a love affair with dwm's config.h. Unfortunately I also love i3, and also deal with a plethora of other desktops on my day to day work. so I created hotkey (1).

Re: [dev] hotkey (1) - a suckless global keybinder

2014-02-08 Thread Chris Down
On 2014-02-09 01:22:00 -0500, Calvin Morrison wrote: - You are using system(), which is highly unportable and extremely fragile; I'm not so sure. What's a better solution? system() seems like a very standard function. Portability is also not a real concern for me. mos everybody uses

Re: [dev] hotkey (1) - a suckless global keybinder

2014-02-08 Thread Calvin Morrison
On 9 February 2014 01:36, Chris Down ch...@chrisdown.name wrote: On 2014-02-09 01:22:00 -0500, Calvin Morrison wrote: - You are using system(), which is highly unportable and extremely fragile; I'm not so sure. What's a better solution? system() seems like a very standard function.