Re: [dwm] OT: Wireless in dwm

2009-04-23 Thread Don Harper
I use a little program called wifiroamd: Name: wifiroamdRelocations: (not relocatable) Version : 1.15 Vendor: duckland.org Release : 1.fc10Build Date: Sat 18 Apr 2009 05:34:20 AM CST Install Date: Sat 18 Apr

Re: [dwm] OT: Wireless in dwm

2009-04-22 Thread Ammar James
here is what i do: fire up urxvt: # iwlist wlan0 scan # iwconfig wlan0 essid NameOfWirelessNetwork key foobar123 #ap {MAC address} (optional) # iwconfig #just to see if it worked. # dhcpcd -d wlan0 #-d flag stands for debug, but its really analogous to --verbose # firefox

Re: [dwm] OT: Wireless in dwm

2009-04-21 Thread Preben Randhol
On Mon, 20 Apr 2009 10:47:25 -0500 Kurt H Maier karmaf...@gmail.com wrote: I wrote a script[1] that uses dmenu to present local wifi networks, and ask for a wep key. Shouldn't be too hard to extend to wpa etc. 1 - http://madleet.net/wifiselect.sh.html Thanks to all. Really helped me to

Re: [dwm] OT: Wireless in dwm

2009-04-21 Thread Lee Azzarello
Yea, thanks Niki! -lee On Mon, Apr 20, 2009 at 2:11 PM, Niki Yoshiuchi aplu...@gmail.com wrote: I can send you my wpa_supplicant.conf plus some scripts I wrote if you want.  I don't have them at work but I can get them to you in a couple of hours. They could probably use some work, but you

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread Antoni Grzymala
Preben Randhol dixit (2009-04-20, 15:52): This is somewhat off-topic. I'm totally new to using wireless network. At home everything is wired, but i have sometimes the need to use wireless when traveling. Now I have an Asus Eee so I can connect. Only problem is that the gui tool of xfce4 (or

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread markus schnalke
[2009-04-20 16:29] Antoni Grzymala ant...@chopin.edu.pl Lorenzo Bolla dixit (2009-04-20, 15:07): ifconfig and dhclient? Those two don't really deal with the wireless layer of 802.11 (though ifconfig does in some OS'es to an extent). He probably meant: iwconfig and dhclient

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread Jeremy Jay
I used to use stalonetray to be able to access nm-applet for wireless. But I've recently gotten a pretty good config going for wpa_supplicant that auto-connects to my secure wireless, but also uses any unsecured networks automatically when I'm on the road. It's pretty straightforward to setup,

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread Daniel Bainton
2009/4/20 Preben Randhol rand...@pvv.org: Hi This is somewhat off-topic. I'm totally new to using wireless network. At home everything is wired, but i have sometimes the need to use wireless when traveling. Now I have an Asus Eee so I can connect. Only problem is that the gui tool of xfce4

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread carmen
On Mon Apr 20, 2009 at 03:07:57PM +0100, Lorenzo Bolla wrote: ifconfig and dhclient? indeed wicd has a client/server architecture, suppose one could roll ncurses client http://bazaar.launchpad.net/~wicd-devel/wicd/trunk/annotate/head%3A/wicd/wicd-daemon.py personally i dont have dbus daemon

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] OT: Wireless in dwm

2009-04-20 Thread Kurt H Maier
I wrote a script[1] that uses dmenu to present local wifi networks, and ask for a wep key. Shouldn't be too hard to extend to wpa etc. 1 - http://madleet.net/wifiselect.sh.html # Kurt H Maier On Mon, Apr 20, 2009 at 10:14 AM, pmarin pacog...@gmail.com wrote: I use two naïve scripts, two

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread Delta
Hi, I use a homemade extension I made of the Ian Daniher wifi script: http://lists.suckless.org/dwm/0901/7282.html This wifi script parses a csv file containing the configurations of frequent networks. (example csv file attached) It uses iwlist, iwconfig, ifconfig, dhclient and wpa_supplicant

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread Lee Azzarello
On Mon, Apr 20, 2009 at 10:05 AM, Jeremy Jay dinkuma...@gmail.com wrote: I used to use stalonetray to be able to access nm-applet for wireless. But I've recently gotten a pretty good config going for wpa_supplicant that auto-connects to my secure wireless, but also uses any unsecured networks

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread Niki Yoshiuchi
I can send you my wpa_supplicant.conf plus some scripts I wrote if you want. I don't have them at work but I can get them to you in a couple of hours. They could probably use some work, but you should get the basic idea. On Mon, Apr 20, 2009 at 2:04 PM, Lee Azzarello l...@dropio.com wrote: On

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread Jeremy Jay
The wpa_supplicant.conf that comes with the package is really descriptive. I just edited it to suit and added the wpa_supplicant init script provided with my distro to the default runlevel. Here's my my wpa_supplicant.conf: --- # this lets me run wpa_cli

Re: [dwm] OT: Wireless in dwm

2009-04-20 Thread Lorenzo Bolla
I actually meant exactly ifconfig and dhclient (and wpa_supplicant). On FreeBSD, this is what I'm using (no iwconfig available...) in /etc/rc.conf add: ifconfig_ndis0=ssid your_ssid bssid your_bssid WPA DHCP in /etc/wpa_supplicant.conf add: network={ ssid=your_ssid psk=your_password }