Files
gnome-jarvis/apps/control-center/main.py
T
snxraven a4073b9020
Rolling release / release (push) Successful in 6m36s
Check Point
2026-09-12 09:07:09 -04:00

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()