Re: [dev] [wmii] Changing view, but not launching programs in the new view

2010-10-30 Thread Robert Ransom
On Sun, 31 Oct 2010 00:14:38 -0200 zweifel wrote: > >> A slightly modified version worked on previous versions. Now I can > >> only change the views, but when I try to execute a terminal or other > >> things, they still appear on the other view. Any ideas on how to make > >> it work? > > > > It's

Re: [dev] [wmii] Changing view, but not launching programs in the new view

2010-10-30 Thread zweifel
>> Key $MODKEY-$RIGHT >>              i=`wmiir read /ctl| grep view | cut -d ' ' -f 2` >>              i=$(($i+1)) >>              wmiir xwrite /ctl view "$i" >>      Key $MODKEY-$LEFT >>              i=`wmiir read /ctl| grep view | cut -d ' ' -f 2` >>              i=$(($i-1)) >>              wmiir

Re: [dev] [wmii] Changing view, but not launching programs in the new view

2010-10-30 Thread Kris Maglione
On Sat, Oct 30, 2010 at 11:20:16PM -0200, zweifel wrote: I managed to pass almost all my configuration to the new wmii 3.9's wmiirc, though the following lines continue not to work: Key $MODKEY-$RIGHT i=`wmiir read /ctl| grep view | cut -d ' ' -f 2` i=$(($i+1))

[dev] [wmii] Changing view, but not launching programs in the new view

2010-10-30 Thread zweifel
Hi guys, I managed to pass almost all my configuration to the new wmii 3.9's wmiirc, though the following lines continue not to work: Key $MODKEY-$RIGHT i=`wmiir read /ctl| grep view | cut -d ' ' -f 2` i=$(($i+1)) wmiir xwrite /ctl view "$i" Key