Archlinux basic installation configuration scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
2.2 KiB

  1. #!/bin/bash
  2. sudo timedatectl set-ntp true
  3. sudo hwclock --systohc
  4. sudo reflector -c Switzerland -a 12 --sort rate --save /etc/pacman.d/mirrorlist
  5. sudo pacman -Syy
  6. sudo firewall-cmd --add-port=1025-65535/tcp --permanent
  7. sudo firewall-cmd --add-port=1025-65535/udp --permanent
  8. sudo firewall-cmd --reload
  9. # sudo virsh net-autostart default
  10. git clone https://aur.archlinux.org/pikaur.git
  11. cd pikaur/
  12. makepkg -si --noconfirm
  13. #pikaur -S --noconfirm lightdm-slick-greeter
  14. #pikaur -S --noconfirm lightdm-settings
  15. #pikaur -S --noconfirm polybar
  16. #pikaur -S --noconfirm nerd-fonts-iosevka
  17. #pikaur -S --noconfirm ttf-icomoon-feather
  18. #pikaur -S --noconfirm system76-power
  19. #sudo systemctl enable --now system76-power
  20. #sudo system76-power graphics integrated
  21. #pikaur -S --noconfirm gnome-shell-extension-system76-power-git
  22. #pikaur -S --noconfirm auto-cpufreq
  23. #sudo systemctl enable --now auto-cpufreq
  24. echo "MAIN PACKAGES"
  25. sleep 5
  26. sudo pacman -S --noconfirm xorg light-locker lightdm bspwm sxhkd firefox rxvt-unicode picom nitrogen lxappearance dmenu nautilus arandr simplescreenrecorder alsa-utils pulseaudio alsa-utils pulseaudio-alsa pavucontrol arc-gtk-theme arc-icon-theme obs-studio vlc dina-font tamsyn-font bdf-unifont ttf-bitstream-vera ttf-croscore ttf-dejavu ttf-droid gnu-free-fonts ttf-ibm-plex ttf-liberation ttf-linux-libertine noto-fonts font-bh-ttf ttf-roboto tex-gyre-fonts ttf-ubuntu-font-family ttf-anonymous-pro ttf-cascadia-code ttf-fantasque-sans-mono ttf-fira-mono ttf-hack ttf-fira-code ttf-inconsolata ttf-jetbrains-mono ttf-monofur adobe-source-code-pro-fonts cantarell-fonts inter-font ttf-opensans gentium-plus-font ttf-junicode adobe-source-han-sans-otc-fonts adobe-source-han-serif-otc-fonts noto-fonts-cjk noto-fonts-emoji ttf-font-awesome awesome-terminal-fonts archlinux-wallpaper rofi playerctl scrot obs-studio dunst pacman-contrib
  27. #sudo flatpak install -y spotify
  28. #sudo flatpak install -y kdenlive
  29. sudo systemctl enable lightdm
  30. mkdir -p .config/{bspwm,sxhkd,dunst}
  31. install -Dm755 /usr/share/doc/bspwm/examples/bspwmrc ~/.config/bspwm/bspwmrc
  32. install -Dm644 /usr/share/doc/bspwm/examples/sxhkdrc ~/.config/sxhkd/sxhkdrc
  33. printf "\e[1;32mCHANGE NECESSARY FILES BEFORE REBOOT\e[0m"