1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 19:40:21 +01:00
Files
pygtktalog/pyGTKtalog
gryf 1eaad783f9 * Changed the way that program starts: it's possible to run it from its
directory or place in desired directory, copy pyGTKtalog script in
   place pointed in $PATH (or not), and change path to pygtktalog.py
   file.
2008-05-08 11:58:41 +00:00

12 lines
372 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="."
# python interpreter
python_intrpreter="/usr/bin/python"
exec $python_intrpreter -OO ${path_to_gtktalog_directory}/pygtktalog.py "$@"