Mirror von
https://github.com/arsenetar/dupeguru.git
synchronisiert 2025-07-04 06:23:20 +00:00
--HG-- rename : run_template_cocoa.py => cocoa/run_template.py rename : run_template_qt.py => qt/run_template.py
10 Zeilen
150 B
Python
10 Zeilen
150 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import os
|
|
|
|
def main():
|
|
return os.system('open "{{app_path}}"')
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main()) |