mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
17 lines
281 B
Bash
17 lines
281 B
Bash
#!/usr/bin/env bash
|
|
# Add non-steam games to steam
|
|
|
|
apps=(
|
|
"dolphin-emu Dolphin"
|
|
"yuzu Yuzu"
|
|
)
|
|
|
|
if command -v steamtinkerlaunch &> /dev/null
|
|
then
|
|
for app in "${apps[@]}"
|
|
do
|
|
set -- $app
|
|
steamtinkerlaunch addnonsteamgame -ep="$1" -an="$2"
|
|
done
|
|
fi
|