¿Sin qué ajustes, trucos o modificaciones de Ubuntu no podrías vivir?

¿Sin qué ajustes, trucos o modificaciones de Ubuntu no podrías vivir?

¿Qué ajustes, trucos o modificaciones de Ubuntu te parecen indispensables? Podría ser Ubuntu basado en Gnome2 o Gnome3.

Normas:

  • Mencione la versión de Ubuntu (si no es un ajuste general)
  • Incluya un breve "instructivo"
  • Incluya un enlace de contenido original (de foros, blogs, sitios web), si es posible.

Respuesta1

Utilizo un script que hace muchos ajustes, configuraciones y modificaciones por mí. Muchos de ellos se pueden hacer a mano, pero con un script es más fácil que recorrer menús y ventanas.

# Enable the firewall
sudo ufw enable

# Get some codecs to play media
sudo apt-get install gstreamer0.10-plugins-ugly gstreamer0.10-ffmpeg

# Add third-party PPA repositories
sudo add-apt-repository ppa:ubuntu-wine/ppa

# Get some software I like
sudo apt-get install synaptic gnome-session-fallback blender chromium-browser gimp lm-sensors php5-cli stjerm wine1.3 xchat

# Get rid of annoying suggestions to buy music from the store
sudo apt-get remove unity-scope-musicstores

# Ignore HIG, we want a classic black terminal
gconftool-2 --set --type bool /apps/gnome-terminal/profiles/Default/use_theme_colors false
gconftool-2 --set --type string /apps/gnome-terminal/profiles/Default/background_color '#000000000000'
gconftool-2 --set --type string /apps/gnome-terminal/profiles/Default/foreground_color '#FFFFFFFFFFFF'

# Save space by hiding my name from the me-menu, I already know my name, tyvm
gsettings set com.canonical.indicator.session show-real-name-on-panel false
gsettings set org.gnome.desktop.interface show-input-method-menu false
gsettings set org.gnome.desktop.interface show-unicode-menu false

# I need alt+click for apps and games, so lets use WinKey instead
gconftool-2 --set --type string /apps/metacity/general/mouse_button_modifier '<Super>'

# Use WinKey instead of Alt for the window management hotkeys (Metacity)
gconftool-2 --set --type string /apps/metacity/window_keybindings/begin_move '<Super>F7'
gconftool-2 --set --type string /apps/metacity/window_keybindings/begin_resize '<Super>F8'
gconftool-2 --set --type string /apps/metacity/window_keybindings/maximize '<Super>F10'
gconftool-2 --set --type string /apps/metacity/window_keybindings/minimize '<Super>F9'
gconftool-2 --set --type string /apps/metacity/window_keybindings/unmaximize '<Super>F5'

# Use WinKey instead of Alt for the window management hotkeys (Compiz)
gconftool-2 --set --type string /apps/compiz-1/plugins/core/screen0/options/maximize_window_key '<Super>F10'
gconftool-2 --set --type string /apps/compiz-1/plugins/core/screen0/options/minimize_window_key '<Super>F9'
gconftool-2 --set --type string /apps/compiz-1/plugins/core/screen0/options/unmaximize_window_key '<Super>F5'
gconftool-2 --set --type string /apps/compiz-1/plugins/move/screen0/options/initiate_key '<Super>F7'
gconftool-2 --set --type string /apps/compiz-1/plugins/resize/screen0/options/initiate_key '<Super>F8'

# Settings for the civilized world
gconftool-2 --set --type string /apps/panel3-applets/clock/format '24-hour'
gconftool-2 --set --type string /apps/panel3-applets/clock/speed_unit 'm/s'
gconftool-2 --set --type string /apps/panel3-applets/clock/temperature_unit 'C'

Cosas para Firefox en about:config

privacy.donottrackheader.enabled;true
browser.tabs.closeButtons;3

Respuesta2

Interesante pregunta. De hecho, pasé varios minutos pensando en esto y me di cuenta de que casi había dejado de hacerlo.retocandoper se. Una cosa que realmente me encanta de Unity es que las adiciones noenchufarcomo en versiones anteriores. Simplemente se comunican con Unity, que a su vez lo integra. He añadido un indicador meteorológico, por ejemplo, lo cual es realmente bueno porque significa que no tengo que mirar por las ventanas para ver si está lloviendo o no. :)

Sin embargo, agregué algunas listas rápidas estáticas a algunas de mis aplicaciones. Tengo accesos directos para mi terminal para poder conectarme a una pantalla remota muy fácilmente. Agregué uno para abrir Gedit con archivos relevantes para un proyecto, pero eso no es realmente útil y debería integrarse en GEdit como listas rápidas dinámicas.

Pero, mientras pensaba en estas cosas,unoLo que podrías considerar un ajuste sin el cual no puedo vivir, se volvió obvio. bzr. He puesto mis directorios de configuración bajo control de versiones. Esto significa que siempre puedo vercuandouna configuración ha cambiado,exactamentelo que ha cambiado y siempre puedo volver fácilmente a una versión anterior. Es bastante bueno y se lo recomendaría a cualquiera.

información relacionada