Created
October 7, 2022 04:48
-
-
Save jonpalmisc/45171daa5d248401d7316525a96a755b to your computer and use it in GitHub Desktop.
IDA Pro Fusion Theme Mini-plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ida_idaapi | |
from PyQt5.QtWidgets import QApplication | |
class FusionThemePlugin(ida_idaapi.plugin_t): | |
flags = ida_idaapi.PLUGIN_FIX | |
wanted_name = "FusionTheme" | |
def init(self): | |
QApplication.setStyle("Fusion") | |
return ida_idaapi.PLUGIN_SKIP | |
def run(self): | |
pass | |
def term(self): | |
pass | |
def PLUGIN_ENTRY(): | |
return FusionThemePlugin() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment