mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-25 13:15:12 +02:00
13 lines
321 B
Bash
Executable file
13 lines
321 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Ensure there is an initial configuration file
|
|
#
|
|
CFG="Baltazar Studios, LLC/Z80Explorer.conf"
|
|
if [ ! -f "$HOME/.config/$CFG" ]; then
|
|
mkdir -p "$HOME/.config/Baltazar Studios, LLC"
|
|
cat >"$HOME/.config/$CFG" <<-EOF
|
|
[General]
|
|
ResourceDir=/usr/share/Z80Explorer
|
|
EOF
|
|
fi
|
|
/usr/libexec/Z80Explorer/Z80Explorer
|