Skip to content

Instantly share code, notes, and snippets.

@pedrobritto
Last active March 10, 2018 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pedrobritto/4b5a2c0931fc3463a60a88856522c9f6 to your computer and use it in GitHub Desktop.
Save pedrobritto/4b5a2c0931fc3463a60a88856522c9f6 to your computer and use it in GitHub Desktop.

Novas instalações Ubuntu

Versões 16.04+ com Desktop Gnome.

Antes de tudo

# Atualização geral do sistema
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade

# Permite adição de PPAs
sudo apt-get install software-properties-common
sudo apt-get install curl

Programas

sudo apt-get install gnome-shell-pomodoro
  • VLC
sudo apt-get install vlc

Desenvolvimento

Ferramentas

sudo apt-get install git
  • NVM
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash

# Instalar Node pelo NVM
nvm install node
nvm use node
  • VirtualBox
  • Vagrant
  • Scotch Box

Terminal

  • Zsh
sudo apt-get install zsh
sudo chsh -s /bin/zsh
  • Oh My Zsh
# Usando cURL
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# Usando wget
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
  • Antigen
curl -L git.io/antigen > $HOME/.antigen.zsh
  • Configuração básica Antigen (De preferência em um antigenrc.zsh importado no .zshrc)
source /path-to-antigen/antigen.zsh

# Load the oh-my-zsh's library.
antigen use oh-my-zsh

# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git

# External bundles (github)
antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-syntax-highlighting

# Load the theme.
antigen theme robbyrussell

# Tell Antigen that you're done.
antigen apply

Aparência e Interface

Fontes

  • Fira Code (VS Code)
  • Fira Mono (Terminal)

Temas

sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/Horst3180/xUbuntu_16.04/ /' > /etc/apt/sources.list.d/home:Horst3180.list"

# Key
wget -nv https://download.opensuse.org/repositories/home:Horst3180/xUbuntu_16.04/Release.key -O Release.key
sudo apt-key add - < Release.key


sudo apt-get update
sudo apt-get install arc-theme

Termas de terminal

  • Material
  • ???

Icones

PPA:

sudo add-apt-repository ppa:snwh/pulp
sudo apt-get update
sudo apt-get install paper-icon-theme
sudo apt-get install paper-cursor-theme

Papeis de parede

Extensões Gnome

Outros

Remover aceleração do mouse

  • Crie o arquivo:
sudo nano /usr/share/X11/xorg.conf.d/50-mouse-acceleration.conf
  • Coloque o seguinte dentro do arquivo:
Section "InputClass"
  Identifier "My Mouse"
  MatchIsPointer "yes"
  Option "AccelerationProfile" "-1"
  Option "AccelerationScheme" "none"
  Option "AccelSpeed" "-1"
EndSection
  • Reinicie a sessão.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment