qrazercfg 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #!/usr/bin/env python3
  2. #
  3. # Razer device QT configuration tool
  4. #
  5. # Copyright (C) 2007-2018 Michael Buesch <m@bues.ch>
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. import sys
  17. import traceback
  18. from PyQt5.QtCore import *
  19. from PyQt5.QtGui import *
  20. from PyQt5.QtWidgets import *
  21. import pyrazer
  22. from pyrazer import ui
  23. def main():
  24. try:
  25. ui.razer = pyrazer.Razer(enableNotifications=True)
  26. except pyrazer.RazerEx as e:
  27. print(e)
  28. return 1
  29. app = QApplication(sys.argv)
  30. try:
  31. mainwnd = ui.MainWindow()
  32. mainwnd.show()
  33. return app.exec_()
  34. except pyrazer.RazerEx as e:
  35. QMessageBox.critical(None,
  36. "qrazercfg - Fatal exception",
  37. "qrazercfg - A fatal exception occurred:\n\n"
  38. "%s\n\n"
  39. "%s" % (str(e), traceback.format_exc()))
  40. raise e
  41. if __name__ == "__main__":
  42. sys.exit(main())