aboutsummaryrefslogtreecommitdiffstats
path: root/bin/hypervideo-gui
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-12-13 17:52:03 -0500
committerJesús <heckyel@hyperbola.info>2019-12-13 17:52:03 -0500
commit6bf28f116dbf5f288d1b766fff40273c8bf3f390 (patch)
tree385deff86c402a391e4d5ccc8b2ff8623e412287 /bin/hypervideo-gui
parent060f2f5af7cc9d95ec751881cc3cae5ffa4b0340 (diff)
downloadhypervideo-gui-6bf28f116dbf5f288d1b766fff40273c8bf3f390.tar.lz
hypervideo-gui-6bf28f116dbf5f288d1b766fff40273c8bf3f390.tar.xz
hypervideo-gui-6bf28f116dbf5f288d1b766fff40273c8bf3f390.zip
switch to redistributable package
Diffstat (limited to 'bin/hypervideo-gui')
-rw-r--r--bin/hypervideo-gui12
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/hypervideo-gui b/bin/hypervideo-gui
new file mode 100644
index 0000000..e9c2fcf
--- /dev/null
+++ b/bin/hypervideo-gui
@@ -0,0 +1,12 @@
+#!/usr/bin/python
+
+import sys
+
+from hypervideo_gui.main_ui import *
+
+# Exec APP
+if __name__ == '__main__':
+ APP = QApplication(sys.argv)
+ APP.setStyle('Fusion')
+ ex = App()
+ sys.exit(APP.exec_())