1
0
Fork 0
forked from RP1/RaveOS-arch

Merge pull request 'Xfburn and other printer dependencies added' (#24) from DanyHolder/RaveOS-arch:main into main

Reviewed-on: RP1/RaveOS-arch#24
This commit is contained in:
RP1 2025-02-17 11:59:18 +00:00
commit d218053c84

View file

@ -87,6 +87,7 @@ user_choice=$(zenity --list --checklist --width='1000' --height='1000' \
FALSE "VLC - médialejátszó" \ FALSE "VLC - médialejátszó" \
FALSE "Vulkan-radeon - Ha nem mennek a jatekok AMD kartyaval tedd ezt fel!" \ FALSE "Vulkan-radeon - Ha nem mennek a jatekok AMD kartyaval tedd ezt fel!" \
FALSE "Windows 11 Telepítő - Csak Profiknak!" \ FALSE "Windows 11 Telepítő - Csak Profiknak!" \
FALSE "Xfburn - CD/DVD író program" \
FALSE "XPadNeo - XBox Controller Support" \ FALSE "XPadNeo - XBox Controller Support" \
FALSE "Zenpower3 - AMD CPU Feszultseg, Aramerosseg es Fogyasztas Monitorozas" ) FALSE "Zenpower3 - AMD CPU Feszultseg, Aramerosseg es Fogyasztas Monitorozas" )
if [[ $? -eq 1 ]]; then if [[ $? -eq 1 ]]; then
@ -258,7 +259,8 @@ if [[ $user_choice = *"Nyomtato - Ha hasznalsz nyomtatot, tedd fel"* ]]; then
echo --------------------------------------------- echo ---------------------------------------------
echo Installing ${bold}${yellow}Printers${normal} echo Installing ${bold}${yellow}Printers${normal}
sudo pacman -S cups hplip cnifilter2 --noconfirm sudo pacman -S cups hplip cnifilter2 system-config-printer --noconfirm
yay -S epson-inkjet-printer-escpr epson-inkjet-printer-escpr2 --noconfirm
sudo systemctl enable cups --now sudo systemctl enable cups --now
echo ${bold}${yellow}Printers ${normal}installed. echo ${bold}${yellow}Printers ${normal}installed.
@ -887,6 +889,19 @@ if [[ $user_choice = *"TeamSpeak3 - TeamSpeak VOIP kliens"* ]]; then
echo echo
fi fi
if [[ $user_choice = *"Xfburn - CD/DVD író program"* ]]; then
echo
echo ---------------------------------------------
echo Installing ${bold}${yellow}Xfburn${normal}
sudo pacman -S xfburn --noconfirm
echo ${bold}${yellow}Xfburn ${normal}installed.
echo ---------------------------------------------
echo
fi
if [[ $user_choice = *"Windows 11 Telepítő - Csak Profiknak"* ]]; then if [[ $user_choice = *"Windows 11 Telepítő - Csak Profiknak"* ]]; then
zenity --warning --text='!! MAJOM VAGY !!' --width='300' --height='100' zenity --warning --text='!! MAJOM VAGY !!' --width='300' --height='100'
fi fi
@ -922,4 +937,4 @@ zenity --progress \
else else
echo ${bold}${yellow}User exited the script. Ending!${normal} echo ${bold}${yellow}User exited the script. Ending!${normal}
exit 0; exit 0;
fi fi