system: grub: Use a bigger background image.
authorLudovic Courtès <ludo@gnu.org>
Sun, 1 Nov 2015 21:29:53 +0000 (22:29 +0100)
committerLudovic Courtès <ludo@gnu.org>
Mon, 2 Nov 2015 08:54:21 +0000 (09:54 +0100)
* gnu/system/grub.scm (grub-background-image): Increase the default
  values of WIDTH and HEIGHT.  After all, it's 2015 already!

gnu/system/grub.scm

index 4c21851..5b82482 100644 (file)
                          (system* (string-append #$imagemagick "/bin/convert")
                                   "-resize" #$size #$image #$output)))))
 
-(define* (grub-background-image config #:key (width 640) (height 480))
+(define* (grub-background-image config #:key (width 1024) (height 768))
   "Return the GRUB background image defined in CONFIG with a ratio of
 WIDTH/HEIGHT, or #f if none was found."
   (let* ((ratio (/ width height))