Re: [dwm] Status text clock patch

2008-07-11 Thread Donald Chai
Any help would be appreciated, and also how could i do the same without using threads? This seems to work fine for me... --- a/dwm.c Thu Jul 03 17:05:56 2008 +0100 +++ b/dwm.c Fri Jul 11 00:26:08 2008 -0700 @@ -1313,11 +1313,28 @@ setmfact(const Arg *arg) { arrange(); }

Re: [dwm] Status text clock patch

2008-07-11 Thread John Mpanos
2008/7/11 Donald Chai [EMAIL PROTECTED]: Any help would be appreciated, and also how could i do the same without using threads? This seems to work fine for me... --- a/dwm.c Thu Jul 03 17:05:56 2008 +0100 +++ b/dwm.c Fri Jul 11 00:26:08 2008 -0700 @@ -1313,11 +1313,28 @@

[dwm] Status text clock patch

2008-07-10 Thread John Mpanos
After some digging around i figured what to do to draw text in the status area, so i wrote a simple clock using threads. I can't understand though why the clock doesn't get updated sometimes even though i call drawbar() directly from the thread run method... Any help would be appreciated, and also

Re: [dwm] Status text clock patch

2008-07-10 Thread Mate Nagy
Hulloh, On Thu, Jul 10, 2008 at 06:35:03PM +0300, John Mpanos wrote: After some digging around i figured what to do to draw text in the status area, so i wrote a simple clock using threads. I can't understand though why the clock doesn't get updated sometimes even though i call drawbar()