blob: f4f54c2a76ed64671a535d9accf8a9ac190a8a78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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")"
|