Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# This file is part of Xpra. 

2# Copyright (C) 2008 Nathaniel Smith <njs@pobox.com> 

3# Copyright (C) 2011-2017 Antoine Martin <antoine@xpra.org> 

4# Xpra is released under the terms of the GNU GPL v2, or, at your option, any 

5# later version. See the file COPYING for details. 

6 

7import os 

8import socket 

9 

10SOCKET_HOSTNAME = os.environ.get("XPRA_SOCKET_HOSTNAME", socket.gethostname()) 

11PREFIX = "%s-" % (SOCKET_HOSTNAME,) 

12 

13LIVE = "LIVE" 

14DEAD = "DEAD" 

15UNKNOWN = "UNKNOWN" 

16INACCESSIBLE = "INACCESSIBLE"