[Bug 1831587] Re: brightness control not work with OLED panel

2020-02-03 Thread Adam Dyess
There does appear to be a work around here:

https://wiki.archlinux.org/index.php/HP_Spectre_x360_13-4231ng#Brightness_/_backlight

It requires bc and inotify-tools.

The workaround is for a long running program to listen for changes to
/sys/class/backlight/intel_backlight

calculate the right luminance value

write them to xrandr.

Here's a slight improvement to the suggested script:


#!/bin/bash
#-
# /usr/local/bin/brightness
# be sure this file is executable
#-

backlight_path=/sys/class/backlight/intel_backlight
device=`xrandr | grep -w connected | awk '{ print $1 }'`

luminance() {
read -r level < "$backlight_path"/actual_brightness
bc <<< "scale=10;$level/$max"
}

read -r max < "$backlight_path"/max_brightness
xrandr --output "$device" --brightness "$(luminance)"

inotifywait -me modify --format '' "$backlight_path"/actual_brightness | while 
read; do
echo "$device" $(luminance)
xrandr --output "$device" --brightness "$(luminance)"
done

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

Title:
  brightness control not work with OLED panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1831587/+subscriptions

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

[Bug 1831587] Re: brightness control not work with OLED panel

2020-02-08 Thread Adam Dyess
An even better script so that all connected displays have their
brightness adjusted


#!/bin/bash
#-
# /usr/local/bin/brightness
# be sure this file is executable
#-

backlight_path=/sys/class/backlight/intel_backlight

luminance() {
read -r level < "$backlight_path"/actual_brightness
bc <<< "scale=10;$level/$max"
}

devices() {
xrandr | grep -w connected | awk '{ print $1 }'
}

apply() {
for device in $(devices)
do
echo "$device" "$1"
xrandr --output "$device" --brightness "$1"
done
}

read -r max < "$backlight_path"/max_brightness
apply "$(luminance)"

inotifywait -me modify --format '' "$backlight_path"/actual_brightness | while 
read; do
apply "$(luminance)"
done

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

Title:
  brightness control not work with OLED panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1831587/+subscriptions

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

[Bug 1874925] Re: Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

2020-04-28 Thread Adam Dyess
Triumph is ours!  My internal mic is working and can record audio.  It's
like a have an actual laptop without having to lug around another mic!
Hooray

I found two files in /etc/modprobe.d that were turning off the
dmic_detect.

➜ egrep -r dmic /etc/modprobe.d
/etc/modprobe.d/alsa-intel-dmic.conf:#options snd_hda_intel dmic_detect=0
/etc/modprobe.d/intel-audio-fix.conf:#options snd-hda-intel dmic_detect=0


** Attachment added: "really_no_dmic"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+attachment/5362443/+files/really_no_dmic

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

Title:
  Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+subscriptions

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

[Bug 1874925] [NEW] Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

2020-04-24 Thread Adam Dyess
Public bug reported:

Internal Microphone doesn't show up as an audio source.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 5.4.0-26.30-generic 5.4.30
Uname: Linux 5.4.0-26-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC2:  addyess   106482 F pulseaudio
 /dev/snd/controlC1:  addyess   106482 F pulseaudio
 /dev/snd/controlC0:  addyess   106482 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: Budgie:GNOME
Date: Fri Apr 24 16:56:54 2020
InstallationDate: Installed on 2019-11-05 (171 days ago)
InstallationMedia: Ubuntu-Budgie 19.10 "Eoan Ermine" - Release amd64 (20191017)
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Title: PCI/internal sound card not detected
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/25/2019
dmi.bios.vendor: AMI
dmi.bios.version: F.10
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 863F
dmi.board.vendor: HP
dmi.board.version: 54.13
dmi.chassis.type: 31
dmi.chassis.vendor: HP
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAMI:bvrF.10:bd07/25/2019:svnHP:pnHPSpectrex360Convertible15-df0xxx:pvr:rvnHP:rn863F:rvr54.13:cvnHP:ct31:cvrChassisVersion:
dmi.product.family: 103C_5335KV HP Spectre
dmi.product.name: HP Spectre x360 Convertible 15-df0xxx
dmi.product.sku: 8LK66UA#ABA
dmi.sys.vendor: HP

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug focal

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

Title:
  Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+subscriptions

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

[Bug 1874925] Re: Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

2020-04-24 Thread Adam Dyess
full hardware profile: https://linux-
hardware.org/index.php?probe=c17da47049

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

Title:
  Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+subscriptions

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

[Bug 1874925] Re: Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

2020-04-27 Thread Adam Dyess
and this is dmesg with the dmic_setting

** Attachment added: "with_dmic_setting"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+attachment/5362180/+files/with_dmic_setting

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

Title:
  Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+subscriptions

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

[Bug 1874925] Re: Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

2020-04-27 Thread Adam Dyess
Maybe it's the "HP Wide Vision FHD Camera" which should be treated as a
camera and microphone?  i see it register with uvcvideo in both.

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

Title:
  Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+subscriptions

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

[Bug 1874925] Re: Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

2020-04-27 Thread Adam Dyess
OK, Let's see if this helps you narrow it down.  This file is with
dmic_setting=0 removed from the grub cmdline

** Attachment added: "no_dmic_setting"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+attachment/5362179/+files/no_dmic_setting

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

Title:
  Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+subscriptions

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

[Bug 1874925] Re: Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

2020-04-27 Thread Adam Dyess
hmm... it says that same message here

snd-intel-dspcfg.dsp_driver=1 is set in the command line.  But later on
it says i should pass that option.

** Attachment added: "with_dspcfg.dsp_driver=1"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+attachment/5362187/+files/with_dspcfg.dsp_driver%3D1

** Bug watch added: Linux Kernel Bug Tracker #205959
   https://bugzilla.kernel.org/show_bug.cgi?id=205959

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

Title:
  Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+subscriptions

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

[Bug 1874925] Re: Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

2020-04-27 Thread Adam Dyess
Looking at this: https://bugzilla.kernel.org/show_bug.cgi?id=205959 i tried 
editing the 
/etc/modprobe.d/alsa.conf to have the option... restarted... same output

** Attachment added: "alsa.conf_options"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+attachment/5362188/+files/alsa.conf_options

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

Title:
  Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+subscriptions

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

[Bug 1874925] Re: Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

2020-04-26 Thread Adam Dyess
Thanks... that at least lets them show up in gnome.. but my internal
audio array isn't an option.  If i plugin an analog mic it works though.
Just the realtek audio array doesn't work

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

Title:
  Comet Lake PCH-LP cAVS (Audio, Voice, Speech)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1874925/+subscriptions

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

[Bug 1915194] Re: No administrative way to delete an instance in state 'soft-delete'

2021-02-09 Thread Adam Dyess
** Also affects: python-openstackclient (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: charm-nova-compute

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

Title:
  No administrative way to delete an instance in state 'soft-delete'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-openstackclient/+bug/1915194/+subscriptions

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

[Bug 1915194] Re: No administrative way to delete an instance in state 'soft-delete'

2021-02-10 Thread Adam Dyess
workaround:

$ nova force-delete 

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

Title:
  No administrative way to delete an instance in state 'soft-delete'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-openstackclient/+bug/1915194/+subscriptions

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

[Bug 1922077] Re: openstack floating ip unset: error: unrecognized arguments:

2021-03-31 Thread Adam Dyess
On closer inspection the docs make it clear that 'unset' doesn't need a
port-id specified.  This bug can be withdrawn

https://docs.openstack.org/python-openstackclient/pike/cli/command-objects/floating-ip.html
> floating ip unset¶
> Unset floating IP Properties

> openstack floating ip unset
>--port
>   

> --port¶
> Disassociate any port associated with the floating IP

> 
> Floating IP to disassociate (IP address or ID)

** Changed in: python-neutronclient (Ubuntu)
   Status: New => Invalid

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

Title:
  openstack floating ip unset: error: unrecognized arguments:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-neutronclient/+bug/1922077/+subscriptions

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

[Bug 1259760] Re: Spice console isn't working when ssl_only=True is set

2021-03-11 Thread Adam Dyess
We have updated to this version 0.1.7-2ubuntu1~cloud0 like so
  sudo add-apt-repository cloud-archive:queens-proposed
  # (press enter to accept the repository)
  sudo apt-get update
  sudo apt-get install spice-html5
  sudo systemctl restart nova-spiceproxy.service
  sudo rm /etc/apt/sources.list.d/cloudarchive-queens-proposed.list
  sudo apt-get update
  
$dpkg -l spice-html
  0.1.7-2ubuntu1~cloud0


this successfully address the issue

** Tags removed: verification-queens-needed
** Tags added: verification-queens-done

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

Title:
  Spice console isn't working when ssl_only=True is set

To manage notifications about this bug go to:
https://bugs.launchpad.net/charm-nova-cloud-controller/+bug/1259760/+subscriptions

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

[Bug 1916715] Re: fails on install due to systemd-service/sysv-service mismatch and lack of mkdir

2021-03-05 Thread Adam Dyess
This change didn't work for me in bionic
because of this:


/lib/systemd/system/rtslib-fb-targetctl.service:9: Executable path is not 
absolute: mkdir -p /etc/rtslib-fb-target


i had to change this:
ExecStart=mkdir -p /etc/rtslib-fb-target

to this:
ExecStart=/bin/mkdir -p /etc/rtslib-fb-target

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

Title:
  fails on install due to systemd-service/sysv-service mismatch and lack
  of mkdir

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-rtslib-fb/+bug/1916715/+subscriptions

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

[Bug 1972812] Re: The operating system does not ask for a password after unlocking the screen.

2022-05-12 Thread Adam Dyess
I removed one of the extensions i was using, but still am running into
the issue.

1) I've got a crash report that still fails to upload.
```
-rw-r-  1 addyess  whoopsie 94220558 May 12 08:03 
_usr_bin_gnome-shell.1000.crash
-rw-rw-r--  1 addyess  whoopsie0 May 12 08:03 
_usr_bin_gnome-shell.1000.upload
-rw---  1 whoopsie whoopsie   37 May 11 07:52 
_usr_bin_gnome-shell.1000.uploaded
```

2) I see quite a few error reports from this machine
https://errors.ubuntu.com/user/8eaca27982a15b33b4b9f42f3dd0ebec1c722ebd7e4b75d5295113bbfa5dd75eac97ca19154d1c2f29debc0c302aeb5336a5dcb48526688b9f300d1f844ae3e6

3) Applying workaround from 993921 and its uploading the latest report
now.

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

Title:
  The operating system does not ask for a password after unlocking the
  screen.

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


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

[Bug 1972812] Re: The operating system does not ask for a password after unlocking the screen.

2022-05-12 Thread Adam Dyess
Still having upload trouble, i'll find a way to get a crash-report
through another means

** Attachment added: "upload failure crash report"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1972812/+attachment/5589244/+files/Screenshot%20from%202022-05-12%2008-47-13.png

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

Title:
  The operating system does not ask for a password after unlocking the
  screen.

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


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

[Bug 1972812] Re: gnome-shell (X11, nvidia-390) crashes with SIGSEGV when unlocking the screen

2022-05-16 Thread Adam Dyess
Finally got the crashdump uploaded but had to add all the details to a
new ticket: LP#1973615

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

Title:
  gnome-shell (X11, nvidia-390) crashes with SIGSEGV when unlocking the
  screen

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


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

[Bug 1972812] Re: The operating system does not ask for a password after unlocking the screen.

2022-05-11 Thread Adam Dyess
This happens to me as well. These are the loaded extensions.


~/.local/share/gnome-shell/extensions
❯ /usr/bin/cat **/metadata.json
{
  "_generated": "Generated by SweetTooth, do not edit",
  "description": "A human-readable clock for the gnome-shell panel",
  "name": "Fuzzy Clock",
  "shell-version": [
"3.34",
"3.36",
"3.38",
"40.0",
"41.0",
"42.0"
  ],
  "url": "https://github.com/dallagi/gnome-shell-fuzzy-clock;,
  "uuid": "Fuzzy_Clock@dallagi",
  "version": 9
}
{
  "_generated": "Generated by SweetTooth, do not edit",
  "description": "The cat tells you the CPU usage by running speed",
  "name": "RunCat",
  "shell-version": [
"3.38",
"40",
"41",
"42"
  ],
  "url": "https://github.com/win0err/gnome-runcat;,
  "uuid": "run...@kolesnikov.se",
  "version": 18
}%

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

Title:
  The operating system does not ask for a password after unlocking the
  screen.

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


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

[Bug 1972812] Re: The operating system does not ask for a password after unlocking the screen.

2022-05-11 Thread Adam Dyess
Another "side-effect" of this event is that the screen will instantly go
black after 30 idle seconds (it doesn't dim to black or use my normal
screen blank at 3 min inactivity setting).  This "side-effect" goes away
if I log-out of the gnome session and then back in again.

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

Title:
  The operating system does not ask for a password after unlocking the
  screen.

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


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

[Bug 1972812] Re: The operating system does not ask for a password after unlocking the screen.

2022-05-11 Thread Adam Dyess
I have a crash report for gnome-shell as well -- but i can't seem to get
it uploaded to launchpad at the moment

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

Title:
  The operating system does not ask for a password after unlocking the
  screen.

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


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