diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-02-12 23:42:29 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-02-12 23:43:18 +0100 |
commit | 9c09760a780d741ce39df984fc30ef728adf4d5b (patch) | |
tree | a9227c319d40659a6cd59e2280dcd3c213f7fb3b /gnu/system/grub.scm | |
parent | ad3729536ab4fe233b32017ac889f026a4bad43e (diff) | |
download | patches-9c09760a780d741ce39df984fc30ef728adf4d5b.tar patches-9c09760a780d741ce39df984fc30ef728adf4d5b.tar.gz |
artwork: Update snapshot to GuixSD branding.
* gnu/artwork.scm (%artwork-repository): Update to new "GuixSD"
branding.
* gnu/system/grub.scm (%background-image, %default-theme): Adjust
accordingly.
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 <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> ;;; ;;; 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> |