Last active
March 23, 2020 17:53
-
-
Save ambiflextrous/fa7a0b6295123b0688cbb433f8e00582 to your computer and use it in GitHub Desktop.
LINUX INSTALLATION GUIDE UBUNTU 18.04 LTS
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
x - Disable Automatic Updates from Command Line: | |
sudo nano /etc/apt/apt.conf.d/20auto-upgrades | |
APT::Periodic::Update-Package-Lists "0"; | |
APT::Periodic::Unattended-Upgrade "1"; | |
x- Disable Auto Rotation | |
https://askubuntu.com/questions/1035209/how-to-turn-off-screen-rotation-in-ubuntu-18-04-lts | |
x- Install Git | |
sudo apt update | |
sudo apt install git | |
x- Install Vim 8.1 | |
https://gist.github.com/weslienlive/1a7bcd81fbdbf58313ea3416020a4c71 | |
x- Install Ranger | |
sudo apt-get update | |
sudo apt-get install ranger caca-utils highlight atool w3m poppler-utils mediainfo | |
x- Install i3wm | |
sudo apt-get install i3 | |
x- install i3-gaps | |
sudo apt-get install libxcb-shape0-dev | |
https://gist.github.com/boreycutts/6417980039760d9d9dac0dd2148d4783 | |
x- Install mpd, ncmpcpp, mpv, | |
sudo apt-get install mpd sonata | |
sudo apt-get install ncmpcpp | |
sudo add-apt-repository ppa:mc3man/mpv-tests | |
sudo apt-get install mpv | |
x - Download dotfiles | |
git clone https://github.com/weslienlive/dotfiles | |
x- Install youtube-dl | |
sudo apt-get install youtube-dl | |
x- rofi | |
apt install rofi | |
x- installing feh and compton | |
sudo apt install feh compton -y | |
x - Installing pip3 | |
sudo apt-get -y install python3-pip | |
x- installing pywal | |
pip3 install pywal | |
x- installing flux | |
sudo add-apt-repository ppa:nathan-renniewaldock/flux | |
sudo apt-get update | |
sudo apt-get install fluxgui | |
use o comando para nighttime: | |
xflux -l 51 -g 34 -k 3000 | |
se o ecra piscar use o script: | |
bash killxfluxsessions.sh | |
source:https://forum.justgetflux.com/topic/7203/constant-flickering-from-yellow-to-white-on-ubuntu/2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment