Bruno Damour schrieb:

you might want to solve the problem, under X, by setting the gconf parameters :
    unselect /apps/metacity/general/audible_bell
and, if you want :
    select /apps/metacity/general/visual_bell
    set /apps/metacity/general/visual_bell_type to your preference

you may have to install gconf-editor
    pkg install gconf-editor

no solution in text mode AFAIK (I would be interested)


You can do the above from a shell or script (though still not for text mode):

  # Value for visual_bell_type
  vbt="fullscreen"
  # OR: vbt="frame_flash"

  # Shorthand for path prefix
  amg="/apps/metacity/general"

  gconftool-2 --set --type boolean $amg/audible_bell false
  gconftool-2 --set --type boolean $amg/visual_bell true
  gconftool-2 --set --type string $amg/visual_bell_type $vbt

HTH

- Jörg

_______________________________________________
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org

Reply via email to