diff options
author | Ludovic Courtès <[email protected]> | 2015-02-26 22:37:12 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2015-02-26 22:37:12 +0100 |
commit | 93be4e8e6c6b82a5825b56cce991563bf19aaaf2 (patch) | |
tree | 2b48c1c88f046ee6e1d59636d1f6e8fbbd1660c2 /gnu/system/grub.scm | |
parent | a068dba78bde9c83a69c755df1131c286d065850 (diff) | |
parent | e1509174957bd9eba777bec86ea290fb44a4bce3 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/system/grub.scm')
-rw-r--r-- | gnu/system/grub.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/system/grub.scm b/gnu/system/grub.scm index ecffee3112..17b08aa9b7 100644 --- a/gnu/system/grub.scm +++ b/gnu/system/grub.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014 Ludovic Courtès <[email protected]> +;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -80,13 +80,13 @@ (define %background-image (grub-image (aspect-ratio 4/3) - (file #~(string-append #$%artwork-repository "/grub/guix-4-3.svg")))) + (file #~(string-append #$%artwork-repository "/grub/GuixSD-4-3.svg")))) (define %default-theme ;; Default theme contributed by Felipe López. (grub-theme (images (list %background-image)) - (color-highlight '((fg . cyan) (bg . black))) ;XXX: fg should be #x3bb7f5 + (color-highlight '((fg . yellow) (bg . black))) (color-normal '((fg . light-gray) (bg . black))))) ;XXX: #x303030 (define-record-type* <grub-configuration> |