mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-03 16:09:32 +00:00
f1fb08273d
svn-id: r30577
8 lines
276 B
Bash
8 lines
276 B
Bash
#!/bin/sh
|
|
# wrapper for proper WM_CLASS name in SDL apps (needed for icon in taskbar)
|
|
#BASEDIR=`dirname $0`
|
|
BASENAME=`basename $0`
|
|
export SDL_VIDEO_X11_WMCLASS=${BASENAME}
|
|
export SCUMMVM_MAEMO_DEVICE=$(awk '/^product/ { print $2;}' /proc/component_version)
|
|
exec ${0}.bin "$@"
|