47 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-09-25 19:37:22 -04:00
#!/bin/sh
set -e
2020-12-08 16:32:12 -05:00
# All Feature Flags
export AVAILABLE_FEATURES=" \
2020-11-22 17:30:06 -05:00
TRUE 'Touch GUI' \
TRUE 'Fix Bow & Arrow' \
TRUE 'Fix Attacking' \
TRUE 'Mob Spawning' \
TRUE 'Fancy Graphics' \
TRUE 'Disable Autojump By Default' \
TRUE 'Fix Sign Placement' \
TRUE 'Show Block Outlines' \
FALSE 'Expand Creative Inventory' \
FALSE 'Peaceful Mode' \
TRUE 'Animated Water' \
TRUE 'Remove Invalid Item Background' \
TRUE 'Disable gui_blocks Atlas' \
2020-11-22 17:30:06 -05:00
TRUE 'Smooth Lighting' \
2020-12-08 16:32:12 -05:00
FALSE '3D Anaglyph'"
# Print Feature Flags Option
if [ "$1" = "--print-features" ]; then
echo "${AVAILABLE_FEATURES}"
exit 0
fi
# Ensure Features Are Selected
MCPI_FEATURES="$(sh -c "zenity --class 'Minecraft - Pi edition' --list --checklist --column 'Enabled' --column 'Feature' ${AVAILABLE_FEATURES}")"
2020-11-22 17:30:06 -05:00
MCPI_USERNAME="$(zenity --class 'Minecraft - Pi edition' --entry --text 'Minecraft Username:' --entry-text 'StevePi')"
2020-10-01 15:11:27 -04:00
export MCPI_FEATURES
export MCPI_USERNAME
2020-10-01 11:08:46 -04:00
2020-10-01 15:11:27 -04:00
# Ensure Groups Are Correct
2020-10-17 16:23:01 -04:00
if ! id -Gn "$(whoami)" | grep '\bdocker\b' > /dev/null; then
pkexec usermod -aG docker "$(whoami)"
2020-10-01 14:33:52 -04:00
fi
2020-10-01 15:11:27 -04:00
# Allow X11 Connections From Root
2020-09-25 19:37:22 -04:00
xhost local:root
2020-10-16 15:39:04 -04:00
# Update Docker Container
export DOCKER_COMPOSE="docker-compose -f /usr/share/minecraft-pi/client/docker-compose.yml"
2020-10-14 22:51:30 -04:00
2020-10-16 15:39:04 -04:00
# Run
2020-10-17 16:23:01 -04:00
exec sg docker /usr/lib/minecraft-pi/run.sh