diff --git a/liquidctl_helper_linux.py b/helpers/liquidctl_helper_linux.py similarity index 100% rename from liquidctl_helper_linux.py rename to helpers/liquidctl_helper_linux.py diff --git a/liquidctl_helper_windows.py b/helpers/liquidctl_helper_windows.py similarity index 100% rename from liquidctl_helper_windows.py rename to helpers/liquidctl_helper_windows.py diff --git a/main.pyw b/main.pyw index cbd4f9b..1d26fc6 100644 --- a/main.pyw +++ b/main.pyw @@ -18,12 +18,12 @@ from MessageHandler import MessageHandler import globals from styles import Labels if globals.os == "Windows": - from liquidctl_helper_windows import LiquidCTL_Helper + from helpers.liquidctl_helper_windows import LiquidCTL_Helper from vitals_helper import VitalsHelperWindows as VitalsHelper import win32mica # type: ignore import darkdetect # type: ignore elif globals.os == "Linux": - from liquidctl_helper_linux import LiquidCTL_Helper + from helpers.liquidctl_helper_linux import LiquidCTL_Helper from vitals_helper import VitalsHelperLinux as VitalsHelper