mirror of
https://github.com/gryf/pygtktalog.git
synced 2025-12-17 11:30:19 +01:00
12 lines
397 B
Bash
Executable File
12 lines
397 B
Bash
Executable File
#!/bin/sh
|
|
# Simple shell wraper to launch pyGTKtalog
|
|
|
|
# change path to pygtktalog.py file full path, then you can move this shell
|
|
# script to desired place (like /usr/bin, /usr/local/bin, ~/bin and so on)
|
|
path_to_gtktalog_directory=$(readlink -e $(dirname $0))
|
|
|
|
# python interpreter
|
|
python_intrpreter="/usr/bin/python"
|
|
|
|
exec $python_intrpreter -OO ${path_to_gtktalog_directory}/pygtktalog.py "$@"
|