8 lines
261 B
Python
8 lines
261 B
Python
from os.path import expanduser, exists
|
|
from functools import cache
|
|
|
|
@cache
|
|
def id():
|
|
if exists(expanduser('~/.config/bundlewrap/local_id')):
|
|
with open(expanduser('~/.config/bundlewrap/local_id'), 'r') as file:
|
|
return file.read().strip()
|