7 lines
183 B
Bash
Executable file
7 lines
183 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
HOME=$HOME/.local/share/Steam/xdgspec
|
|
mkdir -p "$HOME"
|
|
|
|
[ -e "/usr/bin/steam" ] && exec /usr/bin/steam "$@"
|
|
[ -e "/usr/games/steam" ] && exec /usr/games/steam "$@"
|