Preparación entorno de trabajo en Ubuntu

De WikiEducator
Saltar a: navegación, buscar

Entorno de trabajo: Ubuntu 12.04 Gnome 3

Configuración Gnome3: Extensiones Gnome
Instalamos el paquete gnome-tweak-tool:
sudo apt-get install gnome-tweak-tool

==Terminal Instalamos tilda y tmux

Configuramos tmux para que arranque por defecto al abrir un terminal, añadiendo las siguientes líneas en el .bashrc:

if [ $TERM != "screen-256color" ] && [  $TERM != "screen" ]; then
    tmux attach || tmux new; exit
fi