aboutsummaryrefslogtreecommitdiffstats
path: root/bin/hypervideo-gui
diff options
context:
space:
mode:
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_())