mirror of
https://github.com/gryf/pygtktalog.git
synced 2025-12-17 11:30:19 +01:00
directory or place in desired directory, copy pyGTKtalog script in place pointed in $PATH (or not), and change path to pygtktalog.py file.
12 lines
372 B
Bash
Executable File
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 "$@"
|