minimal_arch.sh 964 B

1234567891011121314151617
  1. #!/bin/bash
  2. echo Hello $USER
  3. echo
  4. echo Package installer for Arch.
  5. echo Feel free to adapt it to your needs.
  6. echo
  7. echo Proceed? y/n
  8. read Proceed
  9. if [ $Proceed == 'y' ]
  10. then
  11. echo Starting in 3sec...
  12. sleep 3
  13. sudo pacman -Sy abiword acpi alsa-tools alsa-utils arc-gtk-theme bash-completion bc btop cmus curl dunst dvtm ethtool feh firefox flashrom github-cli gnumeric gufw htop inxi jgmenu lxappearance lxappearance-obconf menumaker mpv ncspot neofetch network-manager-applet nextcloud-client obconf openbox papirus-icon-theme pcmanfm picom pulseaudio pulseaudio-alsa python-pip ranger redshift rofi rust scribus scrot slim slim-themes smartmontools sxhkd thunderbird tint2 tlp tlp-rdw ttf-nerd-fonts-symbols ttf-jetbrains-mono ueberzug ufw unzip usbutils util-linux vifm vim volumeicon wget xautolock xdg-user-dirs xdg-user-dirs-gtk xdg-utils xf86-input-synaptics xorg xorg-xinit xorg-xcalc xterm yubioath-desktop zathura-pdf-poppler zsh
  14. else
  15. echo ===Good Bye===
  16. fi