mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
12 lines
167 B
Python
12 lines
167 B
Python
import os
|
|
import platform
|
|
|
|
|
|
def get_platform():
|
|
return platform.system()
|
|
|
|
|
|
DISPLAY = os.getenv('DISPLAY', ':0')
|
|
TEST_MODE = os.getenv('STATUS_RUNTIME_TEST_MODE')
|
|
|