config: increase default anr_missed_pings value
ref https://github.com/hyprwm/Hyprland/discussions/11884
This commit is contained in:
parent
13648d196a
commit
378438ffe7
2 changed files with 2 additions and 2 deletions
|
|
@ -1319,7 +1319,7 @@ inline static const std::vector<SConfigOptionDescription> CONFIG_OPTIONS = {
|
|||
.value = "misc:anr_missed_pings",
|
||||
.description = "number of missed pings before showing the ANR dialog",
|
||||
.type = CONFIG_OPTION_INT,
|
||||
.data = SConfigOptionDescription::SRangeData{1, 1, 10},
|
||||
.data = SConfigOptionDescription::SRangeData{5, 1, 20},
|
||||
},
|
||||
SConfigOptionDescription{
|
||||
.value = "misc:screencopy_force_8b",
|
||||
|
|
|
|||
|
|
@ -519,7 +519,7 @@ CConfigManager::CConfigManager() {
|
|||
registerConfigVar("misc:disable_hyprland_qtutils_check", Hyprlang::INT{0});
|
||||
registerConfigVar("misc:lockdead_screen_delay", Hyprlang::INT{1000});
|
||||
registerConfigVar("misc:enable_anr_dialog", Hyprlang::INT{1});
|
||||
registerConfigVar("misc:anr_missed_pings", Hyprlang::INT{1});
|
||||
registerConfigVar("misc:anr_missed_pings", Hyprlang::INT{5});
|
||||
registerConfigVar("misc:screencopy_force_8b", Hyprlang::INT{1});
|
||||
registerConfigVar("misc:disable_scale_notification", Hyprlang::INT{0});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue