unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#70103: GNOME 44: Settings application crashes if Multitasking tab is opened
@ 2024-03-31  7:54 Abhiseck Paira
  0 siblings, 0 replies; only message in thread
From: Abhiseck Paira @ 2024-03-31  7:54 UTC (permalink / raw)
  To: 70103; +Cc: Liliana Marie Prikler

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

Hi,

I have just upgraded my Guix System to GNOME 44, here's the guix
describe: 

--8<---------------cut here---------------start------------->8---

$ guix describe
Generation 82	Mar 31 2024 10:01:38	(current)
  guix f5558ee
    repository URL: https://git.savannah.gnu.org/git/guix.git
    branch: master
    commit: f5558ee0cc1a11a8b61d3f4d43f05dd79d53ac77
  stfh-packages df2c76b
    repository URL: https://codeberg.org/Red_Starfish/stfh-guix-channel.git
    branch: master
    commit: df2c76b3567b9c2e3c9ab9314a5d295257e0be87
  flat b62ba32
    repository URL: https://github.com/flatwhatson/guix-channel.git
    branch: master
    commit: b62ba3214ed0f781e2d6015044ae8a4a1bd5c7d7

--8<---------------cut here---------------end--------------->8---

Now, when I open Settings application and then open the "multitasking"
tab or "Keyboard & Touchpad" tab, the settings application crashes.
Next, if I try to open it again, try to change the background image,
or anything that ultimately opens settings application again, it
wouldn't open anymore.

The only way I could open the settings app again is to go back to the
previous generation (which has GNOME 42) using the grub menu, start
the settings app (this time it will open), select some other tab like
"About" and reboot again to latest generation running GNOME 44.

-- 
Abhiseck Paira (https://paira.in)
"Over himself, over his own body and mind, the individual is sovereign."


[-- Attachment #2: my config.scm file --]
[-- Type: text/plain, Size: 3045 bytes --]

;; This is an operating system configuration generated
;; by the graphical installer.

(use-modules (gnu))
(use-modules (gnu packages linux)  ; ntfs-3g
             (gnu packages freedesktop)) ;udiskie
;; (use-modules (gnu packages wm)
;; 	     (gnu packages terminals)
;; 	     (gnu packages suckless) ;;dmenu
;; 	     (gnu packages linux) ;; pipewire
;; 	     (gnu packages xdisorg) ;; wofi
;; 	     (gnu packages lxde)
;; 	     (gnu packages pulseaudio)
;; 	     (gnu packages dunst))
(use-service-modules desktop networking ssh xorg)

(define %my-desktop-services
  (modify-services
   %desktop-services
   (gdm-service-type config =>
                     (gdm-configuration
                      (inherit config)
                      (auto-login? #t)
                      (default-user "starfish")
                      (wayland? #t)))))

(operating-system
 (kernel linux-libre-lts)
 (locale "en_IN.utf8")
 (timezone "Asia/Kolkata")
 (keyboard-layout (keyboard-layout "us"))
 (host-name "pandora")
 (users
  (append
   (list
    (user-account
     (name "starfish")
     (comment "Starfish")
     (group "users")
     (home-directory "/home/starfish")
     (supplementary-groups
      '("wheel" "netdev" "audio" "video" "kvm")))
    (user-account
     (name "guest")
     (comment "Guest account")
     (group "users")
     (home-directory "/home/guest")
     (supplementary-groups
      '("netdev" "audio" "video"))))
   %base-user-accounts))
 ;; (users (cons* (user-account
 ;;                (name "starfish")
 ;;                (comment "Starfish")
 ;;                (group "users")
 ;;                (home-directory "/home/starfish")
 ;;                (supplementary-groups
 ;;                 '("wheel" "netdev" "audio" "video" "kvm")))
 ;;               %base-user-accounts))
 (packages
  (append
   (list (specification->package "nss-certs")
         ntfs-3g
         udiskie)
   %base-packages))
 (services
  (append
   (list
    (service tor-service-type
	     (tor-configuration
	      (control-socket? #t)))
    (service gnome-desktop-service-type)
    (set-xorg-configuration
     (xorg-configuration
      (keyboard-layout keyboard-layout))))
   %my-desktop-services))
 (bootloader
  (bootloader-configuration
   (bootloader grub-bootloader)
   (targets '("/dev/sda"))
   (keyboard-layout keyboard-layout)))
 (mapped-devices
  (list (mapped-device
         (source
          (uuid "ad5b2362-59be-47c0-b627-f58218a9c547"))
         (target "cryptroot")
         (type luks-device-mapping))
        (mapped-device
         (source
          (uuid "836f4150-b51c-4687-a941-24ebb5862278"))
         (target "crypthome")
         (type luks-device-mapping))))
 (file-systems
  (cons* (file-system
          (mount-point "/")
          (device "/dev/mapper/cryptroot")
          (type "ext4")
          (dependencies mapped-devices))
         (file-system
          (mount-point "/home")
          (device "/dev/mapper/crypthome")
          (type "ext4")
          (dependencies mapped-devices))
         %base-file-systems)))

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

only message in thread, other threads:[~2024-03-31 11:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-31  7:54 bug#70103: GNOME 44: Settings application crashes if Multitasking tab is opened Abhiseck Paira

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