#!/bin/sh
#it is need for running exported *.desktop file
#cd into dir where is the executable

s="$@"
d=/${s#*/}
d=${d% *}
d=${d%/*}
cd $d
$@
