Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 834 Bytes

gtk.org

File metadata and controls

31 lines (24 loc) · 834 Bytes

My .gtkrc-2.0 file

Completely remove icons from buttons and menus

gtk-button-images = 0
gtk-menu-images = 0

Use emacs keybindings everywhere

gtk-key-theme-name = "Emacs"
include "/usr/share/themes/Emacs/gtk-2.0-key/gtkrc"

Remove/Kill all scrollbars

This method eliminates all scrollbars in GTK apps, see HideScrollbars.

style "noscrollbars" {
  GtkScrollbar::slider-width=0
  GtkScrollbar::trough-border=0
  GtkScrollbar::has-backward-stepper=0
  GtkScrollbar::has-forward-stepper=0
  GtkScrollbar::has-secondary-backward-stepper=0
  GtkScrollbar::has-secondary-forward-stepper=0
}
widget "MozillaGtkWidget.*" style "noscrollbars"