update to .dot-files-laptop
This commit is contained in:
parent
ae9a611ea6
commit
3bae03e47a
46 changed files with 3332 additions and 0 deletions
68
.dot-files-laptop/.bin/sh/buildgames.sh
Executable file
68
.dot-files-laptop/.bin/sh/buildgames.sh
Executable file
|
@ -0,0 +1,68 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Ask for confirmation to build nblood
|
||||
|
||||
{
|
||||
read -p "Build nblood? [y/n]:" -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||
then
|
||||
~/.bin/sh/nblood-compile.sh
|
||||
fi
|
||||
}
|
||||
|
||||
# Ask for confirmation to build rednukem
|
||||
|
||||
{
|
||||
read -p "Build rednukem? [y/n]:" -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||
then
|
||||
~/.bin/sh/rednukem-compile.sh
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
# Ask for confirmation to build voidsw
|
||||
|
||||
{
|
||||
read -p "Build voidsw? [y/n]:" -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||
then
|
||||
~/.bin/sh/voidsw-compile.sh
|
||||
fi
|
||||
}
|
||||
|
||||
# Ask for confirmation to build eduke32
|
||||
|
||||
{
|
||||
read -p "Build eduke32? [y/n]:" -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||
then
|
||||
~/.bin/sh/ionfury-compile.sh
|
||||
fi
|
||||
}
|
||||
|
||||
# Ask for confirmation to build vkquake
|
||||
|
||||
{
|
||||
read -p "Build Quakespasm-spiked? [y/n]:" -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||
then
|
||||
~/.bin/sh/quakespasm-compile.sh
|
||||
fi
|
||||
}
|
||||
|
||||
# Ask for confirmation to build crispy-doom
|
||||
|
||||
{
|
||||
read -p "Build crispy-doom? [y/n]:" -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||
then
|
||||
~/.bin/sh/crispy-doom-compile.sh
|
||||
fi
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue