diff --git a/CHANGELOG.md b/CHANGELOG.md
index ea89e31c..8f53b609 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -32,6 +32,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
+
+ - the default value for `suggestions.by_type` is now `20`.
### Fixes
- Arch
diff --git a/README.md b/README.md
index 555daf4c..c07c4a51 100644
--- a/README.md
+++ b/README.md
@@ -416,7 +416,7 @@ memory_cache:
data_expiration: 3600 # the interval in SECONDS that data cached in memory will live
icon_expiration: 300 # the interval in SECONDS that icons cached in memory will live
suggestions:
- by_type: 10 # the maximum number of application suggestions that must be retrieved per type
+ by_type: 20 # the maximum number of application suggestions that must be retrieved per type
enabled: true # if suggestions must be displayed when no application is installed
system:
notifications: true # if system popup should be displayed for some events. e.g: when there are updates, bauh will display a system popup
diff --git a/bauh/view/core/config.py b/bauh/view/core/config.py
index 0b8a8ea0..2db395a8 100644
--- a/bauh/view/core/config.py
+++ b/bauh/view/core/config.py
@@ -30,7 +30,7 @@ class CoreConfigManager(YAMLConfigManager):
},
'suggestions': {
'enabled': True,
- 'by_type': 10
+ 'by_type': 20
},
'ui': {
'table': {