diff options
author | Leah Rowe <leah@libreboot.org> | 2021-10-30 18:23:18 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2021-10-30 18:23:18 +0100 |
commit | 4e093b3eccb6e44f8be074752371251194577327 (patch) | |
tree | 6e9c5fd2bcd6699b92f5554671eb83f386c022f7 /resources/grub | |
parent | ad87e84ae18c5541cf84c2ff4b3218a054ab4fbe (diff) |
grub.cfg: increase default timeout to 10 seconds
this is a compromise. i was going to do 30 for desktops, 1 for laptops.
however, some laptop users complain about the 1 second timeout being too fast.
10 seconds should just about please everyone.
Diffstat (limited to 'resources/grub')
-rw-r--r-- | resources/grub/config/grub.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/grub/config/grub.cfg b/resources/grub/config/grub.cfg index c9232c3b..b4d222cb 100644 --- a/resources/grub/config/grub.cfg +++ b/resources/grub/config/grub.cfg @@ -25,7 +25,7 @@ terminal_output --append gfxterm # Default to first option, automatically boot after 1 second set default="0" -set timeout=1 +set timeout=10 # This is useful when using 'cat' on long files on GRUB terminal set pager=1 |