#!/usr/bin/env python3
"""
GuideOS Updater - GuideOS Update Manager
Desktop entry script
"""

import sys
import os

# Add the installed package paths to Python path
guideos_lib_path = '/usr/lib/guideos-updater'
sys.path.insert(0, guideos_lib_path)

# Import and run the main application  
from main import main

if __name__ == "__main__":
    main()