Last active
January 22, 2021 14:41
-
-
Save willsantos/d52a05ab3131045b40a5c6604917dcf0 to your computer and use it in GitHub Desktop.
Pós instalação base Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Pacotes Snap | |
sudo snap install telegram-desktop spotify handbrake-jz audacity insomnia colorpicker-app freac discord | |
sudo snap install sublime-text --classic | |
sudo snap install code --classic | |
#pacotes Flatpak | |
flatpak install flathub org.gnome.gitlab.YaLTeR.Identity | |
#Pacotes do Repositorio | |
sudo apt install git zsh curl tilix winff libnuma-dev neofetch gnome-tweaks filezilla fonts-firacode | |
#Ajusta o horario no dual boot | |
timedatectl set-local-rtc 1 --adjust-system-clock | |
#Torna o ZSH padrão do sistema | |
chsh -s $(which zsh) | |
#instalar o OH MY ZSH | |
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
#baixar e colocar o ASDF na pasta e no ZSH | |
git clone https://github.com/asdf-vm/asdf.git ~/.asdf | |
echo -e "\n. $HOME/.asdf/asdf.sh" >> ~/.zshrc | |
#Instalar Tema Dracula no Tilix | |
git clone https://github.com/dracula/tilix.git ~/Downloads/dracula_tilix | |
mkdir -p ~/.config/tilix/schemes | |
mv ~/Downloads/dracula_tilix/Dracula.json ~/.config/tilix/schemes | |
#configuração basica do Node | |
asdf plugin-add nodejs | |
bash ~/.asdf/plugins/nodejs/bin/import-release-team-keyring | |
asdf install nodejs latest:12 | |
## Pegar versão do node instalada e passar via variavel para o proximo comando | |
asdf global nodejs <version> | |
#Instalar o Docker | |
sudo apt install docker.io | |
sudo systemctl enable --now docker | |
sudo usermod -aG docker wilson | |
#Install o Nativefier | |
mkdir ~/webapps | |
sudo npm install nativefier -g | |
#Instalar o imagemagick para conversao dos icones | |
sudo apt install imagemagick | |
#instalar webApps | |
#Cheat Sheets | |
nativefier --name “Tmux-Cheat-Sheet” https://tmuxcheatsheet.com/ | |
## Preciso copiar o backup da chave SSH | |
chown user:user ~/.ssh/id_rsa* | |
chmod 600 ~/.ssh/id_rsa | |
chmod 644 ~/.ssh/id_rsa.pub | |
ssh-add ~/.ssh/id_rsa |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment