/usr/bin/0desktop is in zeroinstall-injector 2.3.3-1.
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 locale
from logging import warn
try:
locale.setlocale(locale.LC_ALL, '')
except locale.Error:
warn('Error setting locale (eg. Invalid locale)')
## PATH ##
from zeroinstall.gtkui import desktop
import sys
desktop.main(sys.argv[1:])
|