Coverage for /home/antoine/projects/xpra-git/dist/python3/lib64/python/xpra/server/server_uuid.py : 100%
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# -*- coding: utf-8 -*-
2# This file is part of Xpra.
3# Copyright (C) 2012-2013 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.
7from xpra.x11.gtk_x11.prop import prop_set, prop_get
8from xpra.gtk_common.gtk_util import get_default_root_window
11def save_uuid(uuid):
12 prop_set(get_default_root_window(), "_XPRA_SERVER_UUID", "latin1", uuid)
14def get_uuid():
15 return prop_get(get_default_root_window(), "_XPRA_SERVER_UUID", "latin1", ignore_errors=True)