Re: [dwm] [ANNOUNCE] dvtm-0.2

2007-12-30 Thread Nicolas Martyanoff
'print pack(U,0x20ac).\n' perl -C -e 'print pack(U,0x00e9).\n' The first one should print an euro sign, second your é. In a simple xterm: $ perl -C -e 'print pack(U,0x20ac).\n' € $ perl -C -e 'print pack(U,0x00e9).\n' é In dvtm, in the two cases, I get a blank character. Regards, -- Nicolas

Re: [dwm] [ANNOUNCE] dvtm-0.2

2007-12-30 Thread Nicolas Martyanoff
On Sun, 30 Dec 2007 23:08:00 +0100 Marc Andre Tanner [EMAIL PROTECTED] wrote: On Sun, Dec 30, 2007 at 10:07:00PM +0100, Nicolas Martyanoff wrote: On Sun, 30 Dec 2007 14:02:59 +0100 Marc Andre Tanner [EMAIL PROTECTED] wrote: esting. Could you please send me the value of $LANG

Re: [dwm] [ANNOUNCE] dvtm-0.4

2008-02-09 Thread Nicolas Martyanoff
-way ? :) -- Nicolas Martyanoff http://codemore.org [EMAIL PROTECTED]

Re: [dwm] Xinerama and multihead support

2008-02-12 Thread Nicolas Martyanoff
with dmenu (last mercurial version) in the left screen. - Open an Xterm with alt+enter. - Run xrandr in the term. - Exit the term with 'exit'. Hope it will help. Regards, -- Nicolas Martyanoff http://codemore.org [EMAIL PROTECTED]

Re: [dwm] Xinerama and multihead support

2008-02-12 Thread Nicolas Martyanoff
). Is there a way to tell dwm to let some applications use the full display, and not only the current screen ? Regards, -- Nicolas Martyanoff http://codemore.org [EMAIL PROTECTED]

Re: [dwm] Xinerama and multihead support

2008-02-12 Thread Nicolas Martyanoff
that, all people who use multihead for some large application won't be able to use dwm. Let's wait 4.8 ! Regards, -- Nicolas Martyanoff http://codemore.org [EMAIL PROTECTED]

Re: [dwm] Xinerama and multihead support

2008-02-12 Thread Nicolas Martyanoff
, and the bugs raises just when I run xrandr, so no need to exit the term. Regards, -- Nicolas Martyanoff http://codemore.org [EMAIL PROTECTED]

Re: [dwm] xinerama, things get more and more useful

2008-03-01 Thread Nicolas Martyanoff
the screens. Furthermore, if it was possible before to use a window covering the whole display (blender for example) by switching to float mode, the by enabling the same tag on each screen (yes it was painful), it's not possible anymore. I really hope this is gonna change :( Regards, -- Nicolas

Re: [dwm] xinerama, things get more and more useful

2008-03-01 Thread Nicolas Martyanoff
personnally have nothing against xmonad, but I have years of experience in C programming, none in haskell, and I like to be able to tweak my wm; I think I'm gonna write my own wm :/ -- Nicolas Martyanoff http://codemore.org [EMAIL PROTECTED]

Re: [dwm] malloc'ed client in manage()

2008-09-07 Thread Nicolas Martyanoff
of zero, as a mnemonic to indicate that this is a special value for a pointer I think it's quite explicit: the NULL macro expands to 0. -- Nicolas Martyanoff http://codemore.org [EMAIL PROTECTED] signature.asc Description: PGP signature

Re: [dwm] malloc'ed client in manage()

2008-09-07 Thread Nicolas Martyanoff
On Sun, 7 Sep 2008 13:53:11 +0200 Szabolcs Nagy [EMAIL PROTECTED] wrote: On 9/7/08, Nicolas Martyanoff [EMAIL PROTECTED] wrote: I think it's quite explicit: the NULL macro expands to 0. NULL macro does not necessaryly expands to 0, but this is basic knowledge look it up in the standard