2020-09-25 19:37:22 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2020-10-01 15:11:27 -04:00
|
|
|
# Ensure Features Are Selected
|
2020-11-22 17:30:06 -05:00
|
|
|
MCPI_FEATURES="$(zenity --class 'Minecraft - Pi edition' --list --checklist --column 'Enabled' --column 'Feature' \
|
|
|
|
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' \
|
2020-12-02 16:29:04 -05:00
|
|
|
TRUE 'Disable gui_blocks Atlas' \
|
2020-11-22 17:30:06 -05:00
|
|
|
TRUE 'Smooth Lighting' \
|
|
|
|
FALSE '3D Anaglyph')"
|
|
|
|
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
|
2020-10-02 18:43:43 -04:00
|
|
|
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-10 19:02:13 -04:00
|
|
|
(${DOCKER_COMPOSE} pull || :) | zenity --class 'Minecraft - Pi edition' --progress --pulsate --no-cancel --auto-close --text 'Updating Minecraft...'
|
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
|