Created
January 21, 2019 07:31
-
-
Save apampolino/8650c61cfaa7b9fcdfb49074d99afecb to your computer and use it in GitHub Desktop.
ArchLinux after installation
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
| ARCHLINUX | |
| # start dhcpd service | |
| systemctl enable dhcpcd | |
| # update mirrors | |
| pacman-mirrors -g | |
| # base base-devel | |
| pacman -S --needed base-devel | |
| # XServer | |
| xorg-server xorg-xrandr | |
| # desktop manager | |
| lightdm | |
| # desktop environment | |
| xfce4 xfce4-goodies mate-desktop | |
| # glxinfo | |
| mesa-demos | |
| # themes | |
| arc-gtk-theme adapta-gtk-theme | |
| # icon packs | |
| arc-icon-theme papirus-icon-theme numix-icon-theme faenza-icon-theme | |
| # fonts | |
| ttf-droid ttf-dejavu | |
| # browsers | |
| firefox chromium | |
| # office | |
| libreoffice | |
| # development | |
| sublime-text filezilla | |
| # others | |
| screen screenfetch htop unzip git wget yajl lsb-rlease | |
| # firewall | |
| ufw gufw | |
| # conky | |
| conky conky-manager | |
| # yaourt | |
| git clone https://aur.archlinux.org/package-query.git | |
| cd package-query | |
| makepkg -si | |
| git clone https://aur.archlinux.org/yaourt.git | |
| cd yaourt | |
| makepkg -si | |
| rm -dR package-query/ yaourt/ | |
| # pamac | |
| yaourt pamac-aur | |
| # nvidia | |
| nvidia-dkms | |
| nvidia-lts | |
| nvidia-settings | |
| nvidia-utils |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment