Created
August 19, 2018 05:39
-
-
Save neves/aa5314a06498fdb62d5fa1fa919b0196 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# softwares basicos | |
sudo apt install curl synapse | |
# instalar vscode | |
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg | |
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' | |
sudo apt-get install apt-transport-https | |
sudo apt-get update | |
sudo apt-get install code | |
# analisar boot | |
systemd-analyze critical-chain | |
# configurar visual | |
lxappearance | |
obconf | |
# xrandr --output DP-1 --mode 1600x900 --pos 4480x180 --rotate normal --output HDMI-2 --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-1 --primary --mode 2560x1080 --pos 1920x0 --rotate normal | |
xrandr --output HDMI-2 --left-of HDMI-1 \ | |
--output HDMI-1 --primary \ | |
--output DP-1 --right-of HDMI-1% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment