Installation
You can found the Galaxie microGUI Repository here: https://codeberg.org/RTNP/galaxie-microgui
Installation via pip
pip install galaxie-microgui
Installation via pip (test)
pip install -i https://test.pypi.org/simple/ galaxie-microgui
Next Step
Now you can the start the glxmg-demo entry point
$> glxmg-demo
or use the python package
#!/usr/bin/env python
import os
import sys
import argparse
import glxmg
def main(argv=None):
try:
widget = glxmg.Widget()
return 0
except Exception:
return 1
if __name__ == "__main__":
sys.exit(main())