-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.run
41 lines (32 loc) · 1.49 KB
/
3.run
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/bash
alias pacman="pacman --noconfirm --noprogressbar --needed --color=always"
git clone https://github.com/Akhetopnu/ArchLinux.git
# ---------------------------------
# CREATE SOME DIRECTORIES IN $HOME
# ---------------------------------
echo 'Creating .config folder and moving config files...'
mkdir -vp {Desktop,Documents,Downloads,Music,Pictures,Programs,Screenshots,Videos}
# ----------------------------
# INSTALL *** PACKER *** + SOME REQUIRED UTILS
# ----------------------------
sudo pacman -S fakeroot
git clone https://aur.archlinux.org/packer.git ~/Programs/packer/
cd ~/Programs/packer/
makepkg -si --noconfirm --noprogressbar
# ----------------
# INTEL MICROCODE
# ----------------
if [[ -n $(cat /proc/cpuinfo | grep -m 1 'vendor_id.*Intel') ]]
then
sudo pacman -S intel-ucode
fi
# ------
# FONTS
# ------
packer -S --noconfirm --noedit ttf-ubuntu-font-family gohufont-powerline
# ----------------
# PROGRAMS / APPS
# ----------------
# packer -S brightness-controller-git
# packer -S --noconfirm --noedit chromium cmst compton connman dialog deluge docker docker-compose ffmpeg git gnupg gedit htop i3-gaps-next-git libreoffice-fresh lxappearance neofetch nvidia nvidia-settings nitrogen mpd ncmpcpp nodejs npm pavucontrol pulseaudio-equalizer postgresql pgadmin4 redis redis-desktop-manager rofi rsync system-config-printer print-manager maim tomboy ufw wpa_supplicant wireless_tools wget xorg xorg-xinit x11-ssh-askpass xclip xfce4-notifyd xfce4-power-manager vlc zsh
exit