1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-20 08:58:52 +00:00
dotfiles/.config/fish/functions/rpcs3dl.fish
2018-12-06 19:45:58 -05:00

11 lines
327 B
Fish

# Defined in /tmp/fish.CYevIG/rpcs3dl.fish @ line 2
function rpcs3dl
cd $D/Games/Emulators/rpcs3/
rm ./*.AppImage
wget (wget -O- -o /dev/tty https://rpcs3.net/download | grep -o -m1 https://rpcs3.net/cdn/builds/rpcs3-v.\*_linux64.AppImage)
chmod +x *.AppImage
rm rpcs3
ln -s *.AppImage rpcs3
rpcs3
end