Exemplo n.º 1
0
def can_use_appindicator():
    return get_appindicator() is not None and is_unity()
Exemplo n.º 2
0
# This file is part of Xpra.
# Copyright (C) 2010 Nathaniel Smith <*****@*****.**>
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any
# later version. See the file COPYING for details.

#don't bother trying to forward system tray with Ubuntu's "unity":
LOCAL_SERVERS_SUPPORTED = True
SHADOW_SUPPORTED = True
from xpra.util import is_unity
SYSTEM_TRAY_SUPPORTED = not is_unity()
MMAP_SUPPORTED = True
CAN_DAEMONIZE = True
DEFAULT_SSH_CMD = "ssh"
GOT_PASSWORD_PROMPT_SUGGESTION = "Perhaps you need to set up your ssh agent?\n"
CLIPBOARDS=["CLIPBOARD", "PRIMARY", "SECONDARY"]
Exemplo n.º 3
0
# This file is part of Xpra.
# Copyright (C) 2010 Nathaniel Smith <*****@*****.**>
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any
# later version. See the file COPYING for details.

# don't bother trying to forward system tray with Ubuntu's "unity":
LOCAL_SERVERS_SUPPORTED = True
SHADOW_SUPPORTED = True
from xpra.util import is_unity

SYSTEM_TRAY_SUPPORTED = not is_unity()
MMAP_SUPPORTED = True
CAN_DAEMONIZE = True
DEFAULT_SSH_CMD = "ssh"
GOT_PASSWORD_PROMPT_SUGGESTION = "Perhaps you need to set up your ssh agent?\n"
CLIPBOARDS = ["CLIPBOARD", "PRIMARY", "SECONDARY"]