přidány instalční skripty,instalují AUR pomocníka a AUR balíčky další potřebné balíčky s pacman
This commit is contained in:
parent
33ecc385ba
commit
3457b41a61
34
install_aur_package.sh
Normal file
34
install_aur_package.sh
Normal file
@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
#Tento skript je určen pro instalaci pomícníka AUR YAY a balíčků z Arch User Repository (AUR).
|
||||
##################################################################################################################
|
||||
# Written to be used on 64 bits computers
|
||||
# Author : Archos
|
||||
# Website : https://arch-linux.cz
|
||||
##################################################################################################################
|
||||
##################################################################################################################
|
||||
#
|
||||
# PEČLIVĚ SKRIPT ZKONTROLUJTE. SPUŠTĚNÍ JE NA VAŠE VLASTNÍ RIZIKO.
|
||||
#
|
||||
##################################################################################################################
|
||||
# Název balíčku z AUR
|
||||
package_name="autotiling picom"
|
||||
|
||||
# Kontrola, zda je git nainstalován
|
||||
if ! command -v git &>/dev/null; then
|
||||
echo "Instaluji git..."
|
||||
sudo pacman -S git --needed --noconfirm
|
||||
fi
|
||||
|
||||
# Kontrola, zda je nainstalován pomocník pro AUR (např. yay)
|
||||
if ! command -v yay &>/dev/null; then
|
||||
echo "Instaluji Yay (AUR helper)..."
|
||||
git clone https://aur.archlinux.org/yay.git
|
||||
cd yay
|
||||
makepkg -si --noconfirm
|
||||
cd ..
|
||||
rm -rf yay
|
||||
fi
|
||||
|
||||
# Instalace balíčku z AUR pomocí Yay
|
||||
echo "Instaluji $package_name z AUR..."
|
||||
yay -S $package_name --noconfirm
|
22
pacman_packages.sh
Normal file
22
pacman_packages.sh
Normal file
@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
#Tento skript je určen pro instalaci širokého spektra aplikací, které osobně preferuji pro každodenní použití v Arch Linuxu.
|
||||
##################################################################################################################
|
||||
# Written to be used on 64 bits computers
|
||||
# Author : Archos
|
||||
# Website : https://arch-linux.cz
|
||||
##################################################################################################################
|
||||
##################################################################################################################
|
||||
#
|
||||
# PEČLIVĚ SKRIPT ZKONTROLUJTE. SPUŠTĚNÍ JE NA VAŠE VLASTNÍ RIZIKO.
|
||||
#
|
||||
##################################################################################################################
|
||||
# Aktualizace systému
|
||||
|
||||
# Seznam balíčků k instalaci pomocí pacman
|
||||
pacman_packages="firefox vim git htop darktable geeqie smplayer vlc thunar pcmanfm thunar-archive-plugin firefox transmission-gtk libreoffice-fresh libreoffice-fresh-cs gnome-calculator pluma p7zip unrar tar rsync cryfs rapid-photo-downloader gthumb gimp wireguard-tools nextcloud-client flatpak catfish totem borg borgmatic gnome-disk-utility gparted python-llfuse sshfs simple-scan evince neofetch geany gnome-screenshot filezilla networkmanager-openvpn passff-host firefox-i18n-cs thunderbird thunderbird-i18n-cs wget yajl bitwarden"
|
||||
|
||||
# Aktualizace systému a instalace balíčků
|
||||
echo "Aktualizuji systém a instaluji základní balíčky..."
|
||||
sudo pacman -Syu --needed $pacman_packages --noconfirm
|
||||
|
||||
echo "Instalace dokončena!"
|
Loading…
Reference in New Issue
Block a user