mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 20:21:57 +00:00
Int is nice but it breaks plugins
This commit is contained in:
@@ -38,7 +38,7 @@ It would be `root` if `root` was specified in the plugin's flags otherwise the u
|
||||
e.g.: `deck`
|
||||
"""
|
||||
|
||||
USER_ID: int = int(os.getenv("USER_ID", default="-1"))
|
||||
USER_ID: str = str(os.getenv("USER_ID", default="-1"))
|
||||
"""
|
||||
The effective UID running the process.
|
||||
Environment variable: `USER_ID`.
|
||||
@@ -60,7 +60,7 @@ Environment variable: `DECKY_USER`.
|
||||
e.g.: `deck`
|
||||
"""
|
||||
|
||||
DECKY_USER_ID: int = int(os.getenv("DECKY_USER_ID", default="-1"))
|
||||
DECKY_USER_ID: str = str(os.getenv("DECKY_USER_ID", default="-1"))
|
||||
"""
|
||||
The UID of the user whose home decky resides in.
|
||||
Environment variable: `DECKY_USER_ID`.
|
||||
|
||||
@@ -36,7 +36,7 @@ It would be `root` if `root` was specified in the plugin's flags otherwise the u
|
||||
e.g.: `deck`
|
||||
"""
|
||||
|
||||
USER_ID: int
|
||||
USER_ID: str
|
||||
"""
|
||||
The effective UID running the process.
|
||||
Environment variable: `UID`.
|
||||
@@ -58,7 +58,7 @@ Environment variable: `DECKY_USER`.
|
||||
e.g.: `deck`
|
||||
"""
|
||||
|
||||
DECKY_USER_ID: int
|
||||
DECKY_USER_ID: str
|
||||
"""
|
||||
The UID of the user whose home decky resides in.
|
||||
Environment variable: `DECKY_USER_ID`.
|
||||
|
||||
Reference in New Issue
Block a user