minimal_void.sh 1007 B

123456789101112131415161718
  1. #!/bin/bash
  2. echo Hello $USER
  3. echo
  4. echo Package installer for Void.
  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 xbps-install abiword abook acpi apulse alsa-plugins-pulseaudio alsa-tools alsa-utils arc-theme bash-completion bc btop ca-certificates calcurse cargo cmus curl dunst dvtm ethtool feh firefox flashrom font-hack-ttf gettext github-cli gnumeric gufw htop inxi isync jgmenu lxappearance lxappearance-obconf menumaker mpv msmtp neomutt nerd-fonts-symbols-ttf neofetch nextcloud-client nyxt obconf octoxbps fluxbox papirus-icon-theme pass pcmanfm picom polkit python3-pip ranger redshift redshift-gtk rofi rust scribus scrot slim smartmontools sxhkd thunderbird tint2 tint2conf tlp tlp-rdw transset ueberzug ufw unzip usbutils util-linux vifm vim volumeicon wget xdg-user-dirs xdg-user-dirs-gtk xdg-utils xf86-input-synaptics xcalc xinit xorg xterm zathura-pdf-poppler zsh
  14. else
  15. echo ===Good Bye===
  16. fi