mirror of
https://github.com/Guake/guake.git
synced 2025-10-26 11:27:13 +00:00
23 lines
362 B
Bash
Executable File
23 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "execute Guake GTK3 for developer."
|
|
|
|
if test "$1" == "-v"; then
|
|
VERBOSE="-v";
|
|
fi
|
|
|
|
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 $VERBOSE
|
|
echo "Done"
|
|
EOF
|