# Gaming - [Gaming](#gaming) - [Discord](#discord) - [Steam](#steam) - [Streaming not working](#streaming-not-working) - [VSCode](#vscode) - [XWayland](#xwayland) - [Wine](#wine) - [Spotify](#spotify) - [VLC](#vlc) - [Remote Desktop](#remote-desktop) - [AppImages](#appimages) - [Bitwarden](#bitwarden) ## Discord ```bash mv ~/Downloads/Discord ~/Applications/Discord ``` ```conf [Desktop Entry] Name=Discord Exec=/home/ducoterra/Applications/Discord/Discord Icon=/home/ducoterra/Applications/Discord/discord.png Type=Application ``` ## Steam Edit /etc/pacman.conf ```conf [multilib] Include = /etc/pacman.d/mirrorlist ``` ```bash pacman -S steam ``` When prompted use vulkan-radeon on AMD and vulkan-intel on intel. ### Streaming not working I have no idea what actually fixes steam streaming. While installing the recommended packages and rebooting does nothing to fix the crashing, starting and enabling `ufw` does? Is it `ufw` in combination with the required packages? I have no idea. Try the following: 1. `pacman -S lib32-libcanberra lib32-libva-intel-driver libva-intel-driver` 2. `systemctl enable --now ufw` ## VSCode For the open source version of code install `code`: ```bash pacman -S code ``` ## XWayland Provides compatibility with X server applications (like wine) ```bash pacman -S xorg-xwayland ``` ## Wine ```bash pacman -S wine ``` ## Spotify ```bash pacman -S spotify-launcher ``` ## VLC ```bash pacman -S vlc ``` ## Remote Desktop ```bash pacman -S remmina freerdp ``` ## AppImages ### Bitwarden ```bash mv ~/Downloads/Bitwarden*.AppImage ~/Applications/Bitwarden.AppImage chmod +x ~/Applications/*.AppImage ``` ```conf [Desktop Entry] Name=Bitwarden Exec=/home/ducoterra/Applications/Bitwarden.AppImage Icon=/home/ducoterra/.icons/bitwarden.png Type=Application ```