[Bug 2085683] Re: Mouse animations don't show when using gnome-session

2024-12-03 Thread Alessandro Astone
The gst_poll_write_control assert is also just a side-effect of having
too many open fds.

The process has 1024 open fds, most of which being duplicate entries of
~/.cache/mesa_shader_cache_db/**/*

Looks like it's this bug:
https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30988

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/2085683

Title:
  Mouse animations don't show when using gnome-session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2085683/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2085610] Re: gnome-control-center crashes on exit when gtk-theme is not Yaru

2024-12-03 Thread Alessandro Astone
The oracular fix is making gnome-control-center crash in a different way
now:

it spam logs
GStreamer[206763]:CRITICAL: gst_poll_write_control: assertion 'set != NULL' 
failed

apparently leaking fds, because later on it crashes with:

Gdk[209621]:CRITICAL: ../../../gdk/wayland/gdkdisplay-wayland.c:1332: creating 
shared memory file (using memfd_create) failed: Too many open files
Gdk[209621]: ERROR: Unable to create shared memory pool

** Tags removed: verification-needed-oracular
** Tags added: verification-failed-oracular

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/2085610

Title:
  gnome-control-center crashes on exit when gtk-theme is not Yaru

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2085610/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1955850] Re: /etc/X11/Xresources no longer loaded, error in patch

2024-12-03 Thread Nathan Teodosio
** Description changed:

+ Impact
+ --
+ 
+ Files in the /etc/X11/Xresources directory stopped being automatically
+ loaded into the X resource database by GDM.
+ 
+ This typically causes changes in the user interface of multiple
+ programs; There are also parameters for fonts, including sclaing
+ (Xft.dpi) and mouse pointer size (XCursor.size). There is of course no
+ exhaustively listing the impact as each program can use arbitrary
+ entries in the database and alter its behavior as desired, not only
+ limited to the GUI (e.g. XTerm*saveLines).
+ 
+ Test case
+ -
+ 
+ *Install the GDM update from proposed.
+ *Create the file /etc/X11/Xresources/m with the following contents:
+   XTerm*Foreground: white
+   XTerm*Background: darkblue
+ *[This will kill your graphical session in a standard Ubuntu setup] Execute 
'systemctl restart gdm'.
+ *Log in as usual.
+ *Start XTerm.
+ 
+ XTerm launches, has a dark blue background and a white font.
+ 
+ Regression potential
+ 
+ 
+ The main potential here is that files in that directory that were not
+ loaded before (because they did not match a pattern) would now be.
+ 
+ Original report
+ ---
+ 
  After upgrading from 21.04 to 21.10, my /etc/X11/Xresources/ directory
  no longer loads on login.
  
  Looking at the sources, I think this can be traced to:
-  - Switching from a custom Xsession file to the upstream Xsession file in 
3.38.0-1ubuntu1, combined with
-  - An oversight in `debian/patches/ubuntu/xresources_is_a_dir.patch`
+  - Switching from a custom Xsession file to the upstream Xsession file in 
3.38.0-1ubuntu1, combined with
+  - An oversight in `debian/patches/ubuntu/xresources_is_a_dir.patch`
  
  Looking at [that patch](https://salsa.debian.org/gnome-
  
team/gdm/-/blob/ubuntu/master/debian/patches/ubuntu/xresources_is_a_dir.patch),
  it has:
  
  ```diff
  --- a/data/Xsession.in
  +++ b/data/Xsession.in
  @@ -122,6 +122,13 @@ fi
-  
-  if [ -f "$sysresources" ]; then
-  xrdb -nocpp -merge "$sysresources"
+ 
+  if [ -f "$sysresources" ]; then
+  xrdb -nocpp -merge "$sysresources"
  +elif [ -d "$sysresources" ]; then
  +# directory of Xresources files on Debian/Ubuntu
  +for i in `ls "$sysresources"` ; do
  +if [ -r "$sysresources/$i"  -a -f "$sysresources/$i" ] && expr "$i" 
: '^[[:alnum:]_-]\+$' > /dev/null; then
  +xrdb -nocpp -merge "$sysresources/$i"
  +fi
  +done
-  fi
-  
-  if [ -f "$userresources" ]; then
+  fi
+ 
+  if [ -f "$userresources" ]; then
  ```
  
  However, looking a few lines further up in [the original Xsession.in
  file](https://salsa.debian.org/gnome-
  team/gdm/-/blob/ubuntu/master/data/Xsession.in#L97), I see:
  
  ```sh
  if [ -f /etc/X11/Xresources ]; then
- sysresources=/etc/X11/Xresources
+ sysresources=/etc/X11/Xresources
  else
- sysresources=/usr/etc/X11/Xresources
+ sysresources=/usr/etc/X11/Xresources
  fi
  ```
  
  In other words, if `/etc/X11/Xresources` is a directory, the
  `sysresources` variable is never set correctly, so the patch should also
  modify this part of the script.
  
  I have observed this broken behavior on version 41~rc-0ubuntu2, but
  looking at the ubuntu/master branch (as linked above), it still seems
  broken there.
  
  I'm currently testing this patch:
  
  ```diff
  --- Xsession.orig   2021-12-27 22:05:09.038863375 +0100
  +++ Xsession2021-12-27 22:05:33.143057433 +0100
  @@ -111,7 +111,7 @@
-  usermodmap="$HOME/.Xmodmap"
-  userxkbmap="$HOME/.Xkbmap"
-  
+  usermodmap="$HOME/.Xmodmap"
+  userxkbmap="$HOME/.Xkbmap"
+ 
  -if [ -f /etc/X11/Xresources ]; then
  +if [ -e /etc/X11/Xresources ]; then
-  sysresources=/etc/X11/Xresources
-  else
-  sysresources=/usr/etc/X11/Xresources
+  sysresources=/etc/X11/Xresources
+  else
+  sysresources=/usr/etc/X11/Xresources
  ```
  
  I don't know if it works yet, since I need to log out for that, and
  close my browser, so need to submit this report first ;-)
  
  ```
  $ lsb_release -rd
  Description:Ubuntu 21.10
  Release:21.10
  $ apt-cache policy gdm3
  gdm3:
-   Installed: 41~rc-0ubuntu2
-   Candidate: 41~rc-0ubuntu2
-   Version table:
-  *** 41~rc-0ubuntu2 500
- 500 http://nl.archive.ubuntu.com/ubuntu impish/main amd64 Packages
- 100 /var/lib/dpkg/status
+   Installed: 41~rc-0ubuntu2
+   Candidate: 41~rc-0ubuntu2
+   Version table:
+  *** 41~rc-0ubuntu2 500
+ 500 http://nl.archive.ubuntu.com/ubuntu impish/main amd64 Packages
+ 100 /var/lib/dpkg/status
  ```

** Changed in: gdm3 (Ubuntu Noble)
   Importance: Undecided => Low

** Changed in: gdm3 (Ubuntu Oracular)
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm3 in Ubuntu.
https://bugs.launchpad.net/bugs/1955850

Title:
  /etc/X11/Xresources no longer loaded, error in patch

To manage notifications about this bug go to:
https://b

[Bug 2085683] Re: Mouse animations don't show when using gnome-session

2024-12-03 Thread Alessandro Astone
The bug is fixed, but gnome-control-center is broken:

it spam logs
GStreamer[206763]:CRITICAL: gst_poll_write_control: assertion 'set != NULL' 
failed

apparently leaking fds, because later on it crashes with:

Gdk[209621]:CRITICAL: ../../../gdk/wayland/gdkdisplay-wayland.c:1332: creating 
shared memory file (using memfd_create) failed: Too many open files
Gdk[209621]:   ERROR: Unable to create shared memory pool


** Tags removed: verification-needed verification-needed-oracular
** Tags added: verification-failed verification-failed-oracular

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/2085683

Title:
  Mouse animations don't show when using gnome-session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2085683/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2085683] Re: Mouse animations don't show when using gnome-session

2024-12-03 Thread Alessandro Astone
mesa bug being tracked in in bug 2090934

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/2085683

Title:
  Mouse animations don't show when using gnome-session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2085683/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2089367] Re: [SRU] noble to support Elan fingerprint device 04f3:0c9f

2024-12-03 Thread Alessandro Astone
** Also affects: libfprint (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Changed in: libfprint (Ubuntu)
   Status: New => Fix Released

** Changed in: libfprint (Ubuntu Noble)
 Assignee: (unassigned) => Yao Wei (medicalwei)

** Changed in: libfprint (Ubuntu Noble)
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to libfprint in Ubuntu.
https://bugs.launchpad.net/bugs/2089367

Title:
  [SRU] noble to support Elan fingerprint device 04f3:0c9f

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libfprint/+bug/2089367/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2085683] Re: Mouse animations don't show when using gnome-session

2024-12-03 Thread Alessandro Astone
That only happens with gstreamer1.0-plugins-bad installed, which is
probably why I didn't catch that before

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/2085683

Title:
  Mouse animations don't show when using gnome-session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2085683/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2085610] Re: gnome-control-center crashes on exit when gtk-theme is not Yaru

2024-12-03 Thread Alessandro Astone
It's a mesa bug, tracked in bug 2090934

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/2085610

Title:
  gnome-control-center crashes on exit when gtk-theme is not Yaru

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2085610/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2083841] Re: Notifications contain HTML formatting

2024-12-03 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: rhythmbox (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in Ubuntu.
https://bugs.launchpad.net/bugs/2083841

Title:
  Notifications contain HTML formatting

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/2083841/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1971434] Re: Display powersave only blanks, but does not turn off

2024-12-03 Thread John Milligan Airey
For one of my two new 24.04 machines, the connection is from hdmi out
through a dvi adaptor to an older monitor. that machine has no problem
with fully blanking the monitor. maybe it is some sort of hdmi audio
handshake that results in waking up the new IPS monitors and ends with
them having their backlights lit?

The only display port connections I have are USB-C, so I would need a
usb-c to full size display port adapter or cable, which I do not have on
hand.

But I will try this:
https://askubuntu.com/questions/1165209/disable-hdmi-audio-on-ubuntu-studio-19-04
because dvi has no audio, unlike hdmi.
I use an outboard USB DAC and headphone amplifier on both my machines, not the 
HDMI audio.
But I am not going to reboot this machine immediately to test it out.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1971434

Title:
  Display powersave only blanks, but does not turn off

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/1971434/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2084407] Re: Switch from mirror mode to join mode in GUI will make monitor icon overlap with 4k monitor and can not be applied

2024-12-03 Thread ChunAnWu
Also verified on 24.10 with package 1:47.1.1-0ubuntu1 on dell machine

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/2084407

Title:
  Switch from mirror mode to join mode in GUI will make  monitor icon
  overlap with 4k monitor and can not be applied

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/2084407/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2083561] Re: Cannot connect IMAP account via Settings (gnome-control-center)

2024-12-03 Thread Launchpad Bug Tracker
[Expired for gnome-control-center (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: gnome-control-center (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/2083561

Title:
  Cannot connect IMAP account via Settings (gnome-control-center)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2083561/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2049923] Re: gnome-terminal freezing, then crashing

2024-12-03 Thread Matthias Leopold
I hit the same problem. I could reproducibly avoid it on two systems by
de-selecting "use system theme colours" (translated from german UI by
myself)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-terminal in Ubuntu.
https://bugs.launchpad.net/bugs/2049923

Title:
  gnome-terminal freezing, then crashing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/2049923/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 2090984] [NEW] Regex warning while installing gedit

2024-12-03 Thread Vitalii Komisarenko
Public bug reported:

`apt install gedit` gives a regex warning, but installation succeeds.


root@vk-IdeaPad-3-15ITL6:/home/vk# apt install gedit
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  gedit-common gir1.2-amtk-5 gir1.2-gtksource-300 gir1.2-tepl-6 
libgedit-amtk-5-0 libgedit-amtk-5-common libgedit-gtksourceview-300-0 
libgedit-gtksourceview-300-common libtepl-6-4
  libtepl-common python3-gi-cairo
Suggested packages:
  gedit-plugins
The following NEW packages will be installed:
  gedit gedit-common gir1.2-amtk-5 gir1.2-gtksource-300 gir1.2-tepl-6 
libgedit-amtk-5-0 libgedit-amtk-5-common libgedit-gtksourceview-300-0 
libgedit-gtksourceview-300-common
  libtepl-6-4 libtepl-common python3-gi-cairo
0 upgraded, 12 newly installed, 0 to remove and 76 not upgraded.
Need to get 2,574 kB of archives.
After this operation, 17.4 MB of additional disk space will be used.
Do you want to continue? [Y/n] 
Get:1 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 gedit-common all 
46.2-2 [1,480 kB]
Get:2 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 
libgedit-gtksourceview-300-common all 299.0.4-3build1 [282 kB]
Get:3 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 
libgedit-gtksourceview-300-0 amd64 299.0.4-3build1 [224 kB]
Get:4 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 
gir1.2-gtksource-300 amd64 299.0.4-3build1 [19.9 kB]
Get:5 http://be.archive.ubuntu.com/ubuntu noble/main amd64 python3-gi-cairo 
amd64 3.48.2-1 [8,132 B]
Get:6 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 
libgedit-amtk-5-common all 5.8.0-4build2 [23.9 kB]
Get:7 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 
libgedit-amtk-5-0 amd64 5.8.0-4build2 [25.7 kB]
Get:8 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 gir1.2-amtk-5 
amd64 5.8.0-4build2 [5,344 B]
Get:9 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 libtepl-common 
all 6.8.0-2build4 [40.6 kB]
Get:10 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 libtepl-6-4 
amd64 6.8.0-2build4 [94.0 kB]
Get:11 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 gir1.2-tepl-6 
amd64 6.8.0-2build4 [14.2 kB]
Get:12 http://be.archive.ubuntu.com/ubuntu noble/universe amd64 gedit amd64 
46.2-2 [356 kB]
Fetched 2,574 kB in 1s (2,442 kB/s)
Selecting previously unselected package gedit-common.
(Reading database ... 149974 files and directories currently installed.)
Preparing to unpack .../00-gedit-common_46.2-2_all.deb ...
Unpacking gedit-common (46.2-2) ...
Selecting previously unselected package libgedit-gtksourceview-300-common.
Preparing to unpack 
.../01-libgedit-gtksourceview-300-common_299.0.4-3build1_all.deb ...
Unpacking libgedit-gtksourceview-300-common (299.0.4-3build1) ...
Selecting previously unselected package libgedit-gtksourceview-300-0:amd64.
Preparing to unpack 
.../02-libgedit-gtksourceview-300-0_299.0.4-3build1_amd64.deb ...
Unpacking libgedit-gtksourceview-300-0:amd64 (299.0.4-3build1) ...
Selecting previously unselected package gir1.2-gtksource-300:amd64.
Preparing to unpack .../03-gir1.2-gtksource-300_299.0.4-3build1_amd64.deb ...
Unpacking gir1.2-gtksource-300:amd64 (299.0.4-3build1) ...
Selecting previously unselected package python3-gi-cairo.
Preparing to unpack .../04-python3-gi-cairo_3.48.2-1_amd64.deb ...
Unpacking python3-gi-cairo (3.48.2-1) ...
Selecting previously unselected package libgedit-amtk-5-common.
Preparing to unpack .../05-libgedit-amtk-5-common_5.8.0-4build2_all.deb ...
Unpacking libgedit-amtk-5-common (5.8.0-4build2) ...
Selecting previously unselected package libgedit-amtk-5-0:amd64.
Preparing to unpack .../06-libgedit-amtk-5-0_5.8.0-4build2_amd64.deb ...
Unpacking libgedit-amtk-5-0:amd64 (5.8.0-4build2) ...
Selecting previously unselected package gir1.2-amtk-5:amd64.
Preparing to unpack .../07-gir1.2-amtk-5_5.8.0-4build2_amd64.deb ...
Unpacking gir1.2-amtk-5:amd64 (5.8.0-4build2) ...
Selecting previously unselected package libtepl-common.
Preparing to unpack .../08-libtepl-common_6.8.0-2build4_all.deb ...
Unpacking libtepl-common (6.8.0-2build4) ...
Selecting previously unselected package libtepl-6-4:amd64.
Preparing to unpack .../09-libtepl-6-4_6.8.0-2build4_amd64.deb ...
Unpacking libtepl-6-4:amd64 (6.8.0-2build4) ...
Selecting previously unselected package gir1.2-tepl-6:amd64.
Preparing to unpack .../10-gir1.2-tepl-6_6.8.0-2build4_amd64.deb ...
Unpacking gir1.2-tepl-6:amd64 (6.8.0-2build4) ...
Selecting previously unselected package gedit.
Preparing to unpack .../11-gedit_46.2-2_amd64.deb ...
Unpacking gedit (46.2-2) ...
Setting up gedit-common (46.2-2) ...
Setting up libtepl-common (6.8.0-2build4) ...
Setting up libgedit-gtksourceview-300-common (299.0.4-3build1) ...
Setting up libgedit-amtk-5-common (5.8.0-4build2) ...
Setting up libgedit-amtk-5-0:amd64 (5.8.0-4build2) ...
Setting up python3-gi-cairo (3.48.2-1) ...
Setting up libgedit-gtksourceview-300-0:amd64 (299.