bzamith / my-ubuntu

My Ubuntu Configs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My Ubuntu Configs

1. Move Home Folder to HD

2. Change Login Background

sudo gedit /usr/share/gnome-shell/theme/gnome-shell.css
  • Change the following lines:
#lockDialogGroup {
  background: #41494c url(resource:///org/gnome/shell/theme/noise-texture.png);
  background-repeat: repeat; }
  • To:
#lockDialogGroup {
  background: #000000 url(file:///PATH_TO_BACKGROUND/BACKGROUND.PNG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

3. Change Ubuntu Colors

sudo gedit /usr/share/gnome-shell/theme/gdm3.css
  • Change colors:
#e95420 > #501b4d
  • Change to the color that fits the most with the wallpaper. (Light > #63cde0 > #2a9eb3 > #1c7f91 > Dark)

  • Ubuntu color palette here.

  • RGB finder here.

4. Change dock

Install Planck Dock

sudo apt-get install plank

Remove Ubuntu Dock

5. Change Terminal Appearance

6. Install Main Programs

  • Calibre
sudo -v && wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sudo sh /dev/stdin
sudo apt-get install gimp
  • Git
sudo apt-get install git
git config --global user.name "nome aqui"
git config --global user.email "email aqui"
  • Java JDK
sudo apt-get install default-jdk
wget https://go.skype.com/skypeforlinux-64.deb
sudo apt install ./skypeforlinux-64.deb
  • Spotify
sudo snap install spotify
  • Sublime
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
sudo apt-add-repository "deb https://download.sublimetext.com/ apt/stable/"
sudo apt install sublime-text
  • TLP
sudo add-apt-repository ppa:linrunner/tlp
sudo apt-get update
sudo apt-get install tlp tlp-rdw
sudo tlp start
  • Virtualbox (Windows with Photoshop)
yum install VirtualBox-5.2
  • Visual Code
sudo snap install code --classic
  • Whatsdesk
sudo snap install whatsdesk

7. Update drivers

sudo add-apt-repository ppa:graphics-drivers
sudo apt-get update
sudo apt install nvidia-driver-440
sudo apt autoremove
sudo apt-get upgrade

In case of erros regarding public keys, follow this link's instructions

8. Configurate the Keyboard

  • Set "English (US,intl.,with dead keys)
  • Edit /etc/environment
sudo nano /etc/environment
  • Include:
GTK_IM_MODULE=cedilla

About

My Ubuntu Configs