You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
236 B
14 lines
236 B
2 years ago
|
#!/bin/sh
|
||
|
|
||
|
if [ -z "$(pidof -sx hm-start.py)" ]; then
|
||
|
cd "/usr/share/handymenu"
|
||
|
./hm-start.py $@
|
||
|
else
|
||
|
echo "Handy-menu est déjà lancé"
|
||
|
killall hm-start.py
|
||
|
cd "/usr/share/handymenu"
|
||
|
./hm-start.py $@
|
||
|
fi
|
||
|
|
||
|
exit 0
|