Re: [dev] [PATCH] Fixed embedding when given Window id is zero

2014-10-15 Thread k0ga
> > Patch letting st not embedding when given Window id is zero, without failing. It makes sense to me, so I will apply it next week. Regards,

[dev] [PATCH] [sbase] Adding human readable output to du

2014-10-15 Thread Jeffrey Picard
Hey all, I was poking around at du recently and noticed it doesn’t support human readable output. This is pretty easy to add however, at least in a simple form which just rounds the number of bytes down to the nearest increment of the highest power of 1024 that’s appropriate. If there’s interes

[dev] [PATCH] [st] Avoid failing when embedding with a Window id of 0

2014-10-15 Thread Quentin Rameau
I'd like to let st run with its own window when trying to embed it to a window with id 0 instead of exiting with an error. --- st.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/st.c b/st.c index bcf96e9..23dd7f1 100644 --- a/st.c +++ b/st.c @@ -3136,8 +3136,8 @@ xinit(

[dev] [sbase] [test] [patch] fix specific 3 argument case

2014-10-15 Thread Evan Gates
After writing my own test[0] I checked and sbase already has test. I'm including a patch to remove test from the TODO. I also noticed that sbase's test handles a few specific cases incorrectly (documentation at [1]). test ! = foo When there are 3 arguments and the second is a valid binary primary

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Dimitris Papastamos
On Wed, Oct 15, 2014 at 10:55:24AM -0700, Kartik Agaram wrote: > I've cloned all the repositories enumerated in > http://morpheus.2f30.org and I could build sbase and ubase. What order > should I build the rest in, to get to mk? You can grab mk from 9base or so.

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Dimitris Papastamos
On Wed, Oct 15, 2014 at 10:55:24AM -0700, Kartik Agaram wrote: > I've cloned all the repositories enumerated in > http://morpheus.2f30.org and I could build sbase and ubase. What order > should I build the rest in, to get to mk? Clone morpheus and follow the README. We have a ports tree with a fe

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Evan Gates
After looking at the sbase TODO I threw together test(1). As far as I can tell it's POSIX compliant. I used the POSIX description[0] to write it. It exits 0 for true, 1 for false, and 2 for bad input. Let me know what's good and what's bad. I'll work on addresing those concerns and getting it into

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Nick
Quoth Kartik Agaram: > But I don't know how to run ls: > > $ ls > usage: ls [-1adFilrtU] [FILE...] I'd guess you're using a shell that has ls aliased to 'ls --color' or similar.

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Kartik Agaram
> Your ls is aliased in your shell startup scripts. > Unset it or execute the program directly. Ack, you're right.

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread FRIGN
On Wed, 15 Oct 2014 10:53:50 -0700 Kartik Agaram wrote: > Is this expected? (I can try to debug if not.) This doesn't happen for me. In sbase/, running ./ls works as expected, listing the files in the current directory line-per-line. Cheers FRIGN -- FRIGN

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Dimitris Papastamos
On Wed, Oct 15, 2014 at 10:53:50AM -0700, Kartik Agaram wrote: > I just got sbase cloned and built without trouble. Awesome! > > But I don't know how to run ls: > > $ ls > usage: ls [-1adFilrtU] [FILE...] > $ ls . > usage: ls [-1adFilrtU] [FILE...] > $ ls -d . > usage: ls [-1adFilrtU] [FILE...] >

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Kartik Agaram
I've cloned all the repositories enumerated in http://morpheus.2f30.org and I could build sbase and ubase. What order should I build the rest in, to get to mk?

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Kartik Agaram
I just got sbase cloned and built without trouble. Awesome! But I don't know how to run ls: $ ls usage: ls [-1adFilrtU] [FILE...] $ ls . usage: ls [-1adFilrtU] [FILE...] $ ls -d . usage: ls [-1adFilrtU] [FILE...] $ ls * usage: ls [-1adFilrtU] [FILE...] $ ls -l usage: ls [-1adFilrtU] [FILE...] $ l

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread FRIGN
On Wed, 15 Oct 2014 15:46:00 +0200 Markus Teich wrote: > could you perhaps assemble a list of needed tools/options in s/u-base? http://git.suckless.org/sbase/tree/TODO http://git.suckless.org/ubase/tree/TODO Cheers FRIGN -- FRIGN

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Markus Teich
Dimitris Papastamos wrote: > The most limiting factor is the lack of tools and options in sbase and ubase. Heyho, could you perhaps assemble a list of needed tools/options in s/u-base? --Markus

[dev] [PATCH] Fixed embedding when given Window id is zero

2014-10-15 Thread quinq . ml
From: Quentin Rameau Patch letting st not embedding when given Window id is zero, without failing. --- st.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/st.c b/st.c index c61b90a..1b419c8 100644 --- a/st.c +++ b/st.c @@ -3134,8 +3134,8 @@ xinit(void) {

Re: [dev] [stali] What happened to stali?

2014-10-15 Thread Dimitris Papastamos
On Wed, Oct 15, 2014 at 12:29:13AM -0500, M Farkas-Dyck wrote: > I'm not sure, but some in this community are hacking morpheus [1], > which is much alike. > > [1] http://morpheus.2f30.org/ The project is currently losing traction because we lack the manpower to implement what is required. This i