guake-guake/scripts/run-local.sh
2018-04-14 23:19:40 +02:00

19 lines
307 B
Bash
Executable File

#!/bin/bash
echo "execute Guake GTK3 for developer."
VIRTUALENV_PATH=$(pipenv --venv)
source $VIRTUALENV_PATH/bin/activate
bash <<EOF
python 2>/dev/null <<EOC
import gi
EOC
if [ \$? -eq 1 ]; then
pew toggleglobalsitepackages
fi
PYTHONPATH=. python3 guake/main.py --no-startup-script
echo "Done"
EOF