13 lines
264 B
Python
13 lines
264 B
Python
#!/usr/bin/env python3
|
|
"""Compatibility entry point for the shared Jarvis preferences window."""
|
|
import os
|
|
from pathlib import Path
|
|
|
|
|
|
def main():
|
|
os.execvp('gjs', ['gjs', '-m', str(Path(__file__).with_name('main.js'))])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|