unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: swedebugia@riseup.net
To: 32222@debbugs.gnu.org
Subject: bug#32222: Workrave is not found by xfce4 run-program dialog nor xfce4-appfinder after install & reboot
Date: Fri, 20 Jul 2018 06:33:11 -0700	[thread overview]
Message-ID: <a39f7d0e920928f204232f6dd24ede4b@riseup.net> (raw)

[-- Attachment #1: Type: text/plain, Size: 133 bytes --]

launch from terminal works fine.

my config.scm is attached

workrave is installed in the user profile of sdb1

-- 
Cheers
Swedebugia

[-- Attachment #2: config14.scm --]
[-- Type: text/plain, Size: 3028 bytes --]

;; sdb config.scm

(use-modules  (gnu)
	      (gnu services base)           ; guix-service-type and -configuration?
	      (gnu system file-systems)     ; file-system-label
	      (gnu system nss)              ; nss
	      (guix store))                 ; 
(use-service-modules base
		     desktop                ; xfce
		     pm                     ; tlp
		     xorg
		     shepherd)              ; guix-servicy-type =>
                                            ; shepherd-root-service-type
(use-package-modules certs                  ; nss
		     gnome                  ; gvfs
		     xfce
		     admin)                 ; for shepherd

(operating-system
 (host-name "antelope")
 (timezone "Europe/Paris")
 (locale "sv_SE.utf8")

 ;; Assuming /dev/sda is the target hard disk, and "my-root"
 ;; is the label of the target root file system.
 (bootloader (bootloader-configuration
              (bootloader grub-bootloader)
              (target "/dev/sda")
	      ;; Default to Ubuntu
	      (default-entry 1)
	      ;; Dual-boot entry
	      (menu-entries
	       (list
	       (menu-entry
	        (label "Ubuntu 16.04")
	        (linux "/boot/vmlinuz-4.4.0-128-generic")
	        (linux-arguments '("root=/dev/sda5"))
	        (initrd "/boot/initrd.img-4.4.0-128-generic"))))))

 (file-systems (cons* (file-system
                      (device (file-system-label "my-root"))
                      (mount-point "/")
                      (type "ext4"))
                     %base-file-systems))

 (users (cons* (user-account
               (name "sdb")
               (comment "Alice's brother")
               (group "users")
               (supplementary-groups '("wheel" "netdev"
                                       "audio" "video"))
               (home-directory "/home/sdb"))
	      (user-account
               (name "sdb1")
               (comment "Alice's brother")
               (group "users")
               (supplementary-groups '("wheel" "netdev"
                                       "audio" "video"))
               (home-directory "/home/sdb1"))
              %base-user-accounts))

 ;; This is where we specify system-wide packages.
 (packages (cons* nss-certs         ;for HTTPS access
                  gvfs              ;for user mounts
                  %base-packages))
 ;; Services
 (services 
  (cons*
   (console-keymap-service "sv-latin1")
   (xfce-desktop-service)
   (service tlp-service-type
            (tlp-configuration
	     (cpu-scaling-governor-on-ac '("conservative"))))
   (modify-services %desktop-services
   		    (guix-service-type config =>
   				       (guix-configuration
   					(inherit config)
   					;; Key is not needed. berlin.guixsd.org.pub
   					;; is in the list by default
   					(substitute-urls
   					 (cons*
   					  ;; "https://cuirass.lassieur.org"
   					  "https://mirror.hydra.gnu.org"
   					  ;; "https://bayfront.guixsd.org"
   					  "https://berlin.guixsd.org"
					  %default-substitute-urls)))))
   )
  )

 ;; closing operating-system 
 )
 

                 reply	other threads:[~2018-07-20 13:34 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a39f7d0e920928f204232f6dd24ede4b@riseup.net \
    --to=swedebugia@riseup.net \
    --cc=32222@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).