mirror of
https://github.com/Melon-Bread/gnu-slash-dot-files
synced 2024-11-25 00:38:23 -05:00
13 lines
296 B
Bash
13 lines
296 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo 'Updating RetroArch...'
|
||
|
yay -S retroarch-git --noconfirm
|
||
|
|
||
|
echo 'Updating Cores....'
|
||
|
python ~/Documents/Projects/RetroUFO/RetroUFO.py
|
||
|
|
||
|
echo 'Updating Thumbnails'
|
||
|
cd "~/.config/retroarch/thumbnails/"
|
||
|
git pull --recurse-submodules
|
||
|
git submodule update --remote --recursive
|