Hi *,
hab das Ursprungsposting zu schnell geloescht, hier ist eine Moeglichkeit, den Cursor unter X interessanter zu machen:
$ cat > ataricurs.xbm <<\EOF #define ataricurs_width 16 #define ataricurs_height 16 static unsigned char ataricurs_bits[] = { 0x00, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x1e, 0x00, 0x3e, 0x00, 0x7e, 0x00, 0xfe, 0x00, 0xfe, 0x01, 0x3e, 0x00, 0x36, 0x00, 0x62, 0x00, 0x60, 0x00, 0xc0, 0x00, 0xc0, 0x00, 0x00, 0x00}; EOF
$ cat > atarimask.xbm <<\EOF #define atarimask_width 16 #define atarimask_height 16 static unsigned char atarimask_bits[] = { 0x03, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3f, 0x00, 0x7f, 0x00, 0xff, 0x00, 0xff, 0x01, 0xff, 0x03, 0xff, 0x01, 0x7f, 0x00, 0xf7, 0x00, 0xf3, 0x00, 0xe0, 0x01, 0xe0, 0x01, 0xc0, 0x00}; EOF
$ cat > blink <<\EOF #!/bin/sh while : do xsetroot -cursor ataricurs.xbm atarimask.xbm -fg Black -bg White sleep 1 xsetroot -cursor ataricurs.xbm atarimask.xbm -fg Red -bg White sleep 1 done EOF
$ chmod 755 blink
$ ./blink &
Nicht schoen, aber selten :)
bye, Chris