13 lines
402 B
Bash
Executable file
13 lines
402 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#dep:steam
|
|
|
|
#FAKEHOME=${XDG_DATA_HOME:-$HOME/.local/share}/steam
|
|
#echo "Starting Steam in faked home $FAKEHOME" >&2
|
|
#
|
|
## If .steam exists in ~/ and not in the fake home, move it to the fake home
|
|
#if [ -d $HOME/.steam ] && [ ! -d $FAKEHOME/.steam ]; then
|
|
# echo "migrating $HOME/.steam to $FAKEHOME" >&2
|
|
# mv $HOME/.steam $FAKEHOME/
|
|
#fi
|
|
#export HOME=$FAKEHOME
|
|
exec /usr/bin/steam $@
|