[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: iconizing from command line



thanks!

regards
erez.

btw: if you have xwit installed, try this:


circle.c :
-----------------------
#include <math.h>
#define PI 3.1415926
void main()
{
 int i,x,y;
 char s[100];
 for (i=0;i<360;i++)
 {
  x=5*sin(i*PI/180);
  y=5*cos(i*PI/180);
  sprintf(s,"xwit -rmove %d %d",x,y);
  system(s);
  usleep(10000);
 }
}
-------------------
gcc -o circle circle.c -lm
/circle

;-)



Yedidya Bar-david wrote:
> 
> erez@savan.com wrote:
> >
> > Hi
> >
> > does anyone know how to iconize a window from command line ?
> 
> xwit
> look for it in X11 (or XFree86) archives.
> 
> >
> > regards
> > erez
> >
> > =================================================================
> > To unsubscribe, send mail to linux-il-request@linux.org.il with
> > the word "unsubscribe" in the message body, e.g., run the command
> > echo unsubscribe | mail linux-il-request@linux.org.il
> >
> 
>         didi

=================================================================
To unsubscribe, send mail to linux-il-request@linux.org.il with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail linux-il-request@linux.org.il