From 6cea045dd268ecd4e83fae4f35c06da9b30c2b3b Mon Sep 17 00:00:00 2001 From: svatantrya Date: Sat, 9 May 2026 09:07:25 -0400 Subject: [PATCH] Windows --- bal.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/bal.py b/bal.py index 0c07e41..749c52d 100644 --- a/bal.py +++ b/bal.py @@ -51,7 +51,7 @@ class BalPlugin(BasePlugin): __version__ = "0.2.8" #AUTOMATICALLY GENERATED DO NOT EDIT default_app={ "Linux":"xdg-open", - "Window":"start", + "Windows":"start", "Darwin":"open" } chainname = constants.net.NET_NAME if constants.net.NET_NAME != "mainnet" else "bitcoin" @@ -96,11 +96,7 @@ class BalPlugin(BasePlugin): self.ASK_INVALIDATE = BalConfig(config, "bal_ask_invalidate", True) self.PREVIEW = BalConfig(config, "bal_preview", True) self.SAVE_TXS = BalConfig(config, "bal_save_txs", True) - self.WILLEXECUTORS = BalConfig(config, "bal_willexecutors", True) - # self.PING_WILLEXECUTORS = BalConfig(config, "bal_ping_willexecutors", True) - # self.ASK_PING_WILLEXECUTORS = BalConfig( - # config, "bal_ask_ping_willexecutors", True - # ) + self.NO_WILLEXECUTOR = BalConfig(config, "bal_no_willexecutor", True) self.HIDE_REPLACED = BalConfig(config, "bal_hide_replaced", True) self.HIDE_INVALIDATED = BalConfig(config, "bal_hide_invalidated", True) @@ -157,7 +153,7 @@ class BalPlugin(BasePlugin): BalPlugin.default_will_settings(), ) self.system = platform.system() - self.CALENDAR_APP = BalConfig(config,"bal_open_app",self.default_app[self.system]) + self.CALENDAR_APP = BalConfig(config,"bal_open_app",self.default_app.get(self.system,"")) self._hide_invalidated = self.HIDE_INVALIDATED.get() self._hide_replaced = self.HIDE_REPLACED.get()