diff options
author | Atapi | 2024-09-28 20:20:15 -0600 |
---|---|---|
committer | Atapi | 2024-09-28 20:20:15 -0600 |
commit | 3bdbf2046a0fe1d0f19da6c0f666626588446347 (patch) | |
tree | f4a843769289a107825ed35e801cc453078b0caa /gba-graphics-editor | |
download | aur-gba-graphics-editor.tar.gz |
init
Diffstat (limited to 'gba-graphics-editor')
-rwxr-xr-x | gba-graphics-editor | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gba-graphics-editor b/gba-graphics-editor new file mode 100755 index 000000000000..f4f54c2a76ed --- /dev/null +++ b/gba-graphics-editor @@ -0,0 +1,14 @@ +#!/bin/bash + +# WINE Launcher script for GBA Graphics Editor + +export GBAGEDDIR=/usr/share/gba-graphics-editor # installation dir for AUR package + +cat << EOF +GBA Graphics Editor Linux Loader by Atapi/Sterophonick +Original Program: (c) Nintenlord + +EOF + +[[ "$1" == "" ]] && wine $GBAGEDDIR/GBA\ Graphics\ Editor.exe +[[ "$1" != "" ]] && wine $GBAGEDDIR/GBA\ Graphics\ Editor.exe "$(winepath -w "$1")" |