guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [ART] Updated SLiM theme with GuixSD logo


From: 白い熊@相撲道
Subject: Re: [ART] Updated SLiM theme with GuixSD logo
Date: Mon, 16 Mar 2015 23:31:00 +0100
User-agent: Roundcube Webmail/0.9.2

On 2015-03-16 21:40, address@hidden wrote:
Hmm could you post your config file?

(use-modules (gnu)
             (gnu packages)
             (gnu system)
             (guix)
             (guix git-download))
(use-service-modules xorg networking dbus avahi)
(use-package-modules avahi ratpoison wicd xfce)

(define %old-artwork
  (origin
    (method git-fetch)
    (uri (git-reference
          (url "git://git.savannah.gnu.org/guix/guix-artwork.git")
          (commit "3236581")))  ;pre-GuixSD branding
    (sha256
     (base32
      "0ayg0693agck8zkcxfymph5ccc3y44cdf9i4y0qvxajhac8rkcaj"))))
(define %old-slim-theme
  #~(string-append #$%old-artwork "/slim"))
(define %old-slim-theme-name
  "0.8")

(operating-system
  (host-name "xxxx")
  (timezone "Europe/Prague")
  (locale "en_US.UTF-8")
  (bootloader (grub-configuration (device "/dev/sda")))
  (file-systems (cons (file-system
                        (device "xxxx")
                        (title 'label)
                        (mount-point "/")
                        (type "ext4"))
                      %base-file-systems))
 (swap-devices '("/dev/sda2"))
 (users (list (user-account
                (name "xxxx")
                (comment "xxxx")
                (group "users")
                (supplementary-groups '("wheel"
                                        "audio" "video"))
                (home-directory "/home/xxxx"))))
  (packages (cons* ratpoison xfce %base-packages))

  (services (cons* (slim-service #:theme %old-slim-theme
                                 #:theme-name %old-slim-theme-name)
                   (wicd-service)
                   (dbus-service (list wicd))
                   (avahi-service)
                   %base-services)))

You could check what theme would be used by looking at the directory
returned by this command:
  guix gc -R $(guix system build config.scm) |grep git-checkout

Yes, it's referring to the wrong git-checkout dir in the store, the one with the GuixSD panel. Wrong commit number?
--
白い熊@相撲道



reply via email to

[Prev in Thread] Current Thread [Next in Thread]