mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
12 lines
225 B
Bash
12 lines
225 B
Bash
#!/bin/bash
|
|
|
|
mkdir -p ~/.wmquake
|
|
if ! cd ~/.wmquake; then
|
|
echo "Can't create ~/.wmquake" 2>&1
|
|
exit 1
|
|
fi
|
|
if [ ! -e id1 ]; then
|
|
mkdir -p id1
|
|
ln -s /usr/share/games/quake/id1/* id1/
|
|
fi
|
|
exec /usr/libexec/wmquake/wmquake "$@"
|