Update NSLGameScanner.py

This commit is contained in:
Roy 2024-08-04 00:31:50 -07:00 committed by GitHub
parent 1ad559ea53
commit 4e63c385cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,6 +15,13 @@ from urllib.request import urlretrieve
from base64 import b64encode
import xml.etree.ElementTree as ET
# Check the value of the DBUS_SESSION_BUS_ADDRESS environment variable
dbus_address = os.environ.get('DBUS_SESSION_BUS_ADDRESS')
if not dbus_address or not dbus_address.startswith('unix:path='):
# Set the value of the DBUS_SESSION_BUS_ADDRESS environment variable
dbus_address = f'unix:path=/run/user/{os.getuid()}/bus'
os.environ['DBUS_SESSION_BUS_ADDRESS'] = dbus_address
# Path to the env_vars file
env_vars_path = f"{os.environ['HOME']}/.config/systemd/user/env_vars"