summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-02-12 23:42:29 +0100
committerLudovic Courtès <ludo@gnu.org>2015-02-12 23:43:18 +0100
commit9c09760a780d741ce39df984fc30ef728adf4d5b (patch)
treea9227c319d40659a6cd59e2280dcd3c213f7fb3b /gnu
parentad3729536ab4fe233b32017ac889f026a4bad43e (diff)
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')
-rw-r--r--gnu/artwork.scm6
-rw-r--r--gnu/system/grub.scm6
2 files changed, 6 insertions, 6 deletions
diff --git a/gnu/artwork.scm b/gnu/artwork.scm
index d14fda44bd6..155865f44af 100644
--- a/gnu/artwork.scm
+++ b/gnu/artwork.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
3;;; 3;;;
4;;; This file is part of GNU Guix. 4;;; This file is part of GNU Guix.
5;;; 5;;;
@@ -32,9 +32,9 @@
32 (method git-fetch) 32 (method git-fetch)
33 (uri (git-reference 33 (uri (git-reference
34 (url "git://git.savannah.gnu.org/guix/guix-artwork.git") 34 (url "git://git.savannah.gnu.org/guix/guix-artwork.git")
35 (commit "94e6111"))) 35 (commit "3236581")))
36 (sha256 36 (sha256
37 (base32 37 (base32
38 "0aax85mygpq4lbyn8sriafikyg54yss3lisin6pwkvlvp23a3v1j")))) 38 "0ayg0693agck8zkcxfymph5ccc3y44cdf9i4y0qvxajhac8rkcaj"))))
39 39
40;;; artwork.scm ends here 40;;; artwork.scm ends here
diff --git a/gnu/system/grub.scm b/gnu/system/grub.scm
index ecffee3112d..17b08aa9b71 100644
--- a/gnu/system/grub.scm
+++ b/gnu/system/grub.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
3;;; 3;;;
4;;; This file is part of GNU Guix. 4;;; This file is part of GNU Guix.
5;;; 5;;;
@@ -80,13 +80,13 @@
80(define %background-image 80(define %background-image
81 (grub-image 81 (grub-image
82 (aspect-ratio 4/3) 82 (aspect-ratio 4/3)
83 (file #~(string-append #$%artwork-repository "/grub/guix-4-3.svg")))) 83 (file #~(string-append #$%artwork-repository "/grub/GuixSD-4-3.svg"))))
84 84
85(define %default-theme 85(define %default-theme
86 ;; Default theme contributed by Felipe López. 86 ;; Default theme contributed by Felipe López.
87 (grub-theme 87 (grub-theme
88 (images (list %background-image)) 88 (images (list %background-image))
89 (color-highlight '((fg . cyan) (bg . black))) ;XXX: fg should be #x3bb7f5 89 (color-highlight '((fg . yellow) (bg . black)))
90 (color-normal '((fg . light-gray) (bg . black))))) ;XXX: #x303030 90 (color-normal '((fg . light-gray) (bg . black))))) ;XXX: #x303030
91 91
92(define-record-type* <grub-configuration> 92(define-record-type* <grub-configuration>