unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#32222: Workrave is not found by xfce4 run-program dialog nor xfce4-appfinder after install & reboot
@ 2018-07-20 13:33 swedebugia
  0 siblings, 0 replies; only message in thread
From: swedebugia @ 2018-07-20 13:33 UTC (permalink / raw)
  To: 32222

[-- 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 
 )
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-07-20 13:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-20 13:33 bug#32222: Workrave is not found by xfce4 run-program dialog nor xfce4-appfinder after install & reboot swedebugia

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).