2020-02-21 14:58:26 +01:00
|
|
|
#!/bin/bash
|
2020-02-28 22:33:35 +01:00
|
|
|
|
2020-10-26 19:50:44 +01:00
|
|
|
# TODO make this work
|
2020-11-05 20:27:04 +01:00
|
|
|
# NOTE ignore errors from missing "||". Try getting the line below to work
|
2020-10-26 19:50:44 +01:00
|
|
|
#set -euo pipefail
|
2020-10-12 07:16:00 +02:00
|
|
|
|
2020-02-28 22:39:50 +01:00
|
|
|
#change to home (does not show in terminal)
|
2020-10-12 07:16:37 +02:00
|
|
|
cd "$HOME"
|
2020-02-28 22:33:35 +01:00
|
|
|
|
2020-08-28 21:46:34 +02:00
|
|
|
in_xfce=0
|
2020-09-18 16:47:29 +02:00
|
|
|
in_i3gaps=0
|
2020-03-02 13:31:03 +01:00
|
|
|
|
2020-06-12 16:23:06 +02:00
|
|
|
cmd=(dialog --separate-output --checklist "Select Desktop environment/Window manager:" 22 76 16)
|
|
|
|
options=(1 "[DE] xfce4" off # any option can be set to default to "on"
|
2020-11-05 20:08:50 +01:00
|
|
|
2 "[WM] i3-gaps" off)
|
2020-06-12 16:23:06 +02:00
|
|
|
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
2020-08-28 21:46:34 +02:00
|
|
|
clear
|
2020-06-12 16:23:06 +02:00
|
|
|
for choice in $choices
|
|
|
|
do
|
|
|
|
case $choice in
|
|
|
|
1)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_xfce=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
2)
|
2020-09-18 16:47:29 +02:00
|
|
|
in_i3gaps=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2020-05-07 08:43:48 +02:00
|
|
|
|
2020-08-28 21:46:34 +02:00
|
|
|
in_firefox=0
|
2020-11-10 22:02:33 +01:00
|
|
|
in_chromium=0
|
2020-08-28 21:46:34 +02:00
|
|
|
in_netsurf=0
|
|
|
|
in_icecat=0
|
|
|
|
in_tor=0
|
|
|
|
|
2020-06-14 18:00:55 +02:00
|
|
|
cmd=(dialog --separate-output --checklist "Select browsers:" 22 76 16)
|
|
|
|
options=(1 "Firefox" on # any option can be set to default to "on"
|
2020-11-10 22:02:33 +01:00
|
|
|
2 "Chromium" off
|
|
|
|
3 "Netsurf" off
|
|
|
|
4 "Icecat" off
|
|
|
|
5 "Torbrowser" on)
|
2020-06-14 18:00:55 +02:00
|
|
|
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
2020-08-28 21:46:34 +02:00
|
|
|
clear
|
2020-06-14 18:00:55 +02:00
|
|
|
for choice in $choices
|
|
|
|
do
|
|
|
|
case $choice in
|
|
|
|
1)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_firefox=1
|
2020-06-14 18:00:55 +02:00
|
|
|
;;
|
|
|
|
2)
|
2020-11-10 22:02:33 +01:00
|
|
|
in_chromium=1
|
2020-06-14 18:00:55 +02:00
|
|
|
;;
|
|
|
|
3)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_netsurf=1
|
2020-06-14 18:00:55 +02:00
|
|
|
;;
|
2020-11-10 22:02:33 +01:00
|
|
|
4)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_icecat=1
|
2020-06-20 08:32:35 +02:00
|
|
|
;;
|
2020-11-10 22:02:33 +01:00
|
|
|
5)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_tor=1
|
2020-06-21 22:16:27 +02:00
|
|
|
;;
|
2020-06-14 18:00:55 +02:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-08-28 21:46:34 +02:00
|
|
|
in_virtmanager=0
|
|
|
|
in_steam=0
|
|
|
|
in_lutris=0
|
|
|
|
in_blender=0
|
|
|
|
in_krita=0
|
2020-09-18 16:47:29 +02:00
|
|
|
in_youtubedl=0
|
2020-08-28 21:46:34 +02:00
|
|
|
in_discord=0
|
|
|
|
in_handbrake=0
|
|
|
|
in_gimp=0
|
|
|
|
in_audacity=0
|
|
|
|
in_mangohud=0
|
|
|
|
in_easystrokes=0
|
|
|
|
in_liferea=0
|
2020-11-15 10:56:25 +01:00
|
|
|
in_fractal=0
|
2020-08-28 21:46:34 +02:00
|
|
|
in_bettergram=0
|
2020-11-05 20:27:04 +01:00
|
|
|
in_waifu2x=0
|
2020-08-28 21:46:34 +02:00
|
|
|
|
2020-06-14 18:00:55 +02:00
|
|
|
cmd=(dialog --separate-output --checklist "Select other programs:" 22 76 16)
|
2020-06-12 16:23:06 +02:00
|
|
|
options=(1 "VirtManager" off # any option can be set to default to "on"
|
|
|
|
2 "Steam" off
|
|
|
|
3 "Lutris" off
|
|
|
|
4 "Blender" off
|
|
|
|
5 "Krita" off
|
|
|
|
6 "Youtube-dl" off
|
2020-06-14 18:00:55 +02:00
|
|
|
7 "Discord" on
|
2020-06-12 16:23:06 +02:00
|
|
|
8 "Handbrake" off
|
2020-08-23 20:41:31 +02:00
|
|
|
9 "Gimp" off
|
|
|
|
10 "Audacity" off
|
|
|
|
11 "MangoHud" off
|
|
|
|
12 "Easystroke" on
|
|
|
|
13 "Liferea" off
|
2020-11-15 10:56:25 +01:00
|
|
|
14 "Fractal" on
|
2020-11-05 20:27:04 +01:00
|
|
|
15 "Bettergram" on
|
|
|
|
16 "Waifu2x" off)
|
2020-06-12 16:23:06 +02:00
|
|
|
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
2020-08-28 21:46:34 +02:00
|
|
|
clear
|
2020-06-12 16:23:06 +02:00
|
|
|
for choice in $choices
|
|
|
|
do
|
|
|
|
case $choice in
|
|
|
|
1)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_virtmanager=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
2)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_steam=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
3)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_lutris=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
4)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_blender=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
5)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_krita=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
6)
|
2020-09-18 16:47:29 +02:00
|
|
|
in_youtubedl=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
7)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_discord=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
8)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_handbrake=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
|
|
|
9)
|
2020-11-05 20:27:04 +01:00
|
|
|
in_gimp=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
2020-08-23 20:41:31 +02:00
|
|
|
10)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_audacity=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
2020-08-23 20:41:31 +02:00
|
|
|
11)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_mangohud=1
|
2020-06-12 16:23:06 +02:00
|
|
|
;;
|
2020-08-23 20:41:31 +02:00
|
|
|
12)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_easystrokes=1
|
2020-06-17 10:04:27 +02:00
|
|
|
;;
|
2020-08-23 20:41:31 +02:00
|
|
|
13)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_liferea=1
|
2020-06-21 19:17:40 +02:00
|
|
|
;;
|
2020-08-23 20:41:31 +02:00
|
|
|
14)
|
2020-11-15 10:56:25 +01:00
|
|
|
in_fractal=1
|
2020-07-17 11:30:11 +02:00
|
|
|
;;
|
2020-08-23 20:41:31 +02:00
|
|
|
15)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_bettergram=1
|
2020-11-05 20:27:04 +01:00
|
|
|
;;
|
|
|
|
16)
|
|
|
|
in_waifu2x=1
|
2020-07-30 17:01:12 +02:00
|
|
|
;;
|
2020-06-12 16:23:06 +02:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-08-29 13:52:27 +02:00
|
|
|
in_acpufreq=0
|
|
|
|
|
|
|
|
cmd=(dialog --separate-output --checklist "Performance and Battery life" 22 76 16)
|
|
|
|
options=(1 "auto-cpufreq" off)
|
|
|
|
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
|
|
|
clear
|
|
|
|
for choice in $choices
|
|
|
|
do
|
|
|
|
case $choice in
|
|
|
|
1)
|
|
|
|
in_acpufreq=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-09-18 19:28:12 +02:00
|
|
|
in_doomemacs=0
|
2020-09-09 21:01:58 +02:00
|
|
|
in_vscodium=0
|
2020-09-07 19:50:09 +02:00
|
|
|
|
|
|
|
cmd=(dialog --separate-output --checklist "Code editors" 22 76 16)
|
2020-09-09 21:01:58 +02:00
|
|
|
options=(1 "doom-emacs" off
|
|
|
|
2 "vscodium" off)
|
2020-09-07 19:50:09 +02:00
|
|
|
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
|
|
|
clear
|
|
|
|
for choice in $choices
|
|
|
|
do
|
|
|
|
case $choice in
|
|
|
|
1)
|
2020-09-18 19:28:12 +02:00
|
|
|
in_doomemacs=1
|
2020-09-07 19:50:09 +02:00
|
|
|
;;
|
2020-09-09 21:01:58 +02:00
|
|
|
2)
|
|
|
|
in_vscodium=1
|
|
|
|
;;
|
2020-09-07 19:50:09 +02:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-11-13 07:58:44 +01:00
|
|
|
in_teams=0
|
|
|
|
in_slack=0
|
|
|
|
|
2020-11-13 08:02:58 +01:00
|
|
|
cmd=(dialog --separate-output --checklist "School and work communication" 22 76 16)
|
2020-11-13 07:58:44 +01:00
|
|
|
options=(1 "teams" off
|
|
|
|
2 "slack" off)
|
|
|
|
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
|
|
|
clear
|
|
|
|
for choice in $choices
|
|
|
|
do
|
|
|
|
case $choice in
|
|
|
|
1)
|
|
|
|
in_teams=1
|
|
|
|
;;
|
|
|
|
2)
|
|
|
|
in_slack=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-08-28 21:46:34 +02:00
|
|
|
in_pkgstats=0
|
|
|
|
|
2020-07-17 21:14:06 +02:00
|
|
|
cmd=(dialog --separate-output --checklist "Report installed packages?" 22 76 16)
|
|
|
|
options=(1 "pkgstats" off)
|
|
|
|
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
2020-08-28 21:46:34 +02:00
|
|
|
clear
|
2020-07-17 21:14:06 +02:00
|
|
|
for choice in $choices
|
|
|
|
do
|
|
|
|
case $choice in
|
|
|
|
1)
|
2020-08-28 21:46:34 +02:00
|
|
|
in_pkgstats=1
|
2020-07-17 21:14:06 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-11-07 10:39:59 +01:00
|
|
|
# Additional, only once installed, packages
|
|
|
|
in_optpkg=0
|
|
|
|
|
|
|
|
cmd=(dialog --separate-output --checklist "Report installed packages?" 22 76 16)
|
|
|
|
options=(1 "Additional packages" off)
|
|
|
|
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
|
|
|
clear
|
|
|
|
for choice in $choices
|
|
|
|
do
|
|
|
|
case $choice in
|
|
|
|
1)
|
|
|
|
in_optpkg=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-08-28 21:46:34 +02:00
|
|
|
#uninstalling unused packages
|
|
|
|
echo Uninstalling unused packages
|
2020-11-15 10:56:25 +01:00
|
|
|
sudo pacman -Rns evolution catfish geany vim keepass gnome-boxes sublime-text-dev atom adwaita-icon-theme arcolinux-i3wm-git arcolinux-tweak-tool-git arcolinux-welcome-app-git clonezilla evolution-data-server numix-circle-arc-icons-git numix-circle-icon-theme-git numix-gtk-theme-git numix-icon-theme-git oh-my-zsh-git pamac-aur qbittorrent vivaldi vlc code baka-mplayer tmux guvcview kdenlive xfce4-notifyd chromium psensor transmission-qt pcloud-drive matrix-mirage element-desktop
|
2020-08-28 21:46:34 +02:00
|
|
|
echo Uninstalled unused packages
|
|
|
|
|
|
|
|
#update stuff
|
|
|
|
echo Updating packages
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -Syyu
|
2020-08-28 21:46:34 +02:00
|
|
|
echo Updated packages
|
|
|
|
|
|
|
|
#pacman programs
|
2020-06-12 16:23:06 +02:00
|
|
|
echo Installing default pacman programs
|
2020-11-14 15:34:26 +01:00
|
|
|
sudo pacman -S --needed arandr libreoffice-fresh-de termite wget picom stress obs-studio python-pip hunspell hunspell-de hunspell-en_GB hyphen hyphen-de hyphen-en fish smartmontools thunderbird ffmpeg jre-openjdk thunar gtk-engine-murrine celluloid languagetool rofi nextcloud-client vnstat wireguard-tools cronie libnotify notification-daemon dunst rsync restic piper lightdm-gtk-greeter unzip ranger bandwhich cmus xorg-xrdb variety nitrogen feh gnome-keyring xorg-xbacklight
|
|
|
|
#audio
|
|
|
|
sudo pacman -S --needed pavucontrol pulseaudio pulseaudio-alsa pulseaudio-bluetooth libpulse alsa-card-profiles libcanberra-pulse lib32-libpulse pulseaudio-equalizer-ladspa
|
2020-11-05 09:00:01 +01:00
|
|
|
# REVIEW replace transmission-qt with gtk version
|
|
|
|
sudo pacman -S --needed transmission-gtk
|
|
|
|
# REVIEW maybe find theme with less dependencies
|
|
|
|
sudo pacman -S --needed breeze
|
2020-11-05 20:08:50 +01:00
|
|
|
|
|
|
|
# NOTE Distro specific stuff
|
|
|
|
distro=$(cat /etc/*-release | grep "^ID=")
|
|
|
|
if [ "$distro" == "ID=arcolinux" ]; then
|
2020-11-14 13:49:32 +01:00
|
|
|
sudo pacman -S --needed arcolinux-slim arcolinux-slimlock-themes-git
|
2020-11-05 20:08:50 +01:00
|
|
|
fi
|
|
|
|
if [ "$distro" == "ID=arch" ]; then
|
2020-11-14 13:49:32 +01:00
|
|
|
sudo pacman -S --needed slim archlinux-themes-slim
|
2020-11-05 20:08:50 +01:00
|
|
|
fi
|
2020-06-12 16:23:06 +02:00
|
|
|
echo Installed official programs
|
2020-05-07 08:43:48 +02:00
|
|
|
|
2020-11-05 09:00:01 +01:00
|
|
|
# REVIEW Determine usefulness
|
|
|
|
# iperf3
|
|
|
|
# nload
|
|
|
|
# dmenu
|
|
|
|
# devtools
|
|
|
|
|
2020-10-31 10:30:26 +01:00
|
|
|
# REVIEW Patched neofetch version to remove Color codes
|
|
|
|
git clone https://github.com/RealStickman/neofetch
|
2020-11-05 20:08:50 +01:00
|
|
|
cd neofetch
|
2020-10-31 10:30:26 +01:00
|
|
|
sudo make install
|
2020-11-05 20:08:50 +01:00
|
|
|
cd ..
|
2020-11-04 21:53:55 +01:00
|
|
|
rm -rf neofetch
|
2020-10-31 10:30:26 +01:00
|
|
|
|
2020-05-07 08:43:48 +02:00
|
|
|
#AUR
|
2020-06-12 16:23:06 +02:00
|
|
|
echo Installing default AUR programs
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed ttf-ms-fonts ttf-vista-fonts polybar nohang-git lightdm-webkit-theme-aether rig tmpmail-git lightdm-webkit2-theme-glorious sweet-theme-dark sweet-folders-icons-git wps-office protonmail-bridge
|
2020-11-14 14:25:37 +01:00
|
|
|
#paru -S --needed freetype2-cleartype
|
|
|
|
sudo pacman -S --needed freetype2
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed bitwarden
|
|
|
|
#paru -S --needed --noconfirm pcloud-drive
|
2020-11-17 15:34:39 +01:00
|
|
|
sudo pacman -S --needed ufw
|
2020-06-12 16:23:06 +02:00
|
|
|
echo Installed AUR programs
|
2020-03-01 10:38:40 +01:00
|
|
|
|
2020-11-05 09:00:01 +01:00
|
|
|
# REVIEW Determine usefulness
|
|
|
|
# ttf-tahoma
|
|
|
|
# cpu-x
|
|
|
|
# nutty
|
|
|
|
# woeusb
|
|
|
|
# debtap
|
|
|
|
# gimp-plugin-registry
|
2020-11-09 20:10:29 +01:00
|
|
|
# multimc5
|
2020-11-05 09:00:01 +01:00
|
|
|
|
2020-02-29 16:00:06 +01:00
|
|
|
#install wine
|
2020-06-12 16:23:06 +02:00
|
|
|
echo Installing wine
|
2020-11-14 13:49:32 +01:00
|
|
|
pacman -S --needed wine-staging giflib lib32-giflib libpng lib32-libpng libldap lib32-libldap gnutls lib32-gnutls mpg123 lib32-mpg123 openal lib32-openal v4l-utils lib32-v4l-utils libpulse lib32-libpulse libgpg-error lib32-libgpg-error alsa-plugins lib32-alsa-plugins alsa-lib lib32-alsa-lib libjpeg-turbo lib32-libjpeg-turbo sqlite lib32-sqlite libxcomposite lib32-libxcomposite libxinerama lib32-libgcrypt libgcrypt lib32-libxinerama ncurses lib32-ncurses opencl-icd-loader lib32-opencl-icd-loader libxslt lib32-libxslt libva lib32-libva gtk3 lib32-gtk3 gst-plugins-base-libs lib32-gst-plugins-base-libs vulkan-icd-loader lib32-vulkan-icd-loader os-prober
|
2020-06-12 16:23:06 +02:00
|
|
|
echo Installed wine
|
2020-02-29 13:18:14 +01:00
|
|
|
|
2020-08-28 21:46:34 +02:00
|
|
|
#python modules
|
2020-06-12 16:23:06 +02:00
|
|
|
echo Installing python modules
|
2020-07-30 18:32:45 +02:00
|
|
|
sudo pip3 install ffmpeg-normalize praw
|
2020-02-29 15:16:05 +01:00
|
|
|
echo Installed python modules
|
2020-02-25 11:48:39 +01:00
|
|
|
|
2020-08-28 21:46:34 +02:00
|
|
|
###################
|
|
|
|
#selected programs#
|
|
|
|
###################
|
|
|
|
echo Installing selected programs
|
|
|
|
|
|
|
|
#DEs & WMs
|
|
|
|
if [ $in_xfce -eq 1 ]; then
|
|
|
|
echo "Installing xfce"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm xfce4
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping xfce"
|
|
|
|
fi
|
|
|
|
|
2020-09-18 16:47:29 +02:00
|
|
|
if [ $in_i3gaps -eq 1 ]; then
|
2020-08-28 21:46:34 +02:00
|
|
|
echo "Installing i3-gaps"
|
2020-11-14 13:49:32 +01:00
|
|
|
sudo pacman -S --needed i3-gaps
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping i3-gaps"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#browsers
|
|
|
|
if [ $in_firefox -eq 1 ]; then
|
|
|
|
echo "Installing Firefox"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm qemu firefox
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Firefox"
|
|
|
|
fi
|
|
|
|
|
2020-11-10 22:02:33 +01:00
|
|
|
if [ $in_chromium -eq 1 ]; then
|
|
|
|
echo "Installing Chromium"
|
|
|
|
sudo pacman -S --needed --noconfirm chromium
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
2020-11-10 22:02:33 +01:00
|
|
|
echo "Skipping Chromium"
|
2020-08-28 21:46:34 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_netsurf -eq 1 ]; then
|
|
|
|
echo "Installing Netsurf"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm netsurf
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Netsurf"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_icecat -eq 1 ]; then
|
|
|
|
echo "Installing Icecat"
|
2020-11-14 14:04:06 +01:00
|
|
|
sudo paru -S --needed --noconfirm icecat-bin
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Icecat"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_tor -eq 1 ]; then
|
|
|
|
echo "Installing Tor"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm torbrowser-launcher
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Tor"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#other programs
|
|
|
|
if [ $in_virtmanager -eq 1 ]; then
|
|
|
|
echo "Installing VirtManager"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm qemu virt-manager
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping VirtManager"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_steam -eq 1 ]; then
|
|
|
|
echo "Installing Steam"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm steam steam-native-runtime
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Steam"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_lutris -eq 1 ]; then
|
|
|
|
echo "Installing Lutris"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm lutris
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Lutris"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_blender -eq 1 ]; then
|
|
|
|
echo "Installing Blender"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm blender
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Blender"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_krita -eq 1 ]; then
|
|
|
|
echo "Installing Krita"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm krita
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Krita"
|
|
|
|
fi
|
|
|
|
|
2020-09-18 16:47:29 +02:00
|
|
|
if [ $in_youtubedl -eq 1 ]; then
|
2020-08-28 21:46:34 +02:00
|
|
|
echo "Installing Youtube-dl"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm youtube-dl
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Youtube-dl"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_discord -eq 1 ]; then
|
|
|
|
echo "Installing Discord"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm discord
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Discord"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_handbrake -eq 1 ]; then
|
|
|
|
echo "Installing Handbrake"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm handbrake
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Handbrake"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_gimp -eq 1 ]; then
|
|
|
|
echo "Installing Gimp"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm gimp
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Gimp"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_audacity -eq 1 ]; then
|
|
|
|
echo "Installing Audacity"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm audacity
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Audacity"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_mangohud -eq 1 ]; then
|
|
|
|
echo "Installing MangoHud"
|
|
|
|
git clone --recurse-submodules https://github.com/flightlessmango/MangoHud.git
|
|
|
|
./MangoHud/build.sh install
|
|
|
|
else
|
|
|
|
echo "Skipping MangoHud"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_easystrokes -eq 1 ]; then
|
|
|
|
echo "Installing Easystrokes"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed --noconfirm easystroke
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Easystrokes"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_liferea -eq 1 ]; then
|
|
|
|
echo "Installing Liferea"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed --noconfirm liferea
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Liferea"
|
|
|
|
fi
|
|
|
|
|
2020-11-15 10:56:25 +01:00
|
|
|
if [ $in_fractal -eq 1 ]; then
|
|
|
|
echo "Installing Fractal"
|
|
|
|
sudo pacman -S --needed --noconfirm fractal
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
2020-11-15 10:56:25 +01:00
|
|
|
echo "Skipping Fractal"
|
2020-08-28 21:46:34 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_bettergram -eq 1 ]; then
|
|
|
|
echo "Installing Bettergram"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed --noconfirm bettergram
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping Bettergram"
|
|
|
|
fi
|
|
|
|
|
2020-11-05 20:27:04 +01:00
|
|
|
if [ $in_waifu2x -eq 1 ]; then
|
|
|
|
echo "Installing Waifu2x"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed --noconfirm waifu2x-ncnn-vulkan
|
2020-11-05 20:27:04 +01:00
|
|
|
else
|
|
|
|
echo "Skipping Waifu2x"
|
|
|
|
fi
|
|
|
|
|
2020-08-29 13:52:27 +02:00
|
|
|
#performance and battery life
|
|
|
|
if [ $in_acpufreq -eq 1 ]; then
|
|
|
|
echo "Installing auto-cpufreq"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed --noconfirm auto-cpufreq-git
|
2020-08-29 13:52:27 +02:00
|
|
|
sudo auto-cpufreq --install
|
|
|
|
sudo systemctl start auto-cpufreq
|
|
|
|
sudo systemctl enable auto-cpufreq
|
|
|
|
else
|
|
|
|
echo "Skipping auto-cpufreq"
|
|
|
|
fi
|
|
|
|
|
2020-11-13 08:02:58 +01:00
|
|
|
#text editors
|
2020-09-18 19:28:12 +02:00
|
|
|
if [ $in_doomemacs -eq 1 ]; then
|
2020-09-07 19:50:09 +02:00
|
|
|
echo "Installing doom-emacs"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed --noconfirm git emacs ripgrep fd pandoc shellcheck python-pipenv python-isort python-pytest python-rednose pychecker texlive-core
|
2020-09-07 19:50:09 +02:00
|
|
|
git clone --depth 1 https://github.com/hlissner/doom-emacs ~/.emacs.d
|
|
|
|
~/.emacs.d/bin/doom install
|
2020-09-07 19:58:16 +02:00
|
|
|
export PATH="$PATH":$HOME/.emacs.d/bin
|
2020-09-07 19:50:09 +02:00
|
|
|
else
|
|
|
|
echo "Skipping doom-emacs"
|
|
|
|
fi
|
|
|
|
|
2020-09-09 21:01:58 +02:00
|
|
|
if [ $in_vscodium -eq 1 ]; then
|
|
|
|
echo "Installing vscodium"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed --noconfirm vscodium-bin
|
2020-09-09 21:01:58 +02:00
|
|
|
else
|
|
|
|
echo "Skipping vscodium"
|
|
|
|
fi
|
|
|
|
|
2020-11-13 08:02:58 +01:00
|
|
|
#other social stuff
|
2020-11-13 07:58:44 +01:00
|
|
|
if [ $in_teams -eq 1 ]; then
|
|
|
|
echo "Installing teams"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed --noconfirm teams
|
2020-11-13 07:58:44 +01:00
|
|
|
else
|
|
|
|
echo "Skipping teams"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $in_slack -eq 1 ]; then
|
|
|
|
echo "Installing slack"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed --noconfirm slack-desktop
|
2020-11-13 07:58:44 +01:00
|
|
|
else
|
|
|
|
echo "Skipping slack"
|
|
|
|
fi
|
|
|
|
|
2020-08-28 21:46:34 +02:00
|
|
|
#stats
|
|
|
|
if [ $in_pkgstats -eq 1 ]; then
|
|
|
|
echo "Installing pkgstats"
|
2020-08-29 14:45:08 +02:00
|
|
|
sudo pacman -S --needed --noconfirm pkgstats
|
2020-08-28 21:46:34 +02:00
|
|
|
else
|
|
|
|
echo "Skipping pkgstats"
|
|
|
|
fi
|
|
|
|
|
2020-11-07 10:39:59 +01:00
|
|
|
# additional packages
|
|
|
|
if [ $in_optpkg -eq 1 ]; then
|
|
|
|
echo "Installing additional packages"
|
2020-11-14 14:04:06 +01:00
|
|
|
paru -S --needed - < "$HOME/setup/pkglist.txt"
|
2020-11-07 10:39:59 +01:00
|
|
|
fi
|
|
|
|
|
2020-09-27 14:06:50 +02:00
|
|
|
#change shell
|
2020-09-27 14:07:43 +02:00
|
|
|
chsh -s /usr/bin/fish "$USER"
|
2020-09-27 14:06:50 +02:00
|
|
|
|
2020-09-02 10:51:45 +02:00
|
|
|
#enable vnstat
|
|
|
|
sudo systemctl enable vnstat
|
|
|
|
sudo systemctl start vnstat
|
|
|
|
|
2020-11-17 15:34:39 +01:00
|
|
|
# enable firewall
|
|
|
|
echo "Enabling Firewall"
|
|
|
|
sudo ufw enable
|
|
|
|
|
2020-02-28 22:40:18 +01:00
|
|
|
#Changes to home folder automatically now, no need to be extra careful anymore.
|
2020-04-18 23:25:41 +02:00
|
|
|
git clone https://gitlab.com/RealStickman-arcolinux/config
|
2020-04-16 08:51:26 +02:00
|
|
|
echo Finished downloading config
|
2020-02-29 13:18:14 +01:00
|
|
|
|
|
|
|
#cleanup
|
2020-04-18 23:25:41 +02:00
|
|
|
rm -rf ~/setup
|
2020-08-28 21:46:34 +02:00
|
|
|
echo Removed setup files
|
2020-02-29 13:18:14 +01:00
|
|
|
|
|
|
|
#downloading config
|
2020-04-16 08:51:26 +02:00
|
|
|
echo Setting config
|
2020-06-15 20:50:25 +02:00
|
|
|
bash ~/config/install.sh
|
2020-07-17 21:14:06 +02:00
|
|
|
pkgstats
|
2020-07-30 11:00:22 +02:00
|
|
|
echo Finished everything
|