Add apps list to install

This commit is contained in:
2021-10-06 11:15:08 +03:00
parent b3ed34115e
commit 8b2b4debfa
3 changed files with 41 additions and 0 deletions

4
apps.aur Normal file
View File

@@ -0,0 +1,4 @@
arch-wiki-man
chiaki
ly
polybar

28
apps.list Normal file
View File

@@ -0,0 +1,28 @@
alacritty
dunst
figlet
firefox
fzf
gimp
hacksaw
htop
i3-gaps
jq
lxappearance
mpv
mupdf
ncdu
neofetch
neovim
nmap
ntfs-3g
obs-studio
pipewire
playerctl
ranger
rofi
shotgun
steam
ttf-fira-code
ttf-font-awesome
git

View File

@@ -5,6 +5,7 @@ usage() {
echo
echo " -S installs all this shit"
echo " -R removes all this shit"
echo " -U updates or installs all packages"
}
if [ $# -eq 0 ] ; then
@@ -48,3 +49,11 @@ cd && rm -rf .bashrc $nvimDir $alacrittyDir $i3Dir $polybarDir $rofiDir $picomFi
fi
if [ "$1" = "-U" ] ; then
archPackages=$(cat apps.list)
aurPackages=$(cat apps.aur)
echo "Installing Arch packages... "
echo "We need your sudo privileges"
sudo pacman -S $archPackages --noconfirm --needed
fi