Re: [dwm] bash script for managing wireless connections

2009-01-06 Thread pmarin
wifi seems a just a simbolic link: edw...@casa:~/Desktop/WIFI$ ls -l wifi lrwxrwxrwx 1 edward edward 4 2009-01-06 16:51 wifi - wifi On Tue, Jan 6, 2009 at 12:45 AM, Ian Daniher it.dani...@gmail.com wrote: Hello dwm community! In the honor of the recent plethora of code hitting the mailing

Re: [dwm] Making it a million and one

2009-02-16 Thread pmarin
http://www.suckless.org/dwm/customisation/ http://www.suckless.org/dwm/tutorial.html Polite people suck less. On Mon, Feb 16, 2009 at 8:36 PM, Matthias-Christian Ott o...@mirix.org wrote: On Mon, Feb 16, 2009 at 04:59:04PM -0500, I. Khider wrote: Hello Fellow DWM Users, This question is

Re: [dwm] suckless.org stylesheet glitch

2009-03-11 Thread pmarin
Why have you change to werc? On Wed, Mar 11, 2009 at 10:00 AM, Anselm R Garbe garb...@gmail.com wrote: 2009/3/10 Uriel urie...@gmail.com: Good point, probably the werc stylesheet should be split and reorganized to avoid this kind of issues, I will think about it. Also, www.suckless.org is

Re: [dwm] Suckess Code Management

2009-03-12 Thread pmarin
1 Window Manager - DWM 2 File Manager - Tcsh 3 Text editor - Vim (I wish a suckless vi please!) 4 Calendar/Todo - Pcal (Try pcal -H | w3m -T text/html -cols 80) 5 File search - find/grep/awk 6 Web browser - Firefox, Dillo (last version support CSS a bit), w3m (for documentation). 7 Code

Re: [dwm] Suckess Code Management

2009-03-13 Thread pmarin
To navigate between directories the internal comands dirs, pushd, popd, etc are very useful. Also you can do multiple tasks in the same terminal with the job control commands. On Fri, Mar 13, 2009 at 7:19 AM, Amit Uttamchandani atu13...@csun.edu wrote: On Fri, 13 Mar 2009 14:59:03 +0900 Alan

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread pmarin
I use two naïve scripts, two files and an alias: #wep connect to a wep wifi #! /bin/sh key=`grep $1 /home/pmarin/wep | cut -d' ' -f2` sudo ifconfig wlan0 up sudo iwconfig wlan0 essid $1 sudo iwconfig wlan0 key s:$key sudo dhclient wlan0 #end The wep is a plain file with to columms essid key

Re: [dwm] uzbl. A browser that adheres to the unix philosophy.

2009-04-23 Thread pmarin
Try the last version of Dillo2. It is starting to support CSS and in the next version (Dillo 2.1) will support keybinding. On Thu, Apr 23, 2009 at 7:36 PM, Dusan ef_...@yahoo.com wrote: On Thu, 23 Apr 2009 12:02:18 -0400 Ian Daniher it.dani...@gmail.com wrote: Awesome, awesome idea but

Re: [dwm] Low Power Fanless Computer

2009-04-25 Thread pmarin
Low power computers...Why not a netbook? On Sat, Apr 25, 2009 at 6:58 PM, Charlie Kester corky1...@comcast.net wrote: On Sat 25 Apr 2009 at 08:45:40 PDT Matthias-Christian Ott wrote: After my router (which has a Geode LX 800) had a 1/10 of the Whetstone score of my laptop, I decided to buy a

Re: [dwm] Low Power Fanless Computer

2009-04-25 Thread pmarin
:18:45PM +0200, pmarin wrote: Low power computers...Why not a netbook? Because netbooks and laptops aren't ergonomic. Plug external input and output devices to them. ;-) meillo -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFJ81Jk6aFpZ

Re: [dwm] dwm's future

2009-04-25 Thread pmarin
In spanish we have a sentence for this: gunfire to kill flies On Sun, Apr 26, 2009 at 12:06 AM, Szabolcs Nagy nszabo...@gmail.com wrote: On 4/25/09, Christian Garbs mi...@cgarbs.de wrote: work, even without pango or cairo.  I have German umlauts as well as Japanese characters (eg. web page

Re: [dwm] dwm's future

2009-04-28 Thread pmarin
Try to make the new dependencies optionals. About the broken non-free apps, is not dwm's problem and one solution can be to use a qemu instance with another WM and connect to the host Xwindows server. On Tue, Apr 28, 2009 at 10:01 AM, Anselm R Garbe garb...@gmail.com wrote: Ok, thanks again for

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

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

2009-05-02 Thread pmarin
pmarin pacog...@gmail.com wrote: 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

Re: [dwm] Stats script

2009-05-03 Thread pmarin
My status bar is written in Tcl. It shows date, Mhz, memory, traffic network and battery status when the battery is present. The main reason to use a dinamic lenguage instead a more classic software tool approach is that I am not sure if doing 15 fork's each 2 second can be efficient. I am still

Re: [dwm] musca wm

2009-05-15 Thread pmarin
From Bash and readline man page (bugs section): It's too big and too slow. I think this bug is the perfect definition of GNU/FSF style. Have you seen a piece of software that is small, efficient and easy to read and in each new version it become clumsy, slow and bloated? On Fri, May 15,