From 776fc174ed8723e5574d517e19fb1d0214925115 Mon Sep 17 00:00:00 2001 From: Rikko Date: Fri, 26 Aug 2022 21:58:02 +0530 Subject: [PATCH] Sample dependant plugin --- plugins/utilities/colorscheme_dependant.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 plugins/utilities/colorscheme_dependant.py diff --git a/plugins/utilities/colorscheme_dependant.py b/plugins/utilities/colorscheme_dependant.py new file mode 100644 index 0000000..2b5afbc --- /dev/null +++ b/plugins/utilities/colorscheme_dependant.py @@ -0,0 +1,9 @@ +# ba_meta require api 7 +import ba +import colorscheme + +# ba_meta export plugin +class Main(ba.Plugin): + def on_plugin_manager_prompt(self): + ba.screenmessage("we're good if u see the colorscheme window!") + colorscheme.launch_colorscheme_selection_window()