[dev] [2wm] dwm config.h in tree

2010-02-21 Thread Sebastian Liem
'lo,

I compiled 2wm recently. It failed initially due that config.h was a dwm 
config.h. A quick 'mv config.default.h config.h' solved the problem.

2wm is pretty dead but you might wanna fix that.

-- Sebastian



Re: [dev] AfD discussion of dwm Wikipedia article

2010-02-25 Thread Sebastian Liem
> The only thing that matters in wikipedia is your bureaucratic skills.
> You Germans should be able to master it!
>
> uriel

Internet says you are Swedish. We are pretty 'awesome' bureaucrats too.

-- Sebastian




Re: [dev] AfD discussion of dwm Wikipedia article

2010-02-25 Thread Sebastian Liem
I (might) stand corrected.

Maybe uriel is the avenging incarnation of KISS. Nationality is beneath him.

-- Sebastian



[dev] [9base] patch to build on OpenBSD

2010-07-18 Thread Sebastian Liem

ehlo,

I had to do some changes to successfully build 9base on
OpenBSD-current.

Changes
 a. include  in lib9/_p9dir.c (already done in plan9port)
 b. s/_mktemp/__mktemp/g in ed/ed.c due clashing with libc (iirc)

Patch included.

diff -r 09af6227574f ed/ed.c
--- a/ed/ed.c	Fri Jun 04 11:44:25 2010 +0100
+++ b/ed/ed.c	Sun Jul 18 17:35:53 2010 +0200
@@ -121,7 +121,7 @@
 void	setwide(void);
 void	squeeze(int);
 void	substitute(int);
-char*	_mktemp(char *as);
+char*	__mktemp(char *as);
 
 Rune La[] = { 'a', 0 };
 Rune Lr[] = { 'r', 0 };
@@ -162,7 +162,7 @@
 		globp = Lr;
 	}
 	zero = malloc((nlall+5)*sizeof(int*));
-	tfname = _mktemp(tmp);
+	tfname = __mktemp(tmp);
 	init();
 	setjmp(savej);
 	commands();
@@ -1584,7 +1584,7 @@
 }
 
 char*
-_mktemp(char *as)
+__mktemp(char *as)
 {
 	char *s;
 	unsigned pid;
diff -r 09af6227574f lib9/_p9dir.c
--- a/lib9/_p9dir.c	Fri Jun 04 11:44:25 2010 +0100
+++ b/lib9/_p9dir.c	Sun Jul 18 17:35:53 2010 +0200
@@ -44,6 +44,7 @@
 #define _HAVESTGEN
 #include 
 #include 
+#include 
 static vlong
 disksize(int fd, struct stat *st)
 {

-- Sebastian



Re: [dev] [dwm] Optional status bar

2012-02-08 Thread Sebastian Liem
On Wed, 8 Feb 2012 20:01:58 +0100, Anselm R Garbe  wrote:
> What I do plan though, is adding a config.h hook to make the bar
> window smaller (in terms of width) for a better dzen2 or similar
> integration.

While I personally doesn't have need for it, how about ability to make
clients "unmanaged"? I.e. visible on all tags but not accessible by any
key command. It shouldn't add much complexity and allow people to run
their favorite statusbar without too much pain. There's probably an old
(non-functional) patch out there.

-- Sebastian Liem