Archived
1
0
Fork 0

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.
This commit is contained in:
Ludovic Courtès 2015-02-12 23:42:29 +01:00
parent ad3729536a
commit 9c09760a78
2 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -32,9 +32,9 @@
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "git://git.savannah.gnu.org/guix/guix-artwork.git") (url "git://git.savannah.gnu.org/guix/guix-artwork.git")
(commit "94e6111"))) (commit "3236581")))
(sha256 (sha256
(base32 (base32
"0aax85mygpq4lbyn8sriafikyg54yss3lisin6pwkvlvp23a3v1j")))) "0ayg0693agck8zkcxfymph5ccc3y44cdf9i4y0qvxajhac8rkcaj"))))
;;; artwork.scm ends here ;;; artwork.scm ends here

View file

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; 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. ;;; This file is part of GNU Guix.
;;; ;;;
@ -80,13 +80,13 @@
(define %background-image (define %background-image
(grub-image (grub-image
(aspect-ratio 4/3) (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 (define %default-theme
;; Default theme contributed by Felipe López. ;; Default theme contributed by Felipe López.
(grub-theme (grub-theme
(images (list %background-image)) (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 (color-normal '((fg . light-gray) (bg . black))))) ;XXX: #x303030
(define-record-type* <grub-configuration> (define-record-type* <grub-configuration>