diff --git a/kuro/config/__init__.py b/kuro/config/__init__.py index 56f4cb4..a9a9aca 100644 --- a/kuro/config/__init__.py +++ b/kuro/config/__init__.py @@ -31,7 +31,7 @@ class Config(BaseConfig): file_manager = "thunar" visualizer_app = "glava" web_browser = "firefox" - network_config = "true" + network_config = None # Autostart applications apps_autostart_group = [ diff --git a/kuro/config/temari.py b/kuro/config/temari.py index 5dca927..59f4dff 100644 --- a/kuro/config/temari.py +++ b/kuro/config/temari.py @@ -11,7 +11,7 @@ class Config(GeneralConfig): #app_terminal = "terminator" cmd_brightness_up = "brightnessctl -d intel_backlight set +5%" cmd_brightness_down = "brightnessctl -d intel_backlight set 5%-" - network_config = "nm-applet" + network_config = "nm-connection-editor" #lock_command = "bash /home/kevin/bin/lock.sh" # Thermal indicator variables diff --git a/kuro/theme.py b/kuro/theme.py index d46ce20..d643aa9 100644 --- a/kuro/theme.py +++ b/kuro/theme.py @@ -512,7 +512,8 @@ class Kuro(BaseTheme): kuro.utils.widgets.NetworkInfoWidget( fontsize_left=16, fontsize_right=14, wireless_interface=Config.get('wifi_interface', None), - wired_interface=Config.get('wired_interface', None) + wired_interface=Config.get('wired_interface', None), + config_application=Config.get('network_config', None), ), ]) diff --git a/kuro/utils/widgets.py b/kuro/utils/widgets.py index 3c10903..3a30e23 100644 --- a/kuro/utils/widgets.py +++ b/kuro/utils/widgets.py @@ -621,7 +621,7 @@ class NetworkInfoWidget(DualPaneTextboxBase): ('critical_color', "#ffffff", "Color when value is critical"), ('wireless_interface', "wifi0", "Wireless interface device name"), ('wired_interface', "enp7s0", "Wired interface device name"), - ('config_application', "true", "Application to launch when right/middle clicking"), + ('config_application', None, "Application to launch when right/middle clicking"), ] def __init__(self, **config): @@ -748,7 +748,7 @@ class NetworkInfoWidget(DualPaneTextboxBase): notify(None, title, "{}\n\n{}".format(wifi_text, wired_text)) else: notify(None, title, "\n{}".format(wired_text)) - if button == BUTTON_LEFT or button == BUTTON_MIDDLE: + if button == BUTTON_RIGHT or button == BUTTON_MIDDLE: if self.config_application: execute(self.config_application)