Files
omv_backup/venv/bin/autorandr
2025-04-06 03:14:47 +02:00

9 lines
273 B
Python
Executable File

#!/home/jd/projects/omv_backup/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from autorandr import exception_handled_main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(exception_handled_main())