/usr/share/smart-notifier/smart-notifier is in smart-notifier 0.28-5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/usr/bin/python
import sys
# get a path to our private module, and make sure it overrides
# all other paths (This is probably Debian specific)
sys.path.insert(0, '/usr/share/smart-notifier')
if '--notify' in sys.argv:
import smart_notifier
smart_notifier.notify(sys.stdin.read())
else:
import smart_notifier.gui
smart_notifier.gui.service()
|