bg and discord swap

screenshare now works with audio
This commit is contained in:
RP1 2025-01-23 11:28:10 +01:00
parent 28ea7d545a
commit 65f85717fd
2 changed files with 16 additions and 21 deletions

View file

@ -282,7 +282,7 @@ if [[ $user_choice = *"KVM QEMU - virtualizáció, virtuális gépek futtatása"
echo --------------------------------------------- echo ---------------------------------------------
echo Installing ${bold}${yellow}KVM QEMU${normal} echo Installing ${bold}${yellow}KVM QEMU${normal}
sudo pacman -S qemu-full qemu-img libvirt virt-install virt-manager virt-viewer edk2-ovmf dnsmasq swtpm guestfs-tools libosinfo tuned dmidecode --noconfirm sudo pacman -S qemu-full qemu-img libvirt virt-install virt-manager virt-viewer edk2-ovmf dnsmasq swtpm guestfs-tools libosinfo dmidecode --noconfirm
sudo usermod -aG kvm $USER sudo usermod -aG kvm $USER
sudo usermod -aG input $USER sudo usermod -aG input $USER
sudo usermod -aG libvirt $USER sudo usermod -aG libvirt $USER
@ -588,33 +588,29 @@ if [[ $user_choice = *"Discord - VoIP-, és csevegőalkalmazás"* ]]; then
echo --------------------------------------------- echo ---------------------------------------------
echo Installing ${bold}${yellow}Discord${normal} echo Installing ${bold}${yellow}Discord${normal}
flatpak install flathub com.discordapp.Discord --user -y sudo pacman -S discord --noconfirm
sudo pacman -S noto-fonts-emoji --noconfirm sudo pacman -S noto-fonts-emoji --noconfirm
# font csomagok meg hianyoznak, ki kell deriteni mi kell a DC-nek
# Vencord script credit to Lordify # Vencord script credit to Lordify
# Add USER repo to flathub, because Linux Mint doesn't have it
#flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
# Download the latest release of Vencord Installer from Github # Download the latest release of Vencord Installer from Github
wget https://github.com/Vencord/Installer/releases/latest/download/VencordInstallerCli-linux wget https://github.com/Vencord/Installer/releases/latest/download/VencordInstallerCli-linux
sleep 1 sleep 1
# Grant execution permission to vencord installer # Copy Vencord Installer to /bin
sudo chmod +x VencordInstallerCli-linux sudo cp -a VencordInstallerCli-linux /bin
sleep 1 sleep 1
# Create Symlink of /home/$USER directory in /usr/share/Vencord, because the Kurva Vencord script doesn't handle variables like $USER # Grant execution permission to vencord installer
sudo ln -s ~/ /usr/share/Vencord sudo chmod +x /bin/VencordInstallerCli-linux
sleep 1 sleep 1
# Install vencord with openasar # Install vencord with openasar
./VencordInstallerCli-linux -install -location /usr/share/Vencord/.local/share/flatpak/app/com.discordapp.Discord sudo VencordInstallerCli-linux -install -location /opt/discord
sleep 1 sleep 1
./VencordInstallerCli-linux -install-openasar -location /usr/share/Vencord/.local/share/flatpak/app/com.discordapp.Discord/ sudo VencordInstallerCli-linux -install-openasar -location /opt/discord
sleep 1 sleep 1
# Remove symlink from /usr/share/Vencord sudo rm /bin/VencordInstallerCli-linux
sudo unlink /usr/share/Vencord # Copy Vencord Theme by DanyHolder
sleep 1 mkdir -p /home/$USER/.config/Vencord
sudo mkdir -p /home/$USER/.var/app/com.discordapp.Discord/config/Vencord cp -a /home/$USER/.progs/themes/ /home/$USER/.config/Vencord/themes
sudo chown -R $USER:$GROUP /home/$USER/.var/app/com.discordapp.Discord/config/Vencord/
cp -a /home/$USER/.progs/themes/ /home/$USER/.var/app/com.discordapp.Discord/config/Vencord/themes
echo ${bold}${yellow}Discord / Vencord ${normal}installed. echo ${bold}${yellow}Discord / Vencord ${normal}installed.
echo --------------------------------------------- echo ---------------------------------------------

View file

@ -172,10 +172,9 @@ Current=raveos-sddm' | sudo tee /etc/sddm.conf.d/theme.conf
sudo sed -i 's/#hu_HU.UTF-8 UTF-8/hu_HU.UTF-8 UTF-8/' /etc/locale.gen sudo sed -i 's/#hu_HU.UTF-8 UTF-8/hu_HU.UTF-8 UTF-8/' /etc/locale.gen
sudo locale-gen sudo locale-gen
konsave -a raveui-kde konsave -a raveui-kde
# BG swap by Lordify sudo cp -a 1920x1080.png /usr/share/wallpapers/Next/content/images_dark/
if [[ -f /usr/bin/startplasma-wayland ]]; then sudo cp -a 2560x1440.png /usr/share/wallpapers/Next/content/images_dark/
plasma-apply-wallpaperimage /usr/share/backgrounds/raveos-bg.png sudo cp -a 3840x2160.png /usr/share/wallpapers/Next/content/images_dark/
fi
# Adding Custom rave command # Adding Custom rave command
echo --------------------------------------------- echo ---------------------------------------------