[dwm] Q on floats

2009-05-01 Thread Don Harper
Is there a way to get a float to not get focus except if I click/mouse over it? I am using stalonetray with the following rule: { stalonetray, stalonetray, stalonetray, ~0, True }, This gets the window on all tags like I want, but every time I switch to a new tag, stalonetray window

Re: [dwm] Q on floats

2009-05-01 Thread Haomin Wen
Hi, I am using trayer to provide a system tray. I write a patch to make dwm work with trayer. it will be displayed on every tag but will never get focused or displayed at title bar, and you are able to use mouse to click icons on it. dwm will leave a blank area on bottom for the tray after trayer

Re: [dwm] dwm's future

2009-05-01 Thread Matthias Kirschner
hi Szabolcs, * Szabolcs Nagy nszabo...@gmail.com [2009-04-29 13:37:17 +0200]: On 4/28/09, Matthias Kirschner m...@fsfe.org wrote: I am very interested in that list. Can you please sent it to me? cad softwares (and many related formats are closed as well) Was already on my list. fpga

Re: [dwm] dwm's future

2009-05-01 Thread Matthias-Christian Ott
On Thu, Apr 30, 2009 at 03:44:46PM +0200, Matthias Kirschner wrote: hi Szabolcs, * Szabolcs Nagy nszabo...@gmail.com [2009-04-29 13:37:17 +0200]: On 4/28/09, Matthias Kirschner m...@fsfe.org wrote: I am very interested in that list. Can you please sent it to me? cad softwares

[dwm] [OT] Suckless way of doing spreadsheet

2009-05-01 Thread Amit Uttamchandani
I don't have a powerful machine so using OpenOffice was out of the question. I was happily using gnumeric for sometime but this bug just killed it for me: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526379 I know this will probably be fixed but I thought there must be a suckless way to do

Re: [dwm] [OT] Suckless way of doing spreadsheet

2009-05-01 Thread Antoni Grzymala
Amit Uttamchandani dixit (2009-05-01, 12:39): I don't have a powerful machine so using OpenOffice was out of the question. I was happily using gnumeric for sometime but this bug just killed it for me: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526379 I know this will probably be

Re: [dwm] [OT] Suckless way of doing spreadsheet

2009-05-01 Thread pmarin
Do you want to calculate only the total? Use hard tabs \t to separate columns My version: BEGIN { FS = \t+ OFS= \t } $2 ~ /[0-9]+\.?[0-9]*/ { total[car] += $2 total[pro] += $3 total[fat] += $4 } END{ print Totals, total[car], total[pro], total[fat] On Fri, May 1, 2009 at 9:39 PM,

Re: [dwm] [OT] Suckless way of doing spreadsheet

2009-05-01 Thread pmarin
Do you want to calculate only the total? Use hard tabs \t to separate columns My version: BEGIN { FS = \t+ OFS= \t+ } $2 ~ /[0-9]+\.?[0-9]*/ { total[car] += $2 total[pro] += $3 total[fat] += $4 } END{ print Totals, total[car], total[pro], total[fat] } On Fri, May 1, 2009 at