Skip to content

Commit

Permalink
set update-indicator off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
nwg-piotr committed Feb 7, 2023
1 parent 41a4cb5 commit 389427c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion nwg_shell_config/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ def load_settings():
"gtklock-time-format": "%H:%M:%S",
"gtklock-userinfo": False,
"gtklock-userswitch-command": "",
"update-indicator-on": True,
"update-indicator-on": False,
"update-indicator-interval": 30,
"update-command": "nwg-system-update"
}
Expand Down
2 changes: 2 additions & 0 deletions nwg_shell_config/ui_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,8 @@ def screen_tab(settings, voc, pending_updates):
entry_update_cmd.connect("changed", validate_update_cmd, cb_update_indicator_on, sb_update_indicator_interval,
settings)
box.pack_start(entry_update_cmd, False, False, 0)
else:
settings["update-indicator-on"] = False

frame.show_all()

Expand Down

0 comments on commit 389427c

Please sign in to comment.