On 08-Apr-2002 Tig wrote:
> Mouse hiding based on a variable idle time. After X time has passed hide
> the mouse. The variable could be set in the .blackboxrc
> 

isn't there a X program which does this?

> Custom mouse icons. The current one is pretty ugly and not very minimal.
> It also does not really suit any of my themes :]
> 

the code is in blackbox.cc:

  cursor.session = XCreateFontCursor(getXDisplay(), XC_left_ptr);
  cursor.move = XCreateFontCursor(getXDisplay(), XC_fleur);
  cursor.ll_angle = XCreateFontCursor(getXDisplay(), XC_ll_angle);
  cursor.lr_angle = XCreateFontCursor(getXDisplay(), XC_lr_angle);

XC_.. is defined in <X11/cursorfont.h>.  If something else is defined in that
file you could easily use it instead.

Reply via email to