This file is indexed.

/usr/bin/xpra_launcher is in xpra 2.1.3+dfsg-1ubuntu1.

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
#! /usr/bin/python2

import sys
from xpra.platform import program_context

with program_context("Xpra-Launcher", "Xpra Connection Launcher"):
    from xpra.client.gtk_base.client_launcher import do_main
    sys.exit(do_main())