/usr/share/pyshared/blueman/Constants.py is in blueman 1.23-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | VERSION="1.23"
PACKAGE="blueman"
WEBSITE="http://blueman-project.org"
PREFIX="/usr"
BIN_DIR="/usr/bin"
ICON_PATH = "/usr/share/blueman/icons"
UI_PATH = "/usr/share/blueman/ui"
OBEX_BROWSE_AVAILABLE = True
DHCP_CONFIG_FILE = "/etc/dhcp3/dhcpd.conf"
POLKIT = "yes" == "yes"
HAL_ENABLED = "no" == "yes"
DEF_BROWSE_COMMAND = "nautilus --browser obex://[%d]"
import os
import gettext
import __builtin__
translation = gettext.translation("blueman", "/usr/share/locale", fallback=True)
translation.install(unicode=True)
__builtin__.ngettext = translation.ungettext
if os.path.exists("../apps") and os.path.exists("../data"):
BIN_DIR = "./"
ICON_PATH = "../data/icons"
UI_PATH = "../data/ui"
|