├── README.md └── UpdateYuzu.sh /README.md: -------------------------------------------------------------------------------- 1 | # This repository has been archived as Yuzu is no longer Maintained. 2 | -------------------------------------------------------------------------------- /UpdateYuzu.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | curl -s https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest | jq -r ".assets[0] | .browser_download_url" | wget -qO ~/Applications/yuzu.AppImage -i - 3 | ~/Applications/yuzu.AppImage 4 | --------------------------------------------------------------------------------