What is 3x3 default desktop? 2400x1440?Fvwm2 has a 3x3 default desktop.
I doubt it has been ported to Zaxxon, but it's available in SL4P.
Just not implemented in xf86-video-omap, should be doable but would take some effort.Notaz, could you explain why xrandr is off the table? It would be so helpful to have high res panning on the pandora. Browsing would be more comfortable with a bigger window, and many games could be run windowed and playable with panning.
I planned to do that someday, but I think it not worth the hassle.I dont want to install slackware and boot on it. Can I install it like Pandebian and use it with Super Zaxxon (with chroot)?
A bit off-topic: it makes me wonder why these drivers are called xf86-something. Is it "86" as in 80x86? The drivers themselves have nothing to do with intel processors, have they?Just not implemented in xf86-video-omap, should be doable but would take some effort.
Because you reached the goal of making her leaving you ?Well I think I don't need the software anymore.
Normaly I laught about everything but this is just meanBecause you reached the goal of making her leaving you ?
int fbdev = open("/dev/fb0", O_RDWR);
struct fb_var_screeninfo fbvar;
ioctl(fbdev, FBIOGET_VSCREENINFO, &fbvar);
fbvar.xres_virtual = yourvirtual_width;
fbvar.yres_virtual = yourvirtual_height;
fbvar.xoffset = position_x;
fbvar.yoffset = position_y;
ioctl(fbdev, FBIOPUT_VSCREENINFO, &fbvar);