Search Linux Wireless

Re: [PATCH] wifi: ath11k: Fix memory reuse logic

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

Thank you for excellent review.

On 4/22/25 7:15 AM, Baochen Qiang wrote:
> 
> 
> On 4/18/2025 8:09 PM, Muhammad Usama Anjum wrote:
>> Firmware requests 2 segments at first. 1st segment is of 6799360 whose
>> allocation fails and we return success to firmware. Then firmware asks
> 
> Host won't fail in case DMA remapping is enabled. Better to rephrase to make it clear that
> the big segment allocation fails in case DMA remapping is not working, usually due to
> IOMMU not present or any necessary kernel config not enabled.
IOMMU is turned off. I'll make description better.

> 
>> for 22 smaller segments. Those get allocated. At suspend/hibernation
>> time, these segments aren't freed as they are reused by firmware.
>>
>> After resume the firmware asks for 2 segments again with first segment
>> of 6799360 and with same vaddr of the first smaller segment which we had
> 
> Not follow you here. What do you mean by 'same vaddr'? firmware does not care about vaddr
> at all.
So we get request to allocate memory of size = 6799360 and vaddr =
0xABC). We fail it. Then we get request to allocate memory of size =
500000 and vaddr is same 0xABC which gets allocated successfully.

When we resume, firmware asks again for 6799360 with 0xABC vaddr even
though we had allocated memory of 500000 size at 0xABC. I'm referring to
this vaddr that its same.

> 
>> allocated. Hence vaddr isn't NULL and we compare the type and size if it
>> can be reused. Unfornately, we detect that we cannot reuse it and this
> 
> s/Unfornately/Unfortunately/
> 
>> first smaller segment is freed. Then we continue to allocate 6799360 size
>> memory from dma which fails and we call ath11k_qmi_free_target_mem_chunk()
>> which frees the second smaller segment as well. Later success is returned
>> to firmware which asks for 22 smaller segments again. But as we had freed
>> 2 segments already, we'll allocate the first 2 new segments again and
>> reuse the remaining 20.
>>
>> This patch is correctiong the skip logic when vaddr is set, but size/type
> 
> s/correctiong/correcting/
> 
>> don't match. In this case, we should use the same skip and success logic
>> as used when dma_alloc_coherent fails without freeing the memory area.
>>
>> We had got reports that memory allocation in this function failed at
> 
> any public link to the report?
There's no public report. I've attached the logs. You'll find following
error logs in it:

ath11k_pci 0000:03:00.0: failed to allocate dma memory for qmi (524288 B
type 1)
ath11k_pci 0000:03:00.0: failed to allocate qmi target memory: -22


> 
>> resume which made us debug why the reuse logic is wrong. Those failures
>> weren't because of the bigger chunk allocation failure as they are
>> skipped. Rather these failures were because of smaller chunk allocation
>> failures. This patch fixes freeing and allocation of 2 smaller chunks.
> 
> any you saying kernels fail to alloc a smaller chunk? why? is system memory exhausted or
> too fragmented?
Yes, the smaller chunk doesn't get allocated. I've not been able to
reproduce it on my setup. Both system memory exhaustion and
fragmentation are the suspects.

> 
>>
>> Tested-on: QCNFA765 WLAN.HSP.1.1-03926.13-QCAHSPSWPL_V2_SILICONZ_CE-2.52297.6
> 
> QCNFA765 is not an official chip name. please use WCN6855.
Okay. I'll fix all of these mistakes.

> 
>>
>> Fixes: 5962f370ce41 ("ath11k: Reuse the available memory after firmware reload")
> 
> I don't think a Fixes tag apply here. As IMO this is not really an issue, it is just not
> doing well.
> 
>> Signed-off-by: Muhammad Usama Anjum <usama.anjum@xxxxxxxxxxxxx>
>> ---
>>  drivers/net/wireless/ath/ath11k/qmi.c | 10 +++++++++-
>>  1 file changed, 9 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/wireless/ath/ath11k/qmi.c b/drivers/net/wireless/ath/ath11k/qmi.c
>> index 47b9d4126d3a9..3c26f4dcf5d29 100644
>> --- a/drivers/net/wireless/ath/ath11k/qmi.c
>> +++ b/drivers/net/wireless/ath/ath11k/qmi.c
>> @@ -1990,8 +1990,16 @@ static int ath11k_qmi_alloc_target_mem_chunk(struct ath11k_base *ab)
>>  		 */
>>  		if (chunk->vaddr) {
>>  			if (chunk->prev_type == chunk->type &&
>> -			    chunk->prev_size == chunk->size)
>> +			    chunk->prev_size == chunk->size) {
>>  				continue;
>> +			} else if (ab->qmi.mem_seg_count <= ATH11K_QMI_FW_MEM_REQ_SEGMENT_CNT) {
>> +				ath11k_dbg(ab, ATH11K_DBG_QMI,
>> +					   "size/type mismatch (current %d %u) (prev %d %u), try later with small size\n",
>> +					    chunk->size, chunk->type,
>> +					    chunk->prev_size, chunk->prev_type);
>> +				ab->qmi.target_mem_delayed = true;
>> +				return 0;
>> +			}
>>  
>>  			/* cannot reuse the existing chunk */
>>  			dma_free_coherent(ab->dev, chunk->prev_size,
> 
> actual code change LGTM.
> 
> 


-- 
Regards,
Usama
Mar 15 12:09:50 akideck kernel: Linux version 6.11.11-valve8-1-neptune-611-g9b073eb8166e (linux-neptune-611@archlinux) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.0) #1 SMP PREEMPT_DYNAMIC Thu, 13 Mar 2025 00:07:06 +0000
Mar 15 12:09:50 akideck kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux-neptune-611 console=tty1 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0 rd.systemd.gpt_auto=no log_buf_len=4M amd_iommu=off amdgpu.lockup_timeout=5000,10000,10000,5000 amdgpu.gttsize=8128 amdgpu.sched_hw_submission=4 audit=0 fsck.mode=auto fsck.repair=preen loglevel=3 splash quiet plymouth.ignore-serial-consoles fbcon=vc:4-6 steamos.efi=PARTUUID=3aa080ee-ef49-4929-a90f-4dfb6b93d329
Mar 15 12:09:50 akideck kernel: BIOS-provided physical RAM map:
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000bffff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009afffff] usable
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x0000000009e00000-0x0000000009efffff] usable
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x0000000009f00000-0x0000000009f20fff] ACPI NVS
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x0000000009f21000-0x000000006b367fff] usable
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000006b368000-0x000000006c567fff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000006c568000-0x000000006c56efff] usable
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000006c56f000-0x000000006c56ffff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000006c570000-0x000000007877efff] usable
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000007877f000-0x000000007af7efff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000007af7f000-0x000000007cf7efff] ACPI NVS
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000007cf7f000-0x000000007cffefff] ACPI data
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000007cfff000-0x000000007cffffff] usable
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000007d000000-0x000000007dffffff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000007f000000-0x000000007fffffff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x00000000a0000000-0x00000000a00fffff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec01fff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x00000000fec20000-0x00000000fec20fff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed81fff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x00000000fedc0000-0x00000000feddffff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x0000000100000000-0x000000043f37ffff] usable
Mar 15 12:09:50 akideck kernel: BIOS-e820: [mem 0x000000043f380000-0x000000047fffffff] reserved
Mar 15 12:09:50 akideck kernel: NX (Execute Disable) protection: active
Mar 15 12:09:50 akideck kernel: APIC: Static calls initialized
Mar 15 12:09:50 akideck kernel: e820: update [mem 0x69c85018-0x69c90057] usable ==> usable
Mar 15 12:09:50 akideck kernel: extended physical RAM map:
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000bffff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000009afffff] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x0000000009e00000-0x0000000009efffff] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x0000000009f00000-0x0000000009f20fff] ACPI NVS
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x0000000009f21000-0x0000000069c85017] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x0000000069c85018-0x0000000069c90057] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x0000000069c90058-0x000000006b367fff] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000006b368000-0x000000006c567fff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000006c568000-0x000000006c56efff] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000006c56f000-0x000000006c56ffff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000006c570000-0x000000007877efff] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000007877f000-0x000000007af7efff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000007af7f000-0x000000007cf7efff] ACPI NVS
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000007cf7f000-0x000000007cffefff] ACPI data
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000007cfff000-0x000000007cffffff] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000007d000000-0x000000007dffffff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000007f000000-0x000000007fffffff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x00000000a0000000-0x00000000a00fffff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec01fff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x00000000fec20000-0x00000000fec20fff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x00000000fed80000-0x00000000fed81fff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x00000000fedc0000-0x00000000feddffff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x0000000100000000-0x000000043f37ffff] usable
Mar 15 12:09:50 akideck kernel: reserve setup_data: [mem 0x000000043f380000-0x000000047fffffff] reserved
Mar 15 12:09:50 akideck kernel: efi: EFI v2.7 by Valve
Mar 15 12:09:50 akideck kernel: efi: ACPI=0x7cffe000 ACPI 2.0=0x7cffe014 TPMFinalLog=0x7cefe000 SMBIOS=0x796fd000 SMBIOS 3.0=0x796fb000 MEMATTR=0x74680018 ESRT=0x7406b798 INITRD=0x6c57e098 RNG=0x7cfbc018 TPMEventLog=0x7cfba018 
Mar 15 12:09:50 akideck kernel: random: crng init done
Mar 15 12:09:50 akideck kernel: efi: Remove mem68: MMIO range=[0xa0000000-0xa00fffff] (1MB) from e820 map
Mar 15 12:09:50 akideck kernel: e820: remove [mem 0xa0000000-0xa00fffff] reserved
Mar 15 12:09:50 akideck kernel: efi: Remove mem69: MMIO range=[0xf8000000-0xfbffffff] (64MB) from e820 map
Mar 15 12:09:50 akideck kernel: e820: remove [mem 0xf8000000-0xfbffffff] reserved
Mar 15 12:09:50 akideck kernel: efi: Not removing mem70: MMIO range=[0xfec00000-0xfec01fff] (8KB) from e820 map
Mar 15 12:09:50 akideck kernel: efi: Not removing mem71: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map
Mar 15 12:09:50 akideck kernel: efi: Not removing mem72: MMIO range=[0xfec20000-0xfec20fff] (4KB) from e820 map
Mar 15 12:09:50 akideck kernel: efi: Not removing mem73: MMIO range=[0xfed80000-0xfed81fff] (8KB) from e820 map
Mar 15 12:09:50 akideck kernel: efi: Not removing mem74: MMIO range=[0xfedc0000-0xfeddffff] (128KB) from e820 map
Mar 15 12:09:50 akideck kernel: efi: Not removing mem75: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
Mar 15 12:09:50 akideck kernel: efi: Remove mem76: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
Mar 15 12:09:50 akideck kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
Mar 15 12:09:50 akideck kernel: SMBIOS 3.3.0 present.
Mar 15 12:09:50 akideck kernel: DMI: Valve Galileo/Galileo, BIOS F7G0112 08/01/2024
Mar 15 12:09:50 akideck kernel: DMI: Memory slots populated: 4/4
Mar 15 12:09:50 akideck kernel: tsc: Fast TSC calibration using PIT
Mar 15 12:09:50 akideck kernel: tsc: Detected 2800.067 MHz processor
Mar 15 12:09:50 akideck kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Mar 15 12:09:50 akideck kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Mar 15 12:09:50 akideck kernel: last_pfn = 0x43f380 max_arch_pfn = 0x400000000
Mar 15 12:09:50 akideck kernel: MTRR map: 7 entries (3 fixed + 4 variable; max 20), built from 9 variable MTRRs
Mar 15 12:09:50 akideck kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Mar 15 12:09:50 akideck kernel: last_pfn = 0x7d000 max_arch_pfn = 0x400000000
Mar 15 12:09:50 akideck kernel: esrt: Reserving ESRT space from 0x000000007406b798 to 0x000000007406b820.
Mar 15 12:09:50 akideck kernel: e820: update [mem 0x7406b000-0x7406bfff] usable ==> reserved
Mar 15 12:09:50 akideck kernel: Using GB pages for direct mapping
Mar 15 12:09:50 akideck kernel: printk: log_buf_len: 4194304 bytes
Mar 15 12:09:50 akideck kernel: printk: early log buf free: 123664(94%)
Mar 15 12:09:50 akideck kernel: Secure boot disabled
Mar 15 12:09:50 akideck kernel: RAMDISK: [mem 0x66f1b000-0x67e73fff]
Mar 15 12:09:50 akideck kernel: ACPI: Early table checksum verification disabled
Mar 15 12:09:50 akideck kernel: ACPI: RSDP 0x000000007CFFE014 000024 (v02 AMDYDE)
Mar 15 12:09:50 akideck kernel: ACPI: XSDT 0x000000007CFCB188 000104 (v01 AMDYDE EDK2     00000002      01000013)
Mar 15 12:09:50 akideck kernel: ACPI: FACP 0x000000007CFEF000 00010C (v05 AMDYDE EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: DSDT 0x000000007CFE0000 008706 (v01 AMDYDE EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: FACS 0x000000007CEF7000 000040
Mar 15 12:09:50 akideck kernel: ACPI: UEFI 0x000000007CF7E000 000236 (v01 AMDYDE EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFF5000 007237 (v02 AMD    EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFF4000 00046D (v01 AMDyde EDK2     00001000 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: TPM2 0x000000007CFF3000 00004C (v04 AMD    EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: ASF! 0x000000007CFF1000 0000A5 (v32 AMDYDE EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: BOOT 0x000000007CFF0000 000028 (v01 AMDYDE EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: HPET 0x000000007CFEE000 000038 (v01 AMDYDE EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: APIC 0x000000007CFED000 000138 (v03 AMDYDE EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: MCFG 0x000000007CFEC000 00003C (v01 AMDYDE EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SLIC 0x000000007CFEB000 000176 (v01 AMDYDE EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: WDAT 0x000000007CFEA000 00017C (v01 AMDYDE EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: WDRT 0x000000007CFE9000 000047 (v01 AMD    EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFDF000 000099 (v01 AMDyde EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: VFCT 0x000000007CFD3000 00B084 (v01 AMDYDE EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFD2000 0000F8 (v01 AMD    EDK2     00001000 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFCF000 0029BC (v02 AMD    EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: CRAT 0x000000007CFCE000 0007E8 (v01 AMD    EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: CDIT 0x000000007CFCD000 000029 (v01 AMD    EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFCC000 000503 (v01 AMD    EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFC9000 001436 (v01 AMD    EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFC7000 0014AD (v01 AMD    EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFC1000 0051CF (v01 AMD    EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: FPDT 0x000000007CFFD000 000044 (v01 AMD    EDK2     00000002 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: WSMT 0x000000007CFBF000 000028 (v01 AMDYDE EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFBE000 00008D (v01 AMD    EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: SSDT 0x000000007CFBD000 000AE8 (v01 AMD    EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: BGRT 0x000000007CFC0000 000038 (v01 AMDYDE EDK2     00000001 ACPI 00040000)
Mar 15 12:09:50 akideck kernel: ACPI: Reserving FACP table memory at [mem 0x7cfef000-0x7cfef10b]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving DSDT table memory at [mem 0x7cfe0000-0x7cfe8705]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving FACS table memory at [mem 0x7cef7000-0x7cef703f]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving UEFI table memory at [mem 0x7cf7e000-0x7cf7e235]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cff5000-0x7cffc236]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cff4000-0x7cff446c]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving TPM2 table memory at [mem 0x7cff3000-0x7cff304b]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving ASF! table memory at [mem 0x7cff1000-0x7cff10a4]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving BOOT table memory at [mem 0x7cff0000-0x7cff0027]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving HPET table memory at [mem 0x7cfee000-0x7cfee037]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving APIC table memory at [mem 0x7cfed000-0x7cfed137]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving MCFG table memory at [mem 0x7cfec000-0x7cfec03b]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SLIC table memory at [mem 0x7cfeb000-0x7cfeb175]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving WDAT table memory at [mem 0x7cfea000-0x7cfea17b]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving WDRT table memory at [mem 0x7cfe9000-0x7cfe9046]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cfdf000-0x7cfdf098]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving VFCT table memory at [mem 0x7cfd3000-0x7cfde083]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cfd2000-0x7cfd20f7]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cfcf000-0x7cfd19bb]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving CRAT table memory at [mem 0x7cfce000-0x7cfce7e7]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving CDIT table memory at [mem 0x7cfcd000-0x7cfcd028]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cfcc000-0x7cfcc502]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cfc9000-0x7cfca435]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cfc7000-0x7cfc84ac]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cfc1000-0x7cfc61ce]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving FPDT table memory at [mem 0x7cffd000-0x7cffd043]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving WSMT table memory at [mem 0x7cfbf000-0x7cfbf027]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cfbe000-0x7cfbe08c]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving SSDT table memory at [mem 0x7cfbd000-0x7cfbdae7]
Mar 15 12:09:50 akideck kernel: ACPI: Reserving BGRT table memory at [mem 0x7cfc0000-0x7cfc0037]
Mar 15 12:09:50 akideck kernel: No NUMA configuration found
Mar 15 12:09:50 akideck kernel: Faking a node at [mem 0x0000000000000000-0x000000043f37ffff]
Mar 15 12:09:50 akideck kernel: NODE_DATA(0) allocated [mem 0x43f355000-0x43f37ffff]
Mar 15 12:09:50 akideck kernel: Zone ranges:
Mar 15 12:09:50 akideck kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Mar 15 12:09:50 akideck kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Mar 15 12:09:50 akideck kernel:   Normal   [mem 0x0000000100000000-0x000000043f37ffff]
Mar 15 12:09:50 akideck kernel:   Device   empty
Mar 15 12:09:50 akideck kernel: Movable zone start for each node
Mar 15 12:09:50 akideck kernel: Early memory node ranges
Mar 15 12:09:50 akideck kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
Mar 15 12:09:50 akideck kernel:   node   0: [mem 0x0000000000100000-0x0000000009afffff]
Mar 15 12:09:50 akideck kernel:   node   0: [mem 0x0000000009e00000-0x0000000009efffff]
Mar 15 12:09:50 akideck kernel:   node   0: [mem 0x0000000009f21000-0x000000006b367fff]
Mar 15 12:09:50 akideck kernel:   node   0: [mem 0x000000006c568000-0x000000006c56efff]
Mar 15 12:09:50 akideck kernel:   node   0: [mem 0x000000006c570000-0x000000007877efff]
Mar 15 12:09:50 akideck kernel:   node   0: [mem 0x000000007cfff000-0x000000007cffffff]
Mar 15 12:09:50 akideck kernel:   node   0: [mem 0x0000000100000000-0x000000043f37ffff]
Mar 15 12:09:50 akideck kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000043f37ffff]
Mar 15 12:09:50 akideck kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Mar 15 12:09:50 akideck kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Mar 15 12:09:50 akideck kernel: On node 0, zone DMA32: 768 pages in unavailable ranges
Mar 15 12:09:50 akideck kernel: On node 0, zone DMA32: 33 pages in unavailable ranges
Mar 15 12:09:50 akideck kernel: On node 0, zone DMA32: 4608 pages in unavailable ranges
Mar 15 12:09:50 akideck kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
Mar 15 12:09:50 akideck kernel: On node 0, zone DMA32: 18560 pages in unavailable ranges
Mar 15 12:09:50 akideck kernel: On node 0, zone Normal: 12288 pages in unavailable ranges
Mar 15 12:09:50 akideck kernel: On node 0, zone Normal: 3200 pages in unavailable ranges
Mar 15 12:09:50 akideck kernel: ACPI: PM-Timer IO Port: 0x408
Mar 15 12:09:50 akideck kernel: CPU topo: Ignoring hot-pluggable APIC ID 0 in present package.
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Mar 15 12:09:50 akideck kernel: IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
Mar 15 12:09:50 akideck kernel: IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
Mar 15 12:09:50 akideck kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Mar 15 12:09:50 akideck kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Mar 15 12:09:50 akideck kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Mar 15 12:09:50 akideck kernel: ACPI: HPET id: 0x10228210 base: 0xfed00000
Mar 15 12:09:50 akideck kernel: e820: update [mem 0x7279c000-0x72a3ffff] usable ==> reserved
Mar 15 12:09:50 akideck kernel: CPU topo: Max. logical packages:   1
Mar 15 12:09:50 akideck kernel: CPU topo: Max. logical dies:       1
Mar 15 12:09:50 akideck kernel: CPU topo: Max. dies per package:   1
Mar 15 12:09:50 akideck kernel: CPU topo: Max. threads per core:   2
Mar 15 12:09:50 akideck kernel: CPU topo: Num. cores per package:     4
Mar 15 12:09:50 akideck kernel: CPU topo: Num. threads per package:   8
Mar 15 12:09:50 akideck kernel: CPU topo: Allowing 8 present CPUs plus 0 hotplug CPUs
Mar 15 12:09:50 akideck kernel: CPU topo: Rejected CPUs 8
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000bffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x09b00000-0x09dfffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x09f00000-0x09f20fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x69c85000-0x69c85fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x69c90000-0x69c90fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x6b368000-0x6c567fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x6c56f000-0x6c56ffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x7279c000-0x72a3ffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x7406b000-0x7406bfff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x7877f000-0x7af7efff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x7af7f000-0x7cf7efff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x7cf7f000-0x7cffefff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x7d000000-0x7dffffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x7e000000-0x7effffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0x80000000-0xfebfffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec01fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec1ffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfec20000-0xfec20fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfec21000-0xfed7ffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed81fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfed82000-0xfedbffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfedc0000-0xfeddffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfede0000-0xfedfffff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Mar 15 12:09:50 akideck kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
Mar 15 12:09:50 akideck kernel: [mem 0x80000000-0xfebfffff] available for PCI devices
Mar 15 12:09:50 akideck kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Mar 15 12:09:50 akideck kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
Mar 15 12:09:50 akideck kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
Mar 15 12:09:50 akideck kernel: pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
Mar 15 12:09:50 akideck kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Mar 15 12:09:50 akideck kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-neptune-611 console=tty1 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0 rd.systemd.gpt_auto=no log_buf_len=4M amd_iommu=off amdgpu.lockup_timeout=5000,10000,10000,5000 amdgpu.gttsize=8128 amdgpu.sched_hw_submission=4 audit=0 fsck.mode=auto fsck.repair=preen loglevel=3 splash quiet plymouth.ignore-serial-consoles fbcon=vc:4-6 steamos.efi=PARTUUID=3aa080ee-ef49-4929-a90f-4dfb6b93d329
Mar 15 12:09:50 akideck kernel: audit: disabled (until reboot)
Mar 15 12:09:50 akideck kernel: Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-linux-neptune-611", will be passed to user space.
Mar 15 12:09:50 akideck kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Mar 15 12:09:50 akideck kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Mar 15 12:09:50 akideck kernel: Fallback order for Node 0: 0 
Mar 15 12:09:50 akideck kernel: Built 1 zonelists, mobility grouping on.  Total pages: 3892604
Mar 15 12:09:50 akideck kernel: Policy zone: Normal
Mar 15 12:09:50 akideck kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Mar 15 12:09:50 akideck kernel: software IO TLB: area num 8.
Mar 15 12:09:50 akideck kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Mar 15 12:09:50 akideck kernel: ftrace: allocating 49405 entries in 193 pages
Mar 15 12:09:50 akideck kernel: ftrace: allocated 193 pages with 3 groups
Mar 15 12:09:50 akideck kernel: Dynamic Preempt: full
Mar 15 12:09:50 akideck kernel: rcu: Preemptible hierarchical RCU implementation.
Mar 15 12:09:50 akideck kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
Mar 15 12:09:50 akideck kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Mar 15 12:09:50 akideck kernel:         Trampoline variant of Tasks RCU enabled.
Mar 15 12:09:50 akideck kernel:         Rude variant of Tasks RCU enabled.
Mar 15 12:09:50 akideck kernel:         Tracing variant of Tasks RCU enabled.
Mar 15 12:09:50 akideck kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Mar 15 12:09:50 akideck kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Mar 15 12:09:50 akideck kernel: RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
Mar 15 12:09:50 akideck kernel: RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
Mar 15 12:09:50 akideck kernel: RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
Mar 15 12:09:50 akideck kernel: NR_IRQS: 524544, nr_irqs: 1032, preallocated irqs: 16
Mar 15 12:09:50 akideck kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Mar 15 12:09:50 akideck kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Mar 15 12:09:50 akideck kernel: Console: colour dummy device 80x25
Mar 15 12:09:50 akideck kernel: printk: legacy console [tty1] enabled
Mar 15 12:09:50 akideck kernel: ACPI: Core revision 20240322
Mar 15 12:09:50 akideck kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Mar 15 12:09:50 akideck kernel: APIC: Switch to symmetric I/O mode setup
Mar 15 12:09:50 akideck kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Mar 15 12:09:50 akideck kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x285c801e4f7, max_idle_ns: 440795215530 ns
Mar 15 12:09:50 akideck kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5602.47 BogoMIPS (lpj=9333556)
Mar 15 12:09:50 akideck kernel: Zenbleed: please update your microcode for the most optimal fix
Mar 15 12:09:50 akideck kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Mar 15 12:09:50 akideck kernel: LVT offset 1 assigned for vector 0xf9
Mar 15 12:09:50 akideck kernel: LVT offset 2 assigned for vector 0xf4
Mar 15 12:09:50 akideck kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Mar 15 12:09:50 akideck kernel: Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
Mar 15 12:09:50 akideck kernel: process: using mwait in idle threads
Mar 15 12:09:50 akideck kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Mar 15 12:09:50 akideck kernel: Spectre V2 : Mitigation: Retpolines
Mar 15 12:09:50 akideck kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Mar 15 12:09:50 akideck kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Mar 15 12:09:50 akideck kernel: Spectre V2 : Enabling Speculation Barrier for firmware calls
Mar 15 12:09:50 akideck kernel: RETBleed: Mitigation: untrained return thunk
Mar 15 12:09:50 akideck kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Mar 15 12:09:50 akideck kernel: Spectre V2 : Selecting STIBP always-on mode to complement retbleed mitigation
Mar 15 12:09:50 akideck kernel: Spectre V2 : User space: Mitigation: STIBP always-on protection
Mar 15 12:09:50 akideck kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Mar 15 12:09:50 akideck kernel: Speculative Return Stack Overflow: Mitigation: Safe RET
Mar 15 12:09:50 akideck kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Mar 15 12:09:50 akideck kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Mar 15 12:09:50 akideck kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Mar 15 12:09:50 akideck kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Mar 15 12:09:50 akideck kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
Mar 15 12:09:50 akideck kernel: Freeing SMP alternatives memory: 40K
Mar 15 12:09:50 akideck kernel: pid_max: default: 32768 minimum: 301
Mar 15 12:09:50 akideck kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
Mar 15 12:09:50 akideck kernel: landlock: Up and running.
Mar 15 12:09:50 akideck kernel: Yama: becoming mindful.
Mar 15 12:09:50 akideck kernel: LSM support for eBPF active
Mar 15 12:09:50 akideck kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Mar 15 12:09:50 akideck kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Mar 15 12:09:50 akideck kernel: smpboot: CPU0: AMD Custom APU 0932 (family: 0x17, model: 0x91, stepping: 0x0)
Mar 15 12:09:50 akideck kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
Mar 15 12:09:50 akideck kernel: ... version:                0
Mar 15 12:09:50 akideck kernel: ... bit width:              48
Mar 15 12:09:50 akideck kernel: ... generic registers:      6
Mar 15 12:09:50 akideck kernel: ... value mask:             0000ffffffffffff
Mar 15 12:09:50 akideck kernel: ... max period:             00007fffffffffff
Mar 15 12:09:50 akideck kernel: ... fixed-purpose events:   0
Mar 15 12:09:50 akideck kernel: ... event mask:             000000000000003f
Mar 15 12:09:50 akideck kernel: signal: max sigframe size: 1776
Mar 15 12:09:50 akideck kernel: rcu: Hierarchical SRCU implementation.
Mar 15 12:09:50 akideck kernel: rcu:         Max phase no-delay instances is 1000.
Mar 15 12:09:50 akideck kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
Mar 15 12:09:50 akideck kernel: MCE: In-kernel MCE decoding enabled.
Mar 15 12:09:50 akideck kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Mar 15 12:09:50 akideck kernel: smp: Bringing up secondary CPUs ...
Mar 15 12:09:50 akideck kernel: smpboot: x86: Booting SMP configuration:
Mar 15 12:09:50 akideck kernel: .... node  #0, CPUs:      #2 #4 #6 #1 #3 #5 #7
Mar 15 12:09:50 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
Mar 15 12:09:50 akideck kernel: smp: Brought up 1 node, 8 CPUs
Mar 15 12:09:50 akideck kernel: smpboot: Total of 8 processors activated (44818.78 BogoMIPS)
Mar 15 12:09:50 akideck kernel: Memory: 15130452K/15570416K available (18432K kernel code, 2537K rwdata, 13356K rodata, 3852K init, 4840K bss, 428048K reserved, 0K cma-reserved)
Mar 15 12:09:50 akideck kernel: devtmpfs: initialized
Mar 15 12:09:50 akideck kernel: x86/mm: Memory block size: 128MB
Mar 15 12:09:50 akideck kernel: ACPI: PM: Registering ACPI NVS region [mem 0x09f00000-0x09f20fff] (135168 bytes)
Mar 15 12:09:50 akideck kernel: ACPI: PM: Registering ACPI NVS region [mem 0x7af7f000-0x7cf7efff] (33554432 bytes)
Mar 15 12:09:50 akideck kernel: PM: Steam Deck quirk - no s2idle allowed!
Mar 15 12:09:50 akideck kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Mar 15 12:09:50 akideck kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
Mar 15 12:09:50 akideck kernel: pinctrl core: initialized pinctrl subsystem
Mar 15 12:09:50 akideck kernel: PM: RTC time: 19:09:48, date: 2025-03-15
Mar 15 12:09:50 akideck kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Mar 15 12:09:50 akideck kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Mar 15 12:09:50 akideck kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Mar 15 12:09:50 akideck kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Mar 15 12:09:50 akideck kernel: thermal_sys: Registered thermal governor 'fair_share'
Mar 15 12:09:50 akideck kernel: thermal_sys: Registered thermal governor 'bang_bang'
Mar 15 12:09:50 akideck kernel: thermal_sys: Registered thermal governor 'step_wise'
Mar 15 12:09:50 akideck kernel: thermal_sys: Registered thermal governor 'user_space'
Mar 15 12:09:50 akideck kernel: thermal_sys: Registered thermal governor 'power_allocator'
Mar 15 12:09:50 akideck kernel: cpuidle: using governor ladder
Mar 15 12:09:50 akideck kernel: cpuidle: using governor menu
Mar 15 12:09:50 akideck kernel: Simple Boot Flag at 0x44 set to 0x80
Mar 15 12:09:50 akideck kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Mar 15 12:09:50 akideck kernel: PCI: ECAM [mem 0xf8000000-0xfbffffff] (base 0xf8000000) for domain 0000 [bus 00-3f]
Mar 15 12:09:50 akideck kernel: PCI: Using configuration type 1 for base access
Mar 15 12:09:50 akideck kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Mar 15 12:09:50 akideck kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Mar 15 12:09:50 akideck kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Mar 15 12:09:50 akideck kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Mar 15 12:09:50 akideck kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Mar 15 12:09:50 akideck kernel: ACPI: Added _OSI(Module Device)
Mar 15 12:09:50 akideck kernel: ACPI: Added _OSI(Processor Device)
Mar 15 12:09:50 akideck kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Mar 15 12:09:50 akideck kernel: ACPI: Added _OSI(Processor Aggregator Device)
Mar 15 12:09:50 akideck kernel: ACPI: 12 ACPI AML tables successfully acquired and loaded
Mar 15 12:09:50 akideck kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Mar 15 12:09:50 akideck kernel: ACPI: EC: EC started
Mar 15 12:09:50 akideck kernel: ACPI: EC: interrupt blocked
Mar 15 12:09:50 akideck kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC used to handle transactions
Mar 15 12:09:50 akideck kernel: ACPI: Interpreter enabled
Mar 15 12:09:50 akideck kernel: ACPI: PM: (supports S0 S3 S4 S5)
Mar 15 12:09:50 akideck kernel: ACPI: Using IOAPIC for interrupt routing
Mar 15 12:09:50 akideck kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Mar 15 12:09:50 akideck kernel: PCI: Ignoring E820 reservations for host bridge windows
Mar 15 12:09:50 akideck kernel: ACPI: Enabled 5 GPEs in block 00 to 1F
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PRWL: New power resource
Mar 15 12:09:50 akideck kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Mar 15 12:09:50 akideck kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Mar 15 12:09:50 akideck kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
Mar 15 12:09:50 akideck kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Mar 15 12:09:50 akideck kernel: acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf8000000-0xfbffffff] for domain 0000 [bus 00-3f] only partially covers this bridge
Mar 15 12:09:50 akideck kernel: PCI host bridge to bus 0000:00
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000cffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000effff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xf7ffffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfeafffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfed814ff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0xfed81900-0xfed81fff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0xfedc0000-0xfedc0fff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0xfedc6000-0xfedc6fff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [mem 0x4a0200000-0xf8ffffffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:00.0: [1022:1645] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.2: [1022:1647] type 01 class 0x060400 PCIe Root Port
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.2: PCI bridge to [bus 01]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.2:   bridge window [mem 0x80700000-0x807fffff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.3: [1022:1647] type 01 class 0x060400 PCIe Root Port
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.3: PCI bridge to [bus 02]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.3:   bridge window [mem 0x80600000-0x806fffff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.4: [1022:1647] type 01 class 0x060400 PCIe Root Port
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.4: PCI bridge to [bus 03]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.4:   bridge window [mem 0x80000000-0x801fffff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.4: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1: [1022:1648] type 01 class 0x060400 PCIe Root Port
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1: PCI bridge to [bus 04]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1:   bridge window [mem 0x80200000-0x805fffff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1:   bridge window [mem 0xf8e0000000-0xf8f01fffff 64bit pref]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.2: [1022:1648] type 01 class 0x060400 PCIe Root Port
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.2: PCI bridge to [bus 05]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.2: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.3: [1022:1648] type 01 class 0x060400 PCIe Root Port
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.3: PCI bridge to [bus 06]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.3: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:18.0: [1022:1660] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:18.1: [1022:1661] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:18.2: [1022:1662] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:18.3: [1022:1663] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:18.4: [1022:1664] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:18.5: [1022:1665] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:18.6: [1022:1666] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:00:18.7: [1022:1667] type 00 class 0x060000 conventional PCI endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:01:00.0: [1987:5019] type 00 class 0x010802 PCIe Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:01:00.0: BAR 0 [mem 0x80700000-0x80703fff 64bit]
Mar 15 12:09:50 akideck kernel: pci 0000:01:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 63.012 Gb/s with 16.0 GT/s PCIe x4 link)
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.2: PCI bridge to [bus 01]
Mar 15 12:09:50 akideck kernel: pci 0000:02:00.0: [1217:8621] type 00 class 0x080501 PCIe Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:02:00.0: BAR 0 [mem 0x80601000-0x80601fff]
Mar 15 12:09:50 akideck kernel: pci 0000:02:00.0: BAR 1 [mem 0x80600000-0x806007ff]
Mar 15 12:09:50 akideck kernel: pci 0000:02:00.0: PME# supported from D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.3: PCI bridge to [bus 02]
Mar 15 12:09:50 akideck kernel: pci 0000:03:00.0: [17cb:1103] type 00 class 0x028000 PCIe Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:03:00.0: BAR 0 [mem 0x80000000-0x801fffff 64bit]
Mar 15 12:09:50 akideck kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.4: PCI bridge to [bus 03]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: [1002:1435] type 00 class 0x030000 PCIe Legacy Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: BAR 0 [mem 0xf8e0000000-0xf8efffffff 64bit pref]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: BAR 2 [mem 0xf8f0000000-0xf8f01fffff 64bit pref]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: BAR 4 [io  0x1000-0x10ff]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: BAR 5 [mem 0x80500000-0x8057ffff]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.1: [1002:1640] type 00 class 0x040300 PCIe Legacy Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.1: BAR 0 [mem 0x805c0000-0x805c3fff]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.1: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.1: PME# supported from D1 D2 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.2: [1022:1649] type 00 class 0x108000 PCIe Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.2: BAR 2 [mem 0x80400000-0x804fffff]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.2: BAR 5 [mem 0x805c4000-0x805c5fff]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.2: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.3: [1022:162c] type 00 class 0x0c0330 PCIe Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.3: BAR 0 [mem 0x80200000-0x802fffff 64bit]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.3: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.3: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.4: [1022:163b] type 00 class 0x0c0330 PCIe Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.4: BAR 0 [mem 0x80300000-0x803fffff 64bit]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.4: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.4: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.5: BAR 0 [mem 0x80580000-0x805bffff]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.5: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.5: PME# supported from D0 D3hot D3cold
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1: PCI bridge to [bus 04]
Mar 15 12:09:50 akideck kernel: pci 0000:05:00.0: [1022:145a] type 00 class 0x130000 PCIe Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:05:00.0: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:05:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.2: PCI bridge to [bus 05]
Mar 15 12:09:50 akideck kernel: pci 0000:06:00.0: [1022:145a] type 00 class 0x130000 PCIe Endpoint
Mar 15 12:09:50 akideck kernel: pci 0000:06:00.0: enabling Extended Tags
Mar 15 12:09:50 akideck kernel: pci 0000:06:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.3 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.3: PCI bridge to [bus 06]
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKA disabled
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKB disabled
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKC disabled
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKD disabled
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKE disabled
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKF disabled
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKG disabled
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Mar 15 12:09:50 akideck kernel: ACPI: PCI: Interrupt link LNKH disabled
Mar 15 12:09:50 akideck kernel: ACPI: EC: interrupt unblocked
Mar 15 12:09:50 akideck kernel: ACPI: EC: event unblocked
Mar 15 12:09:50 akideck kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Mar 15 12:09:50 akideck kernel: ACPI: EC: GPE=0xa
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC initialization complete
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PCI0.LPC0.EC0_: EC: Used to handle transactions and events
Mar 15 12:09:50 akideck kernel: iommu: Default domain type: Translated
Mar 15 12:09:50 akideck kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Mar 15 12:09:50 akideck kernel: SCSI subsystem initialized
Mar 15 12:09:50 akideck kernel: libata version 3.00 loaded.
Mar 15 12:09:50 akideck kernel: ACPI: bus type USB registered
Mar 15 12:09:50 akideck kernel: usbcore: registered new interface driver usbfs
Mar 15 12:09:50 akideck kernel: usbcore: registered new interface driver hub
Mar 15 12:09:50 akideck kernel: usbcore: registered new device driver usb
Mar 15 12:09:50 akideck kernel: EDAC MC: Ver: 3.0.0
Mar 15 12:09:50 akideck kernel: efivars: Registered efivars operations
Mar 15 12:09:50 akideck kernel: NetLabel: Initializing
Mar 15 12:09:50 akideck kernel: NetLabel:  domain hash size = 128
Mar 15 12:09:50 akideck kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Mar 15 12:09:50 akideck kernel: NetLabel:  unlabeled traffic allowed by default
Mar 15 12:09:50 akideck kernel: mctp: management component transport protocol core
Mar 15 12:09:50 akideck kernel: NET: Registered PF_MCTP protocol family
Mar 15 12:09:50 akideck kernel: PCI: Using ACPI for IRQ routing
Mar 15 12:09:50 akideck kernel: PCI: pci_cache_line_size set to 64 bytes
Mar 15 12:09:50 akideck kernel: resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x09b00000-0x0bffffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x09f00000-0x0bffffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x69c85018-0x6bffffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x6b368000-0x6bffffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x6c56f000-0x6fffffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x7279c000-0x73ffffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x7406b000-0x77ffffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x7877f000-0x7bffffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x7d000000-0x7fffffff]
Mar 15 12:09:50 akideck kernel: e820: reserve RAM buffer [mem 0x43f380000-0x43fffffff]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: vgaarb: setting as boot VGA device
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: vgaarb: bridge control possible
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Mar 15 12:09:50 akideck kernel: vgaarb: loaded
Mar 15 12:09:50 akideck kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Mar 15 12:09:50 akideck kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Mar 15 12:09:50 akideck kernel: clocksource: Switched to clocksource tsc-early
Mar 15 12:09:50 akideck kernel: VFS: Disk quotas dquot_6.6.0
Mar 15 12:09:50 akideck kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Mar 15 12:09:50 akideck kernel: pnp: PnP ACPI init
Mar 15 12:09:50 akideck kernel: system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
Mar 15 12:09:50 akideck kernel: system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:00: [mem 0xa0000000-0xa00fffff] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:03: [io  0x0400-0x04cf] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:03: [io  0x04d0-0x04d1] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:03: [io  0x04d6] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:03: [io  0x0c00-0x0c01] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:03: [io  0x0c14] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:03: [io  0x0c50-0x0c52] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:03: [io  0x0c6c] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:03: [io  0x0c6f] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:03: [io  0x0cd0-0x0cdb] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:04: [mem 0x000e0000-0x000fffff] could not be reserved
Mar 15 12:09:50 akideck kernel: system 00:04: [mem 0xff000000-0xffffffff] has been reserved
Mar 15 12:09:50 akideck kernel: system 00:05: [mem 0xf8000000-0xfbffffff] has been reserved
Mar 15 12:09:50 akideck kernel: pnp: PnP ACPI: found 6 devices
Mar 15 12:09:50 akideck kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Mar 15 12:09:50 akideck kernel: NET: Registered PF_INET protocol family
Mar 15 12:09:50 akideck kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Mar 15 12:09:50 akideck kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Mar 15 12:09:50 akideck kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Mar 15 12:09:50 akideck kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Mar 15 12:09:50 akideck kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Mar 15 12:09:50 akideck kernel: TCP: Hash tables configured (established 131072 bind 65536)
Mar 15 12:09:50 akideck kernel: MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
Mar 15 12:09:50 akideck kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
Mar 15 12:09:50 akideck kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
Mar 15 12:09:50 akideck kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Mar 15 12:09:50 akideck kernel: NET: Registered PF_XDP protocol family
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.2: PCI bridge to [bus 01]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.2:   bridge window [mem 0x80700000-0x807fffff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.3: PCI bridge to [bus 02]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.3:   bridge window [mem 0x80600000-0x806fffff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.4: PCI bridge to [bus 03]
Mar 15 12:09:50 akideck kernel: pci 0000:00:01.4:   bridge window [mem 0x80000000-0x801fffff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1: PCI bridge to [bus 04]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1:   bridge window [mem 0x80200000-0x805fffff]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.1:   bridge window [mem 0xf8e0000000-0xf8f01fffff 64bit pref]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.2: PCI bridge to [bus 05]
Mar 15 12:09:50 akideck kernel: pci 0000:00:08.3: PCI bridge to [bus 06]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000cffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 8 [mem 0x000d0000-0x000effff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 9 [mem 0x80000000-0xf7ffffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 10 [mem 0xfc000000-0xfeafffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 11 [mem 0xfed45000-0xfed814ff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 12 [mem 0xfed81900-0xfed81fff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 13 [mem 0xfedc0000-0xfedc0fff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 14 [mem 0xfedc6000-0xfedc6fff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:00: resource 15 [mem 0x4a0200000-0xf8ffffffff window]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:01: resource 1 [mem 0x80700000-0x807fffff]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:02: resource 1 [mem 0x80600000-0x806fffff]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:03: resource 1 [mem 0x80000000-0x801fffff]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:04: resource 0 [io  0x1000-0x1fff]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:04: resource 1 [mem 0x80200000-0x805fffff]
Mar 15 12:09:50 akideck kernel: pci_bus 0000:04: resource 2 [mem 0xf8e0000000-0xf8f01fffff 64bit pref]
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.1: D0 power state depends on 0000:04:00.0
Mar 15 12:09:50 akideck kernel: pci 0000:04:00.4: quirk_usb_early_handoff+0x0/0x760 took 18257 usecs
Mar 15 12:09:50 akideck kernel: PCI: CLS 64 bytes, default 64
Mar 15 12:09:50 akideck kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Mar 15 12:09:50 akideck kernel: software IO TLB: mapped [mem 0x000000006ddef000-0x0000000071def000] (64MB)
Mar 15 12:09:50 akideck kernel: Trying to unpack rootfs image as initramfs...
Mar 15 12:09:50 akideck kernel: LVT offset 0 assigned for vector 0x400
Mar 15 12:09:50 akideck kernel: perf: AMD IBS detected (0x000003ff)
Mar 15 12:09:50 akideck kernel: Initialise system trusted keyrings
Mar 15 12:09:50 akideck kernel: Key type blacklist registered
Mar 15 12:09:50 akideck kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
Mar 15 12:09:50 akideck kernel: fuse: init (API version 7.40)
Mar 15 12:09:50 akideck kernel: integrity: Platform Keyring initialized
Mar 15 12:09:50 akideck kernel: integrity: Machine keyring initialized
Mar 15 12:09:50 akideck kernel: Key type asymmetric registered
Mar 15 12:09:50 akideck kernel: Asymmetric key parser 'x509' registered
Mar 15 12:09:50 akideck kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
Mar 15 12:09:50 akideck kernel: io scheduler mq-deadline registered
Mar 15 12:09:50 akideck kernel: io scheduler kyber registered
Mar 15 12:09:50 akideck kernel: io scheduler bfq registered
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.2: PME: Signaling with IRQ 25
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.2: AER: enabled with IRQ 25
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.2: DPC: enabled with IRQ 25
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.2: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.3: PME: Signaling with IRQ 26
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.3: AER: enabled with IRQ 26
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.3: DPC: enabled with IRQ 26
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.3: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.4: PME: Signaling with IRQ 27
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.4: AER: enabled with IRQ 27
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.4: DPC: enabled with IRQ 27
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:01.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 28
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:08.2: PME: Signaling with IRQ 29
Mar 15 12:09:50 akideck kernel: pcieport 0000:00:08.3: PME: Signaling with IRQ 30
Mar 15 12:09:50 akideck kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Mar 15 12:09:50 akideck kernel: ACPI: AC: AC Adapter [ACAD] (off-line)
Mar 15 12:09:50 akideck kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Mar 15 12:09:50 akideck kernel: ACPI: button: Power Button [PWRB]
Mar 15 12:09:50 akideck kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
Mar 15 12:09:50 akideck kernel: ACPI: button: Lid Switch [LID]
Mar 15 12:09:50 akideck kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Mar 15 12:09:50 akideck kernel: ACPI: button: Power Button [PWRF]
Mar 15 12:09:50 akideck kernel: Monitor-Mwait will be used to enter C-1 state
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PLTF.C000: Found 3 idle states
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PLTF.C001: Found 3 idle states
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PLTF.C002: Found 3 idle states
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PLTF.C003: Found 3 idle states
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PLTF.C004: Found 3 idle states
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PLTF.C005: Found 3 idle states
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PLTF.C006: Found 3 idle states
Mar 15 12:09:50 akideck kernel: ACPI: \_SB_.PLTF.C007: Found 3 idle states
Mar 15 12:09:50 akideck kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1152
Mar 15 12:09:50 akideck kernel: thermal LNXTHERM:00: registered as thermal_zone0
Mar 15 12:09:50 akideck kernel: ACPI: thermal: Thermal Zone [TZ01] (42 C)
Mar 15 12:09:50 akideck kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Mar 15 12:09:50 akideck kernel: ACPI: battery: Slot [BAT1] (battery present)
Mar 15 12:09:50 akideck kernel: Non-volatile memory driver v1.3
Mar 15 12:09:50 akideck kernel: Linux agpgart interface v0.103
Mar 15 12:09:50 akideck kernel: ACPI: bus type drm_connector registered
Mar 15 12:09:50 akideck kernel: usbcore: registered new interface driver usbserial_generic
Mar 15 12:09:50 akideck kernel: usbserial: USB Serial support registered for generic
Mar 15 12:09:50 akideck kernel: rtc_cmos 00:01: RTC can wake from S4
Mar 15 12:09:50 akideck kernel: rtc_cmos 00:01: registered as rtc0
Mar 15 12:09:50 akideck kernel: rtc_cmos 00:01: setting system clock to 2025-03-15T19:09:48 UTC (1742065788)
Mar 15 12:09:50 akideck kernel: rtc_cmos 00:01: alarms up to one month, 114 bytes nvram
Mar 15 12:09:50 akideck kernel: Freeing initrd memory: 15716K
Mar 15 12:09:50 akideck kernel: ledtrig-cpu: registered to indicate activity on CPUs
Mar 15 12:09:50 akideck kernel: efifb: probing for efifb
Mar 15 12:09:50 akideck kernel: efifb: BGRT rotation bits set, not showing boot graphics
Mar 15 12:09:50 akideck kernel: efifb: framebuffer at 0xf8e0000000, using 4160k, total 4160k
Mar 15 12:09:50 akideck kernel: efifb: mode is 800x1280x32, linelength=3328, pages=1
Mar 15 12:09:50 akideck kernel: efifb: scrolling: redraw
Mar 15 12:09:50 akideck kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Mar 15 12:09:50 akideck kernel: fbcon: Deferring console take-over
Mar 15 12:09:50 akideck kernel: fb0: EFI VGA frame buffer device
Mar 15 12:09:50 akideck kernel: hid: raw HID events driver (C) Jiri Kosina
Mar 15 12:09:50 akideck kernel: drop_monitor: Initializing network drop monitor service
Mar 15 12:09:50 akideck kernel: NET: Registered PF_INET6 protocol family
Mar 15 12:09:50 akideck kernel: Segment Routing with IPv6
Mar 15 12:09:50 akideck kernel: RPL Segment Routing with IPv6
Mar 15 12:09:50 akideck kernel: In-situ OAM (IOAM) with IPv6
Mar 15 12:09:50 akideck kernel: NET: Registered PF_PACKET protocol family
Mar 15 12:09:50 akideck kernel: microcode: Current revision: 0x08901003
Mar 15 12:09:50 akideck kernel: resctrl: L3 allocation detected
Mar 15 12:09:50 akideck kernel: resctrl: MB allocation detected
Mar 15 12:09:50 akideck kernel: resctrl: L3 monitoring detected
Mar 15 12:09:50 akideck kernel: IPI shorthand broadcast: enabled
Mar 15 12:09:50 akideck kernel: sched_clock: Marking stable (530635644, 347347)->(533510624, -2527633)
Mar 15 12:09:50 akideck kernel: registered taskstats version 1
Mar 15 12:09:50 akideck kernel: Loading compiled-in X.509 certificates
Mar 15 12:09:50 akideck kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 6e1c04626397ab22a3e0aecf5a185e8d99007d74'
Mar 15 12:09:50 akideck kernel: zswap: loaded using pool zstd/zsmalloc
Mar 15 12:09:50 akideck kernel: Demotion targets for Node 0: null
Mar 15 12:09:50 akideck kernel: Key type .fscrypt registered
Mar 15 12:09:50 akideck kernel: Key type fscrypt-provisioning registered
Mar 15 12:09:50 akideck kernel: PM:   Magic number: 1:740:192
Mar 15 12:09:50 akideck kernel: acpi device:1e: hash matches
Mar 15 12:09:50 akideck kernel: RAS: Correctable Errors collector initialized.
Mar 15 12:09:50 akideck kernel: clk: Disabling unused clocks
Mar 15 12:09:50 akideck kernel: PM: genpd: Disabling unused power domains
Mar 15 12:09:50 akideck kernel: Freeing unused decrypted memory: 2044K
Mar 15 12:09:50 akideck kernel: Freeing unused kernel image (initmem) memory: 3852K
Mar 15 12:09:50 akideck kernel: Write protecting the kernel read-only data: 32768k
Mar 15 12:09:50 akideck kernel: Freeing unused kernel image (rodata/data gap) memory: 980K
Mar 15 12:09:50 akideck kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Mar 15 12:09:50 akideck kernel: rodata_test: all tests were successful
Mar 15 12:09:50 akideck kernel: Run /init as init process
Mar 15 12:09:50 akideck kernel:   with arguments:
Mar 15 12:09:50 akideck kernel:     /init
Mar 15 12:09:50 akideck kernel:     splash
Mar 15 12:09:50 akideck kernel:   with environment:
Mar 15 12:09:50 akideck kernel:     HOME=/
Mar 15 12:09:50 akideck kernel:     TERM=linux
Mar 15 12:09:50 akideck kernel:     BOOT_IMAGE=/boot/vmlinuz-linux-neptune-611
Mar 15 12:09:50 akideck kernel: fbcon: Taking over console
Mar 15 12:09:50 akideck kernel: Console: switching consoles 4-6 to frame buffer device
Mar 15 12:09:50 akideck kernel: i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
Mar 15 12:09:50 akideck kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.3: xHCI Host Controller
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.3: hcc params 0x0110ffe5 hci version 0x110 quirks 0x0000000000000010
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.3: xHCI Host Controller
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 2
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.3: Host supports USB 3.1 Enhanced SuperSpeed
Mar 15 12:09:50 akideck kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
Mar 15 12:09:50 akideck kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 15 12:09:50 akideck kernel: usb usb1: Product: xHCI Host Controller
Mar 15 12:09:50 akideck kernel: usb usb1: Manufacturer: Linux 6.11.11-valve8-1-neptune-611-g9b073eb8166e xhci-hcd
Mar 15 12:09:50 akideck kernel: usb usb1: SerialNumber: 0000:04:00.3
Mar 15 12:09:50 akideck kernel: hub 1-0:1.0: USB hub found
Mar 15 12:09:50 akideck kernel: hub 1-0:1.0: 1 port detected
Mar 15 12:09:50 akideck kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Mar 15 12:09:50 akideck kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11
Mar 15 12:09:50 akideck kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 15 12:09:50 akideck kernel: usb usb2: Product: xHCI Host Controller
Mar 15 12:09:50 akideck kernel: usb usb2: Manufacturer: Linux 6.11.11-valve8-1-neptune-611-g9b073eb8166e xhci-hcd
Mar 15 12:09:50 akideck kernel: usb usb2: SerialNumber: 0000:04:00.3
Mar 15 12:09:50 akideck kernel: hub 2-0:1.0: USB hub found
Mar 15 12:09:50 akideck kernel: hub 2-0:1.0: 1 port detected
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.4: xHCI Host Controller
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 3
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.4: USB3 root hub has no ports
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.4: hcc params 0x0128ffe5 hci version 0x110 quirks 0x0000000000000010
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.4: xHCI Host Controller
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 4
Mar 15 12:09:50 akideck kernel: xhci_hcd 0000:04:00.4: Host supports USB 3.0 SuperSpeed
Mar 15 12:09:50 akideck kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
Mar 15 12:09:50 akideck kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 15 12:09:50 akideck kernel: usb usb3: Product: xHCI Host Controller
Mar 15 12:09:50 akideck kernel: usb usb3: Manufacturer: Linux 6.11.11-valve8-1-neptune-611-g9b073eb8166e xhci-hcd
Mar 15 12:09:50 akideck kernel: usb usb3: SerialNumber: 0000:04:00.4
Mar 15 12:09:50 akideck kernel: hub 3-0:1.0: USB hub found
Mar 15 12:09:50 akideck kernel: hub 3-0:1.0: 6 ports detected
Mar 15 12:09:50 akideck kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Mar 15 12:09:50 akideck kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11
Mar 15 12:09:50 akideck kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 15 12:09:50 akideck kernel: usb usb4: Product: xHCI Host Controller
Mar 15 12:09:50 akideck kernel: usb usb4: Manufacturer: Linux 6.11.11-valve8-1-neptune-611-g9b073eb8166e xhci-hcd
Mar 15 12:09:50 akideck kernel: usb usb4: SerialNumber: 0000:04:00.4
Mar 15 12:09:50 akideck kernel: hub 4-0:1.0: USB hub found
Mar 15 12:09:50 akideck kernel: hub 4-0:1.0: config failed, hub doesn't have any ports! (err -19)
Mar 15 12:09:50 akideck kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mar 15 12:09:50 akideck kernel: sdhci: Secure Digital Host Controller Interface driver
Mar 15 12:09:50 akideck kernel: sdhci: Copyright(c) Pierre Ossman
Mar 15 12:09:50 akideck kernel: nvme nvme0: pci function 0000:01:00.0
Mar 15 12:09:50 akideck kernel: nvme nvme0: allocated 64 MiB host memory buffer.
Mar 15 12:09:50 akideck kernel: nvme nvme0: 8/0/0 default/read/poll queues
Mar 15 12:09:50 akideck kernel:  nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8
Mar 15 12:09:50 akideck kernel: sdhci-pci 0000:02:00.0: SDHCI controller found [1217:8621] (rev 1)
Mar 15 12:09:50 akideck kernel: mmc0: SDHCI controller on PCI [0000:02:00.0] using ADMA
Mar 15 12:09:50 akideck kernel: raid6: skipped pq benchmark and selected avx2x4
Mar 15 12:09:50 akideck kernel: raid6: using avx2x2 recovery algorithm
Mar 15 12:09:50 akideck kernel: xor: automatically using best checksumming function   avx       
Mar 15 12:09:50 akideck kernel: usb 3-3: new full-speed USB device number 2 using xhci_hcd
Mar 15 12:09:50 akideck kernel: Btrfs loaded, zoned=yes, fsverity=yes
Mar 15 12:09:50 akideck kernel: usb 3-3: New USB device found, idVendor=28de, idProduct=1205, bcdDevice= 3.00
Mar 15 12:09:50 akideck kernel: usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 12:09:50 akideck kernel: usb 3-3: Product: Steam Controller
Mar 15 12:09:50 akideck kernel: usb 3-3: Manufacturer: Valve Software
Mar 15 12:09:50 akideck kernel: usb 3-3: SerialNumber: 123456789ABCDEF
Mar 15 12:09:50 akideck kernel: usbcore: registered new interface driver usbhid
Mar 15 12:09:50 akideck kernel: usbhid: USB HID core driver
Mar 15 12:09:50 akideck kernel: BTRFS: device label rootfs devid 1 transid 60 /dev/nvme0n1p4 (259:4) scanned by mount (353)
Mar 15 12:09:50 akideck kernel: BTRFS info (device nvme0n1p4): first mount of filesystem 85554fab-77fa-4f7b-b49e-d978fff9151b
Mar 15 12:09:50 akideck kernel: BTRFS info (device nvme0n1p4): using crc32c (crc32c-intel) checksum algorithm
Mar 15 12:09:50 akideck kernel: BTRFS info (device nvme0n1p4): using free-space-tree
Mar 15 12:09:50 akideck kernel: tsc: Refined TSC clocksource calibration: 2799.999 MHz
Mar 15 12:09:50 akideck kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x285c3fb0b68, max_idle_ns: 440795224466 ns
Mar 15 12:09:50 akideck kernel: clocksource: Switched to clocksource tsc
Mar 15 12:09:50 akideck kernel: EXT4-fs (nvme0n1p6): mounted filesystem 17ecaaea-e4ef-49bb-9805-8d4a05cf1efa r/w with ordered data mode. Quota mode: none.
Mar 15 12:09:50 akideck kernel: overlayfs: "xino" feature enabled using 2 upper inode bits.
Mar 15 12:09:50 akideck systemd[1]: systemd 257.2-1.1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
Mar 15 12:09:50 akideck systemd[1]: Detected architecture x86-64.
Mar 15 12:09:50 akideck systemd[1]: Hostname set to <akideck>.
Mar 15 12:09:50 akideck systemd[1]: bpf-restrict-fs: LSM BPF program attached
Mar 15 12:09:50 akideck kernel: zram: Added device: zram0
Mar 15 12:09:50 akideck systemd[1]: Queued start job for default target Graphical Interface.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/dirmngr.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/getty.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/gpg-agent.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/gpg-agent-browser.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/gpg-agent-extra.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/gpg-agent-ssh.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/keyboxd.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/modprobe.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/systemd-fsck.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/systemd-growfs.
Mar 15 12:09:50 akideck systemd[1]: Created slice Slice /system/systemd-zram-setup.
Mar 15 12:09:50 akideck systemd[1]: Created slice User and Session Slice.
Mar 15 12:09:50 akideck systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Mar 15 12:09:50 akideck systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Mar 15 12:09:50 akideck systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Mar 15 12:09:50 akideck systemd[1]: Expecting device /dev/disk/by-partsets/self/efi...
Mar 15 12:09:50 akideck systemd[1]: Expecting device /dev/disk/by-partsets/shared/esp...
Mar 15 12:09:50 akideck systemd[1]: Expecting device /dev/disk/by-partsets/shared/home...
Mar 15 12:09:50 akideck systemd[1]: Expecting device /dev/tpmrm0...
Mar 15 12:09:50 akideck systemd[1]: Expecting device /dev/zram0...
Mar 15 12:09:50 akideck systemd[1]: Reached target Local Encrypted Volumes.
Mar 15 12:09:50 akideck systemd[1]: Reached target Login Prompts.
Mar 15 12:09:50 akideck systemd[1]: Reached target Local Integrity Protected Volumes.
Mar 15 12:09:50 akideck systemd[1]: Reached target Path Units.
Mar 15 12:09:50 akideck systemd[1]: Reached target Remote File Systems.
Mar 15 12:09:50 akideck systemd[1]: Reached target Slice Units.
Mar 15 12:09:50 akideck systemd[1]: Reached target Local Verity Protected Volumes.
Mar 15 12:09:50 akideck systemd[1]: Listening on Device-mapper event daemon FIFOs.
Mar 15 12:09:50 akideck systemd[1]: Listening on Process Core Dump Socket.
Mar 15 12:09:50 akideck systemd[1]: Listening on Credential Encryption/Decryption.
Mar 15 12:09:50 akideck systemd[1]: Listening on Journal Socket (/dev/log).
Mar 15 12:09:50 akideck systemd[1]: Listening on Journal Sockets.
Mar 15 12:09:50 akideck systemd[1]: Listening on udev Control Socket.
Mar 15 12:09:50 akideck systemd[1]: Listening on udev Kernel Socket.
Mar 15 12:09:50 akideck systemd[1]: Listening on User Database Manager Socket.
Mar 15 12:09:50 akideck systemd[1]: Mounting Huge Pages File System...
Mar 15 12:09:50 akideck systemd[1]: Mounting POSIX Message Queue File System...
Mar 15 12:09:50 akideck systemd[1]: Mounting Kernel Debug File System...
Mar 15 12:09:50 akideck systemd[1]: Mounting Kernel Trace File System...
Mar 15 12:09:50 akideck systemd[1]: Starting Create List of Static Device Nodes...
Mar 15 12:09:50 akideck systemd[1]: Starting Load Kernel Module configfs...
Mar 15 12:09:50 akideck systemd[1]: Starting Load Kernel Module dm_mod...
Mar 15 12:09:50 akideck systemd[1]: Starting Load Kernel Module drm...
Mar 15 12:09:50 akideck systemd[1]: Starting Load Kernel Module fuse...
Mar 15 12:09:50 akideck systemd[1]: Starting Load Kernel Module loop...
Mar 15 12:09:50 akideck systemd[1]: Starting File System Check on Root Device...
Mar 15 12:09:50 akideck systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Mar 15 12:09:50 akideck systemd[1]: Starting Journal Service...
Mar 15 12:09:50 akideck systemd[1]: Starting Load Kernel Modules...
Mar 15 12:09:50 akideck systemd[1]: Starting Load udev Rules from Credentials...
Mar 15 12:09:50 akideck systemd[1]: Starting Coldplug All udev Devices...
Mar 15 12:09:50 akideck systemd[1]: Mounted Huge Pages File System.
Mar 15 12:09:50 akideck systemd[1]: Mounted POSIX Message Queue File System.
Mar 15 12:09:50 akideck systemd[1]: Mounted Kernel Debug File System.
Mar 15 12:09:50 akideck systemd[1]: Mounted Kernel Trace File System.
Mar 15 12:09:50 akideck systemd[1]: Finished Create List of Static Device Nodes.
Mar 15 12:09:50 akideck kernel: loop: module loaded
Mar 15 12:09:50 akideck kernel: device-mapper: uevent: version 1.0.3
Mar 15 12:09:50 akideck kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@xxxxxxxxxxxxxxx
Mar 15 12:09:50 akideck systemd[1]: modprobe@configfs.service: Deactivated successfully.
Mar 15 12:09:50 akideck systemd[1]: Finished Load Kernel Module configfs.
Mar 15 12:09:50 akideck systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Mar 15 12:09:50 akideck systemd[1]: Finished Load Kernel Module dm_mod.
Mar 15 12:09:50 akideck systemd[1]: modprobe@drm.service: Deactivated successfully.
Mar 15 12:09:50 akideck systemd[1]: Finished Load Kernel Module drm.
Mar 15 12:09:50 akideck systemd[1]: modprobe@fuse.service: Deactivated successfully.
Mar 15 12:09:50 akideck systemd[1]: Finished Load Kernel Module fuse.
Mar 15 12:09:50 akideck systemd[1]: modprobe@loop.service: Deactivated successfully.
Mar 15 12:09:50 akideck systemd[1]: Finished Load Kernel Module loop.
Mar 15 12:09:50 akideck systemd[1]: Finished File System Check on Root Device.
Mar 15 12:09:50 akideck systemd[1]: Finished Load udev Rules from Credentials.
Mar 15 12:09:50 akideck systemd[1]: Mounting FUSE Control File System...
Mar 15 12:09:50 akideck systemd[1]: Mounting Kernel Configuration File System...
Mar 15 12:09:50 akideck systemd[1]: Starting Remount Root and Kernel File Systems...
Mar 15 12:09:50 akideck systemd-journald[511]: Collecting audit messages is disabled.
Mar 15 12:09:50 akideck systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
Mar 15 12:09:50 akideck kernel: i2c_dev: i2c /dev entries driver
Mar 15 12:09:50 akideck systemd[1]: Mounted FUSE Control File System.
Mar 15 12:09:50 akideck systemd[1]: Mounted Kernel Configuration File System.
Mar 15 12:09:50 akideck systemd[1]: Finished Remount Root and Kernel File Systems.
Mar 15 12:09:50 akideck systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
Mar 15 12:09:50 akideck systemd[1]: Starting Load/Save OS Random Seed...
Mar 15 12:09:50 akideck systemd[1]: Starting User Database Manager...
Mar 15 12:09:50 akideck systemd[1]: Finished Load/Save OS Random Seed.
Mar 15 12:09:50 akideck kernel: Asymmetric key parser 'pkcs8' registered
Mar 15 12:09:50 akideck systemd[1]: Finished Load Kernel Modules.
Mar 15 12:09:50 akideck systemd[1]: Starting Apply Kernel Variables...
Mar 15 12:09:50 akideck kernel: mmc0: new ultra high speed SDR104 SDXC card at address aaaa
Mar 15 12:09:50 akideck systemd[1]: Started User Database Manager.
Mar 15 12:09:50 akideck systemd-journald[511]: Journal started
Mar 15 12:09:50 akideck systemd-journald[511]: Runtime Journal (/run/log/journal/a43339ec119c4eaebebaf4ddc3ef55e1) is 8M, max 740.4M, 732.4M free.
Mar 15 12:09:50 akideck systemd-modules-load[512]: Inserted module 'crypto_user'
Mar 15 12:09:50 akideck systemd-modules-load[512]: Inserted module 'i2c_dev'
Mar 15 12:09:50 akideck systemd-modules-load[512]: Inserted module 'hid_nintendo'
Mar 15 12:09:50 akideck systemd-modules-load[512]: Inserted module 'hid_playstation'
Mar 15 12:09:50 akideck systemd-modules-load[512]: Inserted module 'pkcs8_key_parser'
Mar 15 12:09:50 akideck systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
Mar 15 12:09:50 akideck systemd[1]: Started Journal Service.
Mar 15 12:09:50 akideck systemd[1]: Finished Apply Kernel Variables.
Mar 15 12:09:50 akideck systemd[1]: Starting Create System Users...
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/alpm.conf:1: Conflict with earlier configuration for user 'alpm' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:111, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/avahi.conf:1: Conflict with earlier configuration for user 'avahi' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:5, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:17: Conflict with earlier configuration for group 'adm' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:9, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:20: Conflict with earlier configuration for group 'wheel' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:10, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:23: Conflict with earlier configuration for group 'utmp' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:11, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:26: Conflict with earlier configuration for group 'audio' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:12, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:27: Conflict with earlier configuration for group 'disk' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:13, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:28: Conflict with earlier configuration for group 'input' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:14, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:29: Conflict with earlier configuration for group 'kmem' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:15, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:30: Conflict with earlier configuration for group 'kvm' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:16, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:31: Conflict with earlier configuration for group 'lp' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:17, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:32: Conflict with earlier configuration for group 'optical' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:18, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:33: Conflict with earlier configuration for group 'render' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:19, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:34: Conflict with earlier configuration for group 'sgx' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:20, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:35: Conflict with earlier configuration for group 'storage' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:21, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:37: Conflict with earlier configuration for group 'uucp' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:22, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:38: Conflict with earlier configuration for group 'video' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:23, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/basic.conf:41: Conflict with earlier configuration for group 'users' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:24, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/flatpak.conf:1: Conflict with earlier configuration for user 'flatpak' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:28, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/fwupd.conf:1: Conflict with earlier configuration for user 'fwupd' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:108, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/gamemode.conf:1: Conflict with earlier configuration for group 'gamemode' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:32, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/git.conf:1: Conflict with earlier configuration for user 'git' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:40, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/i2c-tools.conf:1: Conflict with earlier configuration for group 'i2c' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:105, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/networkmanager-openvpn.conf:1: Conflict with earlier configuration for user 'nm-openvpn' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:44, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/openvpn.conf:1: Conflict with earlier configuration for user 'openvpn' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:48, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/sddm.conf:2: Conflict with earlier configuration for user 'sddm' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:52, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/seatd.conf:1: Conflict with earlier configuration for group 'seat' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:56, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/shadow.conf:1: Conflict with earlier configuration for group 'groups' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:101, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/steamos-log-submitter.conf:6: Conflict with earlier configuration for user 'steamos-log-submitter' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:60, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/steamos-log-submitter.conf:7: Conflict with earlier configuration for group 'steamos-log-submitter' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:61, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/steamos-users.conf:13: Conflict with earlier configuration for group 'gamemode' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:32, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/systemd-coredump.conf:8: Conflict with earlier configuration for user 'systemd-coredump' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:65, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/systemd-journal.conf:8: Conflict with earlier configuration for group 'systemd-journal' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:69, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/systemd-network.conf:8: Conflict with earlier configuration for user 'systemd-network' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:73, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/systemd-oom.conf:8: Conflict with earlier configuration for user 'systemd-oom' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:77, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/systemd-remote.conf:8: Conflict with earlier configuration for user 'systemd-journal-remote' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:81, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/systemd-resolve.conf:8: Conflict with earlier configuration for user 'systemd-resolve' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:85, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/systemd-timesync.conf:8: Conflict with earlier configuration for user 'systemd-timesync' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:89, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/tpm2-tss.conf:2: Conflict with earlier configuration for user 'tss' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:93, ignoring line.
Mar 15 12:09:50 akideck systemd-sysusers[553]: /usr/lib/sysusers.d/util-linux.conf:2: Conflict with earlier configuration for group 'rfkill' in /usr/lib/sysusers.d/01-steamos-enforce-UID-GID.conf:97, ignoring line.
Mar 15 12:09:50 akideck systemd[1]: Finished Create System Users.
Mar 15 12:09:50 akideck systemd[1]: Starting Network Name Resolution...
Mar 15 12:09:50 akideck systemd[1]: Starting Network Time Synchronization...
Mar 15 12:09:50 akideck systemd[1]: Starting Create Static Device Nodes in /dev...
Mar 15 12:09:50 akideck systemd[1]: Finished Coldplug All udev Devices.
Mar 15 12:09:50 akideck systemd[1]: Finished Create Static Device Nodes in /dev.
Mar 15 12:09:50 akideck systemd[1]: Reached target Preparation for Local File Systems.
Mar 15 12:09:50 akideck systemd[1]: Set up automount efi.automount.
Mar 15 12:09:50 akideck systemd[1]: Set up automount esp.automount.
Mar 15 12:09:50 akideck systemd[1]: Starting Rule-based Manager for Device Events and Files...
Mar 15 12:09:50 akideck systemd[1]: Started Network Time Synchronization.
Mar 15 12:09:50 akideck systemd[1]: Reached target System Time Set.
Mar 15 12:09:50 akideck systemd-resolved[556]: Positive Trust Anchors:
Mar 15 12:09:50 akideck systemd-resolved[556]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Mar 15 12:09:50 akideck systemd-resolved[556]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa resolver.arpa corp home internal intranet lan local private test
Mar 15 12:09:50 akideck systemd-resolved[556]: Using system hostname 'akideck'.
Mar 15 12:09:50 akideck systemd[1]: Started Network Name Resolution.
Mar 15 12:09:50 akideck systemd[1]: Reached target Host and Network Name Lookups.
Mar 15 12:09:50 akideck systemd-udevd[566]: Using default interface naming scheme 'v257'.
Mar 15 12:09:50 akideck systemd[1]: Started Rule-based Manager for Device Events and Files.
Mar 15 12:09:50 akideck systemd[1]: Found device /dev/zram0.
Mar 15 12:09:50 akideck systemd[1]: Starting Create swap on /dev/zram0...
Mar 15 12:09:50 akideck kernel: mmcblk0: mmc0:aaaa SN01T 954 GiB
Mar 15 12:09:50 akideck kernel:  mmcblk0: p1
Mar 15 12:09:50 akideck kernel: zram0: detected capacity change from 0 to 15164416
Mar 15 12:09:50 akideck systemd-makefs[610]: /dev/zram0 successfully formatted as swap (label "zram0", uuid 2005b9f5-ec4c-4c23-b5cd-95495b81b778)
Mar 15 12:09:50 akideck kernel: AMDI0020:00: ttyS4 at MMIO 0xfedc9000 (irq = 3, base_baud = 3000000) is a 16550A
Mar 15 12:09:50 akideck systemd[1]: Found device Phison ESMP001TKB5C3-E19TS efi.
Mar 15 12:09:50 akideck systemd[1]: Finished Create swap on /dev/zram0.
Mar 15 12:09:50 akideck kernel: AMDI0020:04: ttyS5 at MMIO 0xfedd1000 (irq = 15, base_baud = 3000000) is a 16550A
Mar 15 12:09:50 akideck kernel: serial serial0: tty port ttyS5 registered
Mar 15 12:09:50 akideck kernel: i2c_designware AMDI0010:00: i2c_dw_handle_tx_abort: lost arbitration
Mar 15 12:09:50 akideck kernel: ACPI: video: Video Device [VGA1] (multi-head: yes  rom: no  post: no)
Mar 15 12:09:50 akideck kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d/LNXVIDEO:01/input/input3
Mar 15 12:09:50 akideck kernel: ccp 0000:04:00.2: enabling device (0000 -> 0002)
Mar 15 12:09:50 akideck kernel: ccp 0000:04:00.2: tee enabled
Mar 15 12:09:50 akideck kernel: ccp 0000:04:00.2: psp enabled
Mar 15 12:09:50 akideck systemd[1]: Found device Phison ESMP001TKB5C3-E19TS home.
Mar 15 12:09:50 akideck systemd[1]: Found device Phison ESMP001TKB5C3-E19TS esp.
Mar 15 12:09:50 akideck mtp-probe[640]: checking bus 3, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3"
Mar 15 12:09:50 akideck mtp-probe[640]: bus: 3, device: 2 was not an MTP device
Mar 15 12:09:50 akideck systemd[1]: Activating swap Compressed Swap on /dev/zram0...
Mar 15 12:09:50 akideck systemd[1]: Starting File System Check on /dev/disk/by-partsets/self/efi...
Mar 15 12:09:50 akideck systemd[1]: Starting File System Check on /dev/disk/by-partsets/shared/esp...
Mar 15 12:09:50 akideck systemd[1]: Starting File System Check on /dev/disk/by-partsets/shared/home...
Mar 15 12:09:50 akideck kernel: cdc_acm 3-3:1.3: ttyACM0: USB ACM device
Mar 15 12:09:50 akideck kernel: usbcore: registered new interface driver cdc_acm
Mar 15 12:09:50 akideck kernel: cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
Mar 15 12:09:50 akideck systemd-fsck[672]: fsck.fat 4.2 (2021-01-31)
Mar 15 12:09:50 akideck systemd-fsck[672]: /dev/nvme0n1p2: 14 files, 359/16343 clusters
Mar 15 12:09:50 akideck systemd[1]: Finished File System Check on /dev/disk/by-partsets/self/efi.
Mar 15 12:09:50 akideck systemd-fsck[670]: fsck.fat 4.2 (2021-01-31)
Mar 15 12:09:50 akideck systemd-fsck[670]: /dev/nvme0n1p1: 19 files, 957/32695 clusters
Mar 15 12:09:50 akideck systemd[1]: Finished File System Check on /dev/disk/by-partsets/shared/esp.
Mar 15 12:09:50 akideck systemd-fsck[671]: home: clean, 395138/15454208 files, 99486941/247265617 blocks
Mar 15 12:09:50 akideck systemd[1]: Finished File System Check on /dev/disk/by-partsets/shared/home.
Mar 15 12:09:50 akideck systemd[1]: Activated swap Compressed Swap on /dev/zram0.
Mar 15 12:09:50 akideck kernel: Adding 7582204k swap on /dev/zram0.  Priority:100 extents:1 across:7582204k SSDsc
Mar 15 12:09:50 akideck kernel: input: Valve Software Steam Controller as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.0/0003:28DE:1205.0001/input/input4
Mar 15 12:09:50 akideck kernel: hid-generic 0003:28DE:1205.0001: input,hidraw0: USB HID v1.10 Mouse [Valve Software Steam Controller] on usb-0000:04:00.4-3/input0
Mar 15 12:09:50 akideck kernel: input: Valve Software Steam Controller as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.1/0003:28DE:1205.0002/input/input5
Mar 15 12:09:50 akideck kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Mar 15 12:09:50 akideck kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Mar 15 12:09:50 akideck kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
Mar 15 12:09:50 akideck kernel: i2c i2c-6: Successfully instantiated SPD at 0x50
Mar 15 12:09:50 akideck kernel: input: PC Speaker as /devices/platform/pcspkr/input/input7
Mar 15 12:09:50 akideck kernel: i2c i2c-6: Successfully instantiated SPD at 0x51
Mar 15 12:09:50 akideck kernel: i2c i2c-6: Successfully instantiated SPD at 0x52
Mar 15 12:09:50 akideck kernel: i2c i2c-6: Successfully instantiated SPD at 0x53
Mar 15 12:09:50 akideck kernel: tpm_crb MSFT0101:00: Disabling hwrng
Mar 15 12:09:50 akideck kernel: tpm tpm0: tpm_read_log_acpi: Failed to map ACPI memory
Mar 15 12:09:50 akideck kernel: RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
Mar 15 12:09:50 akideck kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
Mar 15 12:09:50 akideck kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input6
Mar 15 12:09:50 akideck kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
Mar 15 12:09:50 akideck kernel: sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
Mar 15 12:09:50 akideck kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
Mar 15 12:09:50 akideck kernel: cryptd: max_cpu_qlen set to 1000
Mar 15 12:09:50 akideck kernel: AES CTR mode by8 optimization enabled
Mar 15 12:09:50 akideck kernel: hid-generic 0003:28DE:1205.0002: input,hidraw1: USB HID v1.10 Keyboard [Valve Software Steam Controller] on usb-0000:04:00.4-3/input1
Mar 15 12:09:50 akideck kernel: hid-generic 0003:28DE:1205.0003: hiddev96,hidraw2: USB HID v1.10 Device [Valve Software Steam Controller] on usb-0000:04:00.4-3/input2
Mar 15 12:09:50 akideck kernel: input: FTS3528:00 2808:1015 Touchscreen as /devices/platform/AMDI0010:01/i2c-1/i2c-FTS3528:00/0018:2808:1015.0004/input/input8
Mar 15 12:09:50 akideck kernel: snd_hda_intel 0000:04:00.1: enabling device (0000 -> 0002)
Mar 15 12:09:50 akideck kernel: snd_hda_intel 0000:04:00.1: Handle vga_switcheroo audio client
Mar 15 12:09:50 akideck kernel: max98388 i2c-ADS8388:00: MAX98388 revisionID: 0x41
Mar 15 12:09:50 akideck kernel: max98388 i2c-ADS8388:01: MAX98388 revisionID: 0x41
Mar 15 12:09:50 akideck systemd[1]: Starting Virtual Console Setup...
Mar 15 12:09:50 akideck systemd[1]: Found device /dev/tpmrm0.
Mar 15 12:09:50 akideck systemd[1]: Reached target Trusted Platform Module.
Mar 15 12:09:50 akideck systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:50 akideck systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:50 akideck systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Mar 15 12:09:50 akideck systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:50 akideck systemd[1]: TPM PCR Root File System Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:50 akideck systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:50 akideck systemd[1]: Starting Repartition Root Disk...
Mar 15 12:09:50 akideck systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:50 akideck kernel: Bluetooth: Core ver 2.22
Mar 15 12:09:50 akideck systemd-repart[699]: TYPE                                 LABEL    UUID                                 PARTNO FILE              RAW SIZE       SIZE PADDING
Mar 15 12:09:50 akideck systemd-repart[699]: home                                 home     ed5c5eb8-8de7-4c6c-9965-7aae6a9d23f4 7      90-home.conf 1012799967232     943.2G 0B
Mar 15 12:09:50 akideck systemd-repart[699]: esp                                  esp      d942add6-3445-49a7-8cd6-333572d59545 0                        67108864        64M 0B
Mar 15 12:09:50 akideck systemd-repart[699]: ebd0a0a2-b9e5-4433-87c0-68b6b72699c7 efi-A    3aa080ee-ef49-4929-a90f-4dfb6b93d329 1                        33554432        32M 0B
Mar 15 12:09:50 akideck systemd-repart[699]: ebd0a0a2-b9e5-4433-87c0-68b6b72699c7 efi-B    886aefa6-96a5-4693-bc09-02b9ad5a288e 2                        33554432        32M 0B
Mar 15 12:09:50 akideck systemd-repart[699]: root-x86-64                          rootfs-A 98d500a4-1c6e-4782-851a-8520e262cfb8 3                      5368709120         5G 0B
Mar 15 12:09:50 akideck systemd-repart[699]: root-x86-64                          rootfs-B bc1f321f-c1e7-47e2-90cb-551059dad36a 4                      5368709120         5G 0B
Mar 15 12:09:50 akideck systemd-repart[699]: var                                  var-A    82442d2e-6325-4af3-8fdd-22c22c9fa198 5                       268435456       256M 0B
Mar 15 12:09:50 akideck systemd-repart[699]: var                                  var-B    9da3a151-acd3-47fc-b67f-d42b369d3e98 6                       268435456       256M 0B
Mar 15 12:09:50 akideck systemd-repart[699]:                                                                                                                      Σ = 953.8G Σ = 0B
Mar 15 12:09:50 akideck systemd-repart[699]:  ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒░
Mar 15 12:09:50 akideck systemd-repart[699]:  ├─ var-B
Mar 15 12:09:50 akideck systemd-repart[699]:  ├─ var-A
Mar 15 12:09:50 akideck systemd-repart[699]:  ├─ rootfs-B
Mar 15 12:09:50 akideck systemd-repart[699]:  ├─ rootfs-A
Mar 15 12:09:50 akideck systemd-repart[699]:  ├─ efi-B
Mar 15 12:09:50 akideck systemd-repart[699]: No changes.
Mar 15 12:09:50 akideck systemd-repart[699]:  ├─ efi-A
Mar 15 12:09:50 akideck systemd-repart[699]:  ├─ esp
Mar 15 12:09:50 akideck systemd-repart[699]:  └─ 90-home.conf
Mar 15 12:09:50 akideck kernel: input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card0/input11
Mar 15 12:09:50 akideck systemd[1]: Finished Repartition Root Disk.
Mar 15 12:09:50 akideck kernel: NET: Registered PF_BLUETOOTH protocol family
Mar 15 12:09:50 akideck kernel: Bluetooth: HCI device and connection manager initialized
Mar 15 12:09:50 akideck kernel: Bluetooth: HCI socket layer initialized
Mar 15 12:09:50 akideck kernel: Bluetooth: L2CAP socket layer initialized
Mar 15 12:09:50 akideck kernel: Bluetooth: SCO socket layer initialized
Mar 15 12:09:50 akideck kernel: input: FTS3528:00 2808:1015 as /devices/platform/AMDI0010:01/i2c-1/i2c-FTS3528:00/0018:2808:1015.0004/input/input10
Mar 15 12:09:50 akideck kernel: hid-generic 0018:2808:1015.0004: input,hidraw3: I2C HID v1.00 Device [FTS3528:00 2808:1015] on i2c-FTS3528:00
Mar 15 12:09:50 akideck kernel: input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card0/input12
Mar 15 12:09:50 akideck kernel: input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card0/input13
Mar 15 12:09:50 akideck kernel: input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card0/input14
Mar 15 12:09:50 akideck systemd[1]: Finished Virtual Console Setup.
Mar 15 12:09:50 akideck systemd-timesyncd[557]: Network configuration changed, trying to establish connection.
Mar 15 12:09:50 akideck kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Mar 15 12:09:50 akideck systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Mar 15 12:09:50 akideck systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
Mar 15 12:09:50 akideck systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:50 akideck systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:50 akideck systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:50 akideck kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Mar 15 12:09:50 akideck kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Mar 15 12:09:50 akideck (udev-worker)[592]: controlC0: Process '/usr/bin/alsactl restore 0' failed with exit code 2.
Mar 15 12:09:51 akideck (udev-worker)[600]: cfg80211: Process '/usr/bin/set-wireless-regdom' failed with exit code 1.
Mar 15 12:09:51 akideck systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Mar 15 12:09:51 akideck systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
Mar 15 12:09:51 akideck systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:51 akideck systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:51 akideck systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:51 akideck kernel: kvm_amd: TSC scaling supported
Mar 15 12:09:51 akideck kernel: kvm_amd: Nested Virtualization enabled
Mar 15 12:09:51 akideck kernel: kvm_amd: Nested Paging enabled
Mar 15 12:09:51 akideck kernel: kvm_amd: LBR virtualization supported
Mar 15 12:09:51 akideck kernel: kvm_amd: SEV enabled (ASIDs 1 - 14)
Mar 15 12:09:51 akideck kernel: kvm_amd: SEV-ES disabled (ASIDs 0 - 0)
Mar 15 12:09:51 akideck kernel: kvm_amd: Virtual VMLOAD VMSAVE supported
Mar 15 12:09:51 akideck kernel: kvm_amd: Virtual GIF supported
Mar 15 12:09:51 akideck kernel: input: Valve Software Steam Controller as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.1/0003:28DE:1205.0002/input/input15
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART driver ver 2.3
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol H4 registered
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol BCSP registered
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol LL registered
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol ATH3K registered
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol Three-wire (H5) registered
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol Intel registered
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol Broadcom registered
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol QCA registered
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol AG6XX registered
Mar 15 12:09:51 akideck kernel: Bluetooth: HCI UART protocol Marvell registered
Mar 15 12:09:51 akideck systemd[1]: Starting Load/Save RF Kill Switch Status...
Mar 15 12:09:51 akideck kernel: dw-apb-uart AMDI0020:04: failed to request DMA
Mar 15 12:09:51 akideck systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Mar 15 12:09:51 akideck systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
Mar 15 12:09:51 akideck systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:51 akideck systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:51 akideck systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:51 akideck kernel: input: Valve Software Steam Controller as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.0/0003:28DE:1205.0001/input/input16
Mar 15 12:09:51 akideck systemd[1]: Mounting /efi...
Mar 15 12:09:51 akideck systemd[1]: Mounting /esp...
Mar 15 12:09:51 akideck systemd[1]: Mounting /home...
Mar 15 12:09:51 akideck systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Mar 15 12:09:51 akideck systemd[1]: Listening on Disk Image Download Service Socket.
Mar 15 12:09:51 akideck systemd-timesyncd[557]: Network configuration changed, trying to establish connection.
Mar 15 12:09:51 akideck systemd[1]: Started Load/Save RF Kill Switch Status.
Mar 15 12:09:51 akideck kernel: EXT4-fs (nvme0n1p8): Using encoding defined by superblock: utf8-12.1.0 with flags 0x0
Mar 15 12:09:51 akideck systemd[1]: Mounted /efi.
Mar 15 12:09:51 akideck systemd[1]: Mounted /esp.
Mar 15 12:09:51 akideck kernel: EXT4-fs (nvme0n1p8): mounted filesystem 1bb334e6-3c14-46b3-9bae-d50053587d50 r/w with ordered data mode. Quota mode: none.
Mar 15 12:09:51 akideck systemd[1]: Mounted /home.
Mar 15 12:09:51 akideck systemd[1]: Create Swap File was skipped because of an unmet condition check (ConditionPathExists=!/home/swapfile).
Mar 15 12:09:51 akideck systemd[1]: Activating swap Swap...
Mar 15 12:09:51 akideck kernel: hid-steam 0003:28DE:1205.0002: input,hidraw0: USB HID v1.10 Keyboard [Valve Software Steam Controller] on usb-0000:04:00.4-3/input1
Mar 15 12:09:51 akideck kernel: hid-steam 0003:28DE:1205.0001: input,hidraw1: USB HID v1.10 Mouse [Valve Software Steam Controller] on usb-0000:04:00.4-3/input0
Mar 15 12:09:51 akideck kernel: hid-steam 0003:28DE:1205.0003: hiddev96: USB HID v1.10 Device [Valve Software Steam Controller] on usb-0000:04:00.4-3/input2
Mar 15 12:09:51 akideck kernel: Adding 1048572k swap on /home/swapfile.  Priority:-2 extents:2 across:1957888k SS
Mar 15 12:09:51 akideck kernel: EXT4-fs (nvme0n1p8): resizing filesystem from 247265617 to 247265617 blocks
Mar 15 12:09:51 akideck kernel: Bluetooth: hci0: setting up qca2066
Mar 15 12:09:51 akideck kernel: Bluetooth: hci0: Frame reassembly failed (-84)
Mar 15 12:09:51 akideck kernel: hid-steam 0003:28DE:1205.0003: Steam Controller 'FY1S3390004E' connected
Mar 15 12:09:51 akideck kernel: input: Steam Deck as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input17
Mar 15 12:09:51 akideck kernel: i2c_designware AMDI0010:00: i2c_dw_handle_tx_abort: lost arbitration
Mar 15 12:09:51 akideck kernel: input: Steam Deck Motion Sensors as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input18
Mar 15 12:09:51 akideck kernel: Bluetooth: hci0: QCA Product ID   :0x00000013
Mar 15 12:09:51 akideck kernel: Bluetooth: hci0: QCA SOC Version  :0x400c1211
Mar 15 12:09:51 akideck kernel: Bluetooth: hci0: QCA ROM Version  :0x00000201
Mar 15 12:09:51 akideck kernel: Bluetooth: hci0: QCA Patch Version:0x000038e6
Mar 15 12:09:51 akideck kernel: Bluetooth: hci0: QCA controller version 0x12110201
Mar 15 12:09:51 akideck kernel: Bluetooth: hci0: QCA Downloading qca/hpbtfw21.tlv
Mar 15 12:09:51 akideck kernel: hid-steam 0003:28DE:1205.0005: hidraw2: USB HID v1.10 Device [Valve Software Steam Controller] on usb-0000:04:00.4-3/input2
Mar 15 12:09:51 akideck systemd[1]: Starting Grow File System on /home...
Mar 15 12:09:51 akideck systemd[1]: Activated swap Swap.
Mar 15 12:09:51 akideck systemd[1]: Reached target Swaps.
Mar 15 12:09:51 akideck systemd-growfs[733]: Successfully resized "/home" to 943.2G bytes.
Mar 15 12:09:51 akideck systemd[1]: Finished Grow File System on /home.
Mar 15 12:09:51 akideck kernel: input: FTS3528:00 2808:1015 as /devices/platform/AMDI0010:01/i2c-1/i2c-FTS3528:00/0018:2808:1015.0004/input/input19
Mar 15 12:09:51 akideck kernel: input: FTS3528:00 2808:1015 UNKNOWN as /devices/platform/AMDI0010:01/i2c-1/i2c-FTS3528:00/0018:2808:1015.0004/input/input21
Mar 15 12:09:51 akideck kernel: hid-multitouch 0018:2808:1015.0004: input,hidraw3: I2C HID v1.00 Device [FTS3528:00 2808:1015] on i2c-FTS3528:00
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /nix...
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /opt...
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /root...
Mar 15 12:09:52 akideck systemd[1]: srv.mount: Directory /srv to mount over is not empty, mounting anyway.
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /srv...
Mar 15 12:09:52 akideck systemd[1]: Mounting Temporary Directory /tmp...
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /var/cache/pacman...
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /var/lib/docker...
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /var/lib/flatpak...
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /var/lib/steamos-log-submitter...
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /var/lib/systemd/coredump...
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /var/log...
Mar 15 12:09:52 akideck systemd[1]: Mounting SteamOS Offload - /var/tmp...
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /nix.
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /opt.
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /root.
Mar 15 12:09:52 akideck kernel: Bluetooth: hci0: QCA Downloading qca/hpnv21g.309
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /srv.
Mar 15 12:09:52 akideck systemd[1]: Mounted Temporary Directory /tmp.
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /var/cache/pacman.
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /var/lib/docker.
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /var/lib/flatpak.
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /var/lib/steamos-log-submitter.
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /var/lib/systemd/coredump.
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /var/log.
Mar 15 12:09:52 akideck systemd[1]: Mounted SteamOS Offload - /var/tmp.
Mar 15 12:09:52 akideck systemd[1]: Reached target Local File Systems.
Mar 15 12:09:52 akideck systemd[1]: Reached target SteamOS Offload.
Mar 15 12:09:52 akideck systemd[1]: Listening on Boot Entries Service Socket.
Mar 15 12:09:52 akideck systemd-timesyncd[557]: Network configuration changed, trying to establish connection.
Mar 15 12:09:52 akideck systemd[1]: Listening on System Extension Image Management.
Mar 15 12:09:52 akideck systemd-timesyncd[557]: Network configuration changed, trying to establish connection.
Mar 15 12:09:52 akideck systemd[1]: SteamOS Chainloader Installation was skipped because of an unmet condition check (ConditionPathExists=!/esp/efi/boot/bootx64.efi).
Mar 15 12:09:52 akideck systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Mar 15 12:09:52 akideck systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
Mar 15 12:09:52 akideck systemd[1]: Starting Flush Journal to Persistent Storage...
Mar 15 12:09:52 akideck systemd-journald[511]: Time spent on flushing to /var/log/journal/a43339ec119c4eaebebaf4ddc3ef55e1 is 16.881ms for 1212 entries.
Mar 15 12:09:52 akideck systemd-journald[511]: System Journal (/var/log/journal/a43339ec119c4eaebebaf4ddc3ef55e1) is 49.9M, max 50M, 32K free.
Mar 15 12:09:52 akideck systemd-journald[511]: Received client request to flush runtime journal.
Mar 15 12:09:52 akideck systemd[1]: Finished Flush Journal to Persistent Storage.
Mar 15 12:09:52 akideck systemd[1]: Starting Create System Files and Directories...
Mar 15 12:09:52 akideck kernel: Bluetooth: hci0: QCA setup on UART is completed
Mar 15 12:09:52 akideck kernel: Bluetooth: hci0: HFP non-HCI data transport is supported
Mar 15 12:09:52 akideck systemd-timesyncd[557]: Network configuration changed, trying to establish connection.
Mar 15 12:09:52 akideck systemd-timesyncd[557]: Network configuration changed, trying to establish connection.
Mar 15 12:09:52 akideck systemd-timesyncd[557]: Network configuration changed, trying to establish connection.
Mar 15 12:09:52 akideck systemd-tmpfiles[766]: fchownat() of /usr/bin/groupmems failed: Read-only file system
Mar 15 12:09:52 akideck systemd[1]: Finished Create System Files and Directories.
Mar 15 12:09:52 akideck systemd[1]: Starting Rebuild Dynamic Linker Cache...
Mar 15 12:09:52 akideck systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Mar 15 12:09:52 akideck systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Mar 15 12:09:52 akideck systemd[1]: Starting Rebuild Journal Catalog...
Mar 15 12:09:52 akideck systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Mar 15 12:09:52 akideck systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Mar 15 12:09:52 akideck systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Mar 15 12:09:52 akideck systemd[1]: Finished Rebuild Journal Catalog.
Mar 15 12:09:54 akideck kernel: [drm] amdgpu kernel modesetting enabled.
Mar 15 12:09:54 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: enabling device (0000 -> 0002)
Mar 15 12:09:54 akideck kernel: intel_rapl_common: Found RAPL domain package
Mar 15 12:09:54 akideck kernel: intel_rapl_common: Found RAPL domain core
Mar 15 12:09:54 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: Firmware paths/files for ipc type 0:
Mar 15 12:09:54 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5:  Topology file:     amd/sof-tplg/sof-vangogh-nau8821-max.tplg
Mar 15 12:09:54 akideck kernel: ath11k_pci 0000:03:00.0: BAR 0 [mem 0x80000000-0x801fffff 64bit]: assigned
Mar 15 12:09:55 akideck kernel: ath11k_pci 0000:03:00.0: enabling device (0000 -> 0002)
Mar 15 12:09:55 akideck kernel: ath11k_pci 0000:03:00.0: MSI vectors: 1
Mar 15 12:09:55 akideck kernel: ath11k_pci 0000:03:00.0: qca2066 hw2.1
Mar 15 12:09:55 akideck kernel: amdgpu: Virtual CRAT table created for CPU
Mar 15 12:09:55 akideck kernel: amdgpu: Topology: Add CPU node
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: enabling device (0006 -> 0007)
Mar 15 12:09:55 akideck kernel: [drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x1435 0x1002:0x0123 0xAE).
Mar 15 12:09:55 akideck kernel: [drm] register mmio base: 0x80500000
Mar 15 12:09:55 akideck kernel: [drm] register mmio size: 524288
Mar 15 12:09:55 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: Firmware info: version 2:5:0-2f2ab
Mar 15 12:09:55 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: Firmware: ABI 3:26:0 Kernel ABI 3:23:1
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 0 <nv_common>
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 1 <gmc_v10_0>
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 2 <navi10_ih>
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 3 <psp>
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 4 <smu>
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 5 <dm>
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 6 <gfx_v10_0>
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 7 <sdma_v5_2>
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 8 <vcn_v3_0>
Mar 15 12:09:55 akideck kernel: [drm] add ip block number 9 <jpeg_v3_0>
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: Fetched VBIOS from VFCT
Mar 15 12:09:55 akideck kernel: amdgpu: ATOM BIOS: 113-AMDSphJupiter-002
Mar 15 12:09:55 akideck kernel: NET: Registered PF_QIPCRTR protocol family
Mar 15 12:09:55 akideck kernel: mousedev: PS/2 mouse device common for all mice
Mar 15 12:09:55 akideck kernel: Console: switching consoles 4-6 to dummy device
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: vgaarb: deactivate vga console
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
Mar 15 12:09:55 akideck kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: VRAM: 1024M 0x000000F400000000 - 0x000000F43FFFFFFF (1024M used)
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
Mar 15 12:09:55 akideck kernel: [drm] Detected VRAM RAM=1024M, BAR=1024M
Mar 15 12:09:55 akideck kernel: [drm] RAM width 128bits LPDDR5
Mar 15 12:09:55 akideck kernel: [drm] amdgpu: 1024M of VRAM memory ready
Mar 15 12:09:55 akideck kernel: [drm] amdgpu: 8128M of GTT memory ready.
Mar 15 12:09:55 akideck kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
Mar 15 12:09:55 akideck kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000F43FC00000).
Mar 15 12:09:55 akideck kernel: [drm] Loading DMUB firmware via PSP: version=0x0300000A
Mar 15 12:09:55 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: Topology: ABI 3:26:0 Kernel ABI 3:23:1
Mar 15 12:09:55 akideck kernel: sof_mach nau8821-max: ASoC: Parent card not yet available, widget card binding deferred
Mar 15 12:09:55 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: ACP_HS config ACP1 channel 2 rate 48000 tdm_mode 0
Mar 15 12:09:55 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: ACP_BT config ACP2 channel 2 rate 16000 tdm_mode 0
Mar 15 12:09:55 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: ACP_BT config ACP2 channel 2 rate 16000 tdm_mode 0
Mar 15 12:09:55 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: ACP_SP config ACP0 channel 2 rate 48000 tdm_mode 0
Mar 15 12:09:55 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: ACP_HS config ACP1 channel 2 rate 48000 tdm_mode 0
Mar 15 12:09:55 akideck kernel: snd_sof_amd_vangogh 0000:04:00.5: ACP_SP config ACP0 channel 2 rate 48000 tdm_mode 0
Mar 15 12:09:55 akideck kernel: [drm] use_doorbell being set to: [false]
Mar 15 12:09:55 akideck kernel: [drm] Found VCN firmware Version ENC: 1.27 DEC: 2 VEP: 0 Revision: 0
Mar 15 12:09:55 akideck kernel: max98388 i2c-ADS8388:00: Reset completed (retry:0)
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: reserve 0xa00000 from 0xf43e000000 for PSP TMR
Mar 15 12:09:55 akideck kernel: max98388 i2c-ADS8388:01: Reset completed (retry:0)
Mar 15 12:09:55 akideck kernel:  acp-headset-codec: codec dai name = nau8821-hifi
Mar 15 12:09:55 akideck kernel: input: sof-nau8821-max Headset Jack as /devices/pci0000:00/0000:00:08.1/0000:04:00.5/nau8821-max/sound/card1/input22
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is initialized successfully!
Mar 15 12:09:55 akideck kernel: [drm] Seamless boot condition check passed
Mar 15 12:09:55 akideck kernel: [drm] Display Core v3.2.291 initialized on DCN 3.0.1
Mar 15 12:09:55 akideck kernel: [drm] DP-HDMI FRL PCON supported
Mar 15 12:09:55 akideck kernel: [drm] DMUB hardware initialized: version=0x0300000A
Mar 15 12:09:55 akideck kernel: mhi mhi0: Requested to power ON
Mar 15 12:09:55 akideck kernel: mhi mhi0: Power on setup success
Mar 15 12:09:55 akideck kernel: snd_hda_intel 0000:04:00.1: bound 0000:04:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
Mar 15 12:09:55 akideck unknown: SteamOS System Info: SteamOS
Mar 15 12:09:55 akideck unknown: SteamOS System Info: Partition:
Mar 15 12:09:55 akideck unknown: A
Mar 15 12:09:55 akideck unknown: SteamOS System Info: Serial Numbers:
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        board_serial: MECS33800165
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        product_serial: FY1S3390004E
Mar 15 12:09:55 akideck unknown: SteamOS System Info: Battery:
Mar 15 12:09:55 akideck kernel: ramoops: using module parameters
Mar 15 12:09:55 akideck kernel: pstore: Using crash dump compression: deflate
Mar 15 12:09:55 akideck kernel: pstore: Registered ramoops as persistent store backend
Mar 15 12:09:55 akideck kernel: ramoops: using 0x500000@0x7e000000, ecc: 0
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        model_name: VDL
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        status: Discharging
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        capacity: 61
Mar 15 12:09:55 akideck unknown: SteamOS System Info: Boot Config:
Mar 15 12:09:55 akideck kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Mar 15 12:09:55 akideck kernel: Bluetooth: BNEP filters: protocol multicast
Mar 15 12:09:55 akideck kernel: Bluetooth: BNEP socket layer initialized
Mar 15 12:09:55 akideck kernel: Bluetooth: MGMT ver 1.23
Mar 15 12:09:55 akideck kernel: NET: Registered PF_ALG protocol family
Mar 15 12:09:55 akideck kernel: mhi mhi0: Wait for device to enter SBL or Mission mode
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        A       boot-attempts        1
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        A          boot-count        71
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        A   boot-requested-at        20250315170823
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        A           boot-time        20250222061923
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        A             comment        [2025-03-15 10:08:23 -0700] bootconf mode: reboot (self)
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        A       image-invalid        0
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        B       boot-attempts        0
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        B          boot-count        77
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        B   boot-requested-at        20250310044523
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        B           boot-time        20250310045221
Mar 15 12:09:55 akideck kernel: VLV Successfully queried backlight range over ACPI: 0 255
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        B             comment        [2025-03-09 21:52:21 -0700] bootconf mode: boot-ok
Mar 15 12:09:55 akideck kernel: [drm] kiq ring mec 2 pipe 1 q 0
Mar 15 12:09:55 akideck unknown: SteamOS System Info:        B       image-invalid        0
Mar 15 12:09:55 akideck kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
Mar 15 12:09:55 akideck kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
Mar 15 12:09:55 akideck kernel: amdgpu: Virtual CRAT table created for GPU
Mar 15 12:09:55 akideck kernel: amdgpu: Topology: Add dGPU node [0x1435:0x1002]
Mar 15 12:09:55 akideck kernel: kfd kfd: amdgpu: added device 1002:1435
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 8
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: amdgpu: Runtime PM not available
Mar 15 12:09:55 akideck kernel: [drm] Initialized amdgpu 3.59.0 for 0000:04:00.0 on minor 0
Mar 15 12:09:55 akideck kernel: fbcon: amdgpudrmfb (fb0) is primary device
Mar 15 12:09:55 akideck kernel: Console: switching consoles 4-6 to colour frame buffer device 160x50
Mar 15 12:09:55 akideck kernel: amdgpu 0000:04:00.0: [drm] fb0: amdgpudrmfb frame buffer device
Mar 15 12:09:55 akideck kernel: input: Steam Deck as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input23
Mar 15 12:09:55 akideck kernel: input: Steam Deck Motion Sensors as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input24
Mar 15 12:09:54 akideck root[851]: Not all CFS debugfs settings applied successfuly
Mar 15 12:09:54 akideck systemd[1]: Finished Rebuild Dynamic Linker Cache.
Mar 15 12:09:54 akideck avahi-daemon[802]: Found user 'avahi' (UID 973) and group 'avahi' (GID 973).
Mar 15 12:09:54 akideck systemd[1]: Starting Update is Completed...
Mar 15 12:09:54 akideck avahi-daemon[802]: Successfully dropped root privileges.
Mar 15 12:09:54 akideck systemd[1]: Finished Update is Completed.
Mar 15 12:09:54 akideck avahi-daemon[802]: avahi-daemon 0.8 starting up.
Mar 15 12:09:54 akideck systemd[1]: Reached target System Initialization.
Mar 15 12:09:54 akideck avahi-daemon[802]: Successfully called chroot().
Mar 15 12:09:54 akideck systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Mar 15 12:09:54 akideck avahi-daemon[802]: Successfully dropped remaining capabilities.
Mar 15 12:09:54 akideck systemd[1]: Started Daily manpage database update.
Mar 15 12:09:54 akideck avahi-daemon[802]: No service file found in /etc/avahi/services.
Mar 15 12:09:55 akideck earlyoom[801]: earlyoom 1.8.2
Mar 15 12:09:55 akideck earlyoom[801]: Notifying through D-Bus
Mar 15 12:09:55 akideck earlyoom[801]: Will avoid killing process names that match regex '(^|/)(init|systemd|Xorg|sshd)$'
Mar 15 12:09:55 akideck earlyoom[801]: mem total: 14809 MiB, user mem total: 14110 MiB, swap total: 8428 MiB
Mar 15 12:09:55 akideck earlyoom[801]: sending SIGTERM when mem avail <=  2.70% and swap free <=  4.75%,
Mar 15 12:09:55 akideck earlyoom[801]:         SIGKILL when mem avail <=  2.03% and swap free <=  3.56%
Mar 15 12:09:55 akideck earlyoom[801]: mem avail: 14036 of 14108 MiB (99.49%), swap free: 8428 of 8428 MiB (100.00%)
Mar 15 12:09:55 akideck gpu-trace[805]: DEBUG - Daemon mode: True
Mar 15 12:09:55 akideck gpu-trace[805]: DEBUG - Verbose output: False
Mar 15 12:09:55 akideck gpu-trace[805]: DEBUG - Logfile: /var/log/gpu-trace-daemon.log
Mar 15 12:09:55 akideck gpu-trace[805]: DEBUG - Output path: /gpu-trace.zip
Mar 15 12:09:55 akideck gpu-trace[805]: DEBUG - Config file: /root/.config/gpu-trace/config.json
Mar 15 12:09:55 akideck gpu-trace[805]: DEBUG - Found trace-cmd at /usr/bin/trace-cmd
Mar 15 12:09:55 akideck gpu-trace[805]: DEBUG - Found perf at /usr/bin/perf
Mar 15 12:09:54 akideck systemd[1]: Started Daily verification of password and group files.
Mar 15 12:09:54 akideck avahi-daemon[802]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
Mar 15 12:09:55 akideck jupiter-biosupdate[807]: Performing BIOS updates
Mar 15 12:09:55 akideck jupiter-biosupdate[807]: BIOS version: F7G0112
Mar 15 12:09:55 akideck jupiter-biosupdate[807]: Desired version: <none>
Mar 15 12:09:55 akideck jupiter-biosupdate[807]: No updates configured for this bios
Mar 15 12:09:54 akideck systemd[1]: Started Daily Cleanup of Temporary Directories.
Mar 15 12:09:54 akideck avahi-daemon[802]: New relevant interface lo.IPv6 for mDNS.
Mar 15 12:09:55 akideck jupiter-controller-update[808]: PTS: 677C61B7, STS: 00000000
Mar 15 12:09:54 akideck systemd[1]: Reached target Timer Units.
Mar 15 12:09:54 akideck avahi-daemon[802]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Mar 15 12:09:55 akideck fancontrol.py[809]: /usr/share/jupiter-fan-control/PID.py:64: SyntaxWarning: invalid escape sequence '\i'
Mar 15 12:09:55 akideck fancontrol.py[809]:   """Calculates PID value for given reference feedback
Mar 15 12:09:55 akideck fancontrol.py[809]: loaded critical temp from SSD hwmon: 84.85
Mar 15 12:09:55 akideck fancontrol.py[809]: jupiter-fan-control started successfully.
Mar 15 12:09:55 akideck jupiter-controller-update[1055]: [
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:   {
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "path": "/dev/hidraw2",
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "vendor_id": 10462,
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "product_id": 4613,
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "serial_number": "",
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "release_number": 768,
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "manufacturer_string": "Valve Software",
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "product_string": "Steam Controller",
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "usage_page": 65535,
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "usage": 1,
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "interface_number": 2,
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "bus_type": 1,
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "build_timestamp": 1736204727,
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "secondary_build_timestamp": 0,
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:     "is_bootloader": false
Mar 15 12:09:55 akideck jupiter-controller-update[1055]:   }
Mar 15 12:09:55 akideck jupiter-controller-update[1055]: ]
Mar 15 12:09:54 akideck systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Mar 15 12:09:54 akideck avahi-daemon[802]: New relevant interface lo.IPv4 for mDNS.
Mar 15 12:09:55 akideck jupiter-controller-update[1056]: BIOS newer than 105 -- no initial firmware update necessary
Mar 15 12:09:54 akideck systemd[1]: Listening on CUPS Scheduler.
Mar 15 12:09:54 akideck avahi-daemon[802]: Network interface enumeration completed.
Mar 15 12:09:55 akideck pipewire-hwconfig[811]: Checking for wireplumber hardware profile matching valve, galileo
Mar 15 12:09:55 akideck pipewire-hwconfig[811]: Installing pipewire hardware profile from '/usr/share/pipewire/hardware-profiles/valve-galileo' in /run/pipewire
Mar 15 12:09:55 akideck jupiter-controller-update[808]: NO UPDATE: Type 3 Device is running latest build 677C61B7
Mar 15 12:09:55 akideck jupiter-controller-update[808]: needs_update=0
Mar 15 12:09:54 akideck systemd[1]: Listening on D-Bus System Message Bus Socket.
Mar 15 12:09:54 akideck avahi-daemon[802]: Registering new address record for ::1 on lo.*.
Mar 15 12:09:55 akideck pipewire-hwconfig[866]: '/usr/share/pipewire/hardware-profiles/valve-galileo/pipewire.conf.d/filter-chain.conf' -> '/run/pipewire/pipewire.conf.d/filter-chain.conf'
Mar 15 12:09:54 akideck systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Mar 15 12:09:54 akideck avahi-daemon[802]: Registering new address record for 127.0.0.1 on lo.IPv4.
Mar 15 12:09:55 akideck pipewire-hwconfig[877]: '/usr/share/pipewire/hardware-profiles/valve-galileo/pipewire.conf.d/filter-chain-sink.conf' -> '/run/pipewire/pipewire.conf.d/filter-chain-sink.conf'
Mar 15 12:09:54 akideck systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Mar 15 12:09:54 akideck bluetoothd[803]: Bluetooth daemon 5.79
Mar 15 12:09:54 akideck systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Mar 15 12:09:54 akideck root[927]: kdumpst: pstore-RAM was loaded successfully
Mar 15 12:09:55 akideck steamos-manager[861]: 2025-03-15T19:09:54.441008Z  INFO steamos_manager: Starting SLS log receiver
Mar 15 12:09:55 akideck steamos-manager[861]: 2025-03-15T19:09:54.443404Z  INFO steamos_manager::daemon::config: No state file found, reloading default state
Mar 15 12:09:55 akideck steamos-manager[861]: 2025-03-15T19:09:54.445959Z  INFO steamos_manager: No config file /usr/share/steamos-manager/system.d/config.toml found
Mar 15 12:09:55 akideck steamos-manager[861]: 2025-03-15T19:09:54.445996Z  INFO steamos_manager: No config file /etc/steamos-manager/config.toml found
Mar 15 12:09:55 akideck steamos-manager[861]: 2025-03-15T19:09:54.456305Z  INFO steamos_manager: Starting ftrace
Mar 15 12:09:55 akideck steamos-manager[861]: 2025-03-15T19:09:54.457293Z  INFO steamos_manager: Starting ds-inhibitor
Mar 15 12:09:54 akideck systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Mar 15 12:09:54 akideck bluetoothd[803]: Starting SDP server
Mar 15 12:09:54 akideck systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Mar 15 12:09:54 akideck bluetoothd[803]: src/plugin.c:init_plugin() System does not support bap plugin
Mar 15 12:09:54 akideck systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
Mar 15 12:09:54 akideck bluetoothd[803]: src/plugin.c:init_plugin() System does not support bass plugin
Mar 15 12:09:55 akideck vpower[878]: request_shutdown_battery_percent: 0.49999998
Mar 15 12:09:55 akideck vpower[878]: force_shutdown_timeout_secs: 10
Mar 15 12:09:55 akideck vpower[878]: Using sensor: steamdeck_hwmon
Mar 15 12:09:55 akideck vpower[878]: Running.
Mar 15 12:09:54 akideck systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
Mar 15 12:09:54 akideck bluetoothd[803]: src/plugin.c:init_plugin() System does not support mcp plugin
Mar 15 12:09:55 akideck wireplumber-hwconfig[895]: Checking for wireplumber hardware profile matching valve, galileo
Mar 15 12:09:55 akideck wireplumber-hwconfig[895]: Installing wireplumber hardware profile from '/usr/share/wireplumber/hardware-profiles/valve-galileo' in /run/wireplumber
Mar 15 12:09:54 akideck systemd[1]: Listening on steam-web-debug-portforward.socket.
Mar 15 12:09:54 akideck bluetoothd[803]: src/plugin.c:init_plugin() System does not support vcp plugin
Mar 15 12:09:55 akideck wireplumber-hwconfig[938]: '/usr/share/wireplumber/hardware-profiles/valve-galileo/wireplumber.conf.d/access.conf' -> '/run/wireplumber/wireplumber.conf.d/access.conf'
Mar 15 12:09:54 akideck systemd[1]: Listening on Hostname Service Socket.
Mar 15 12:09:54 akideck bluetoothd[803]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled
Mar 15 12:09:55 akideck wireplumber-hwconfig[942]: '/usr/share/wireplumber/hardware-profiles/valve-galileo/wireplumber.conf.d/alsa-card0.conf' -> '/run/wireplumber/wireplumber.conf.d/alsa-card0.conf'
Mar 15 12:09:55 akideck python[854]: <frozen runpy>:128: RuntimeWarning: 'steamos_log_submitter.daemon' found in sys.modules after import of package 'steamos_log_submitter', but prior to execution of 'steamos_log_submitter.daemon'; this may result in unpredictable behaviour
Mar 15 12:09:55 akideck python[854]: /usr/lib/python3.13/site-packages/steamos_log_submitter/daemon.py:457: DeprecationWarning: There is no current event loop
Mar 15 12:09:55 akideck python[854]:   loop = asyncio.get_event_loop()
Mar 15 12:09:54 akideck systemd[1]: Reached target Socket Units.
Mar 15 12:09:54 akideck bluetoothd[803]: src/plugin.c:init_plugin() System does not support micp plugin
Mar 15 12:09:55 akideck wireplumber-hwconfig[945]: '/usr/share/wireplumber/hardware-profiles/valve-galileo/wireplumber.conf.d/alsa-card1.conf' -> '/run/wireplumber/wireplumber.conf.d/alsa-card1.conf'
Mar 15 12:09:54 akideck systemd[1]: Starting D-Bus System Message Bus...
Mar 15 12:09:54 akideck bluetoothd[803]: src/plugin.c:init_plugin() System does not support ccp plugin
Mar 15 12:09:55 akideck wireplumber-hwconfig[947]: '/usr/share/wireplumber/hardware-profiles/valve-galileo/wireplumber.conf.d/alsa-loopback.conf' -> '/run/wireplumber/wireplumber.conf.d/alsa-loopback.conf'
Mar 15 12:09:54 akideck systemd[1]: TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:54 akideck bluetoothd[803]: src/plugin.c:init_plugin() System does not support csip plugin
Mar 15 12:09:55 akideck wireplumber-hwconfig[951]: '/usr/share/wireplumber/hardware-profiles/valve-galileo/wireplumber.conf.d/alsa-ps-controller.conf' -> '/run/wireplumber/wireplumber.conf.d/alsa-ps-controller.conf'
Mar 15 12:09:54 akideck (udev-worker)[581]: controlC1: Process '/usr/bin/alsactl restore 1' failed with exit code 99.
Mar 15 12:09:54 akideck bluetoothd[803]: src/plugin.c:init_plugin() System does not support asha plugin
Mar 15 12:09:55 akideck wireplumber-hwconfig[959]: '/usr/share/wireplumber/hardware-profiles/valve-galileo/wireplumber.conf.d/bluez.conf' -> '/run/wireplumber/wireplumber.conf.d/bluez.conf'
Mar 15 12:09:54 akideck systemd[1]: Started D-Bus System Message Bus.
Mar 15 12:09:54 akideck bluetoothd[803]: Bluetooth management interface 1.23 initialized
Mar 15 12:09:55 akideck wireplumber-hwconfig[966]: '/usr/share/wireplumber/hardware-profiles/valve-galileo/wireplumber.conf.d/component-rules.conf' -> '/run/wireplumber/wireplumber.conf.d/component-rules.conf'
Mar 15 12:09:54 akideck systemd[1]: Reached target Basic System.
Mar 15 12:09:54 akideck bluetoothd[803]: Battery Provider Manager created
Mar 15 12:09:55 akideck wireplumber-hwconfig[968]: '/usr/share/wireplumber/hardware-profiles/valve-galileo/wireplumber.conf.d/stream.conf' -> '/run/wireplumber/wireplumber.conf.d/stream.conf'
Mar 15 12:09:54 akideck systemd[1]: Started Early OOM Daemon.
Mar 15 12:09:54 akideck sshd[1080]: Server listening on 0.0.0.0 port 22.
Mar 15 12:09:54 akideck systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
Mar 15 12:09:54 akideck sshd[1080]: Server listening on :: port 22.
Mar 15 12:09:54 akideck systemd[1]: Reached target Sound Card.
Mar 15 12:09:55 akideck sddm-helper[1102]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: pam_sm_authenticate
Mar 15 12:09:55 akideck devkit-service-on-os-update[1095]: /etc/.devkit-service-on-os-update exists.
Mar 15 12:09:54 akideck systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Mar 15 12:09:55 akideck sddm-helper[1102]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Couldn't get password (it is empty)
Mar 15 12:09:54 akideck systemd[1]: Starting Bluetooth service...
Mar 15 12:09:55 akideck sddm-helper[1102]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Empty or missing password, doing nothing
Mar 15 12:09:54 akideck systemd[1]: Starting firewalld - dynamic firewall daemon...
Mar 15 12:09:54 akideck systemd[1]: Remove flathub beta repo was skipped because no trigger condition checks were met.
Mar 15 12:09:54 akideck systemd[1]: Started GPU performance capture daemon.
Mar 15 12:09:54 akideck systemd[1]: Disable invalid SD card entries in /etc/fstab was skipped because of an unmet condition check (ConditionPathExists=/var/lib/overlays/etc/upper/fstab).
Mar 15 12:09:54 akideck systemd[1]: Starting Jupiter BIOS Update Service...
Mar 15 12:09:54 akideck systemd[1]: Starting Jupiter Controller Firmware Update Service...
Mar 15 12:09:54 akideck dbus-broker-launch[794]: Ready
Mar 15 12:09:54 akideck systemd[1]: Started Jupiter fan control.
Mar 15 12:09:54 akideck systemd[1]: Starting kdumpst loader boot-time service...
Mar 15 12:09:54 akideck systemd[1]: Starting Hardware Specific Pipewire Configuration...
Mar 15 12:09:54 akideck systemd[1]: Started [systemd-run] /usr/lib/hwsupport/block-device-event.sh add mmcblk0p1.
Mar 15 12:09:54 akideck systemd[1]: SSH Key Generation was skipped because no trigger condition checks were met.
Mar 15 12:09:54 akideck systemd[1]: Starting set multiple CFS tunings in sched debugfs...
Mar 15 12:09:54 akideck systemd[1]: Started "SteamOS Devkit Service".
Mar 15 12:09:54 akideck systemd[1]: Starting Append SteamOS info to kernel log...
Mar 15 12:09:54 akideck systemd[1]: Finish migration from OOBE build was skipped because of an unmet condition check (ConditionPathIsDirectory=/home/doorstop).
Mar 15 12:09:54 akideck systemd[1]: Starting Create UID 1000 homedir on first boot/after factory reset...
Mar 15 12:09:54 akideck systemd[1]: Started SteamOS log submitter service - sends error logs to Valve.
Mar 15 12:09:54 akideck systemd[1]: Starting SteamOS Manager Daemon...
Mar 15 12:09:54 akideck systemd[1]: Starting Run tasks on the first boot after an OS update...
Mar 15 12:09:54 akideck systemd[1]: SteamOS Settings Importer was skipped because of an unmet condition check (ConditionPathIsDirectory=/efi/settings).
Mar 15 12:09:54 akideck systemd[1]: SteamOS VM guest detection was skipped because of an unmet condition check (ConditionVirtualization=vm).
Mar 15 12:09:54 akideck systemd[1]: Starting User Login Management...
Mar 15 12:09:54 akideck systemd[1]: TPM PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 15 12:09:54 akideck systemd[1]: Started vpower daemon.
Mar 15 12:09:54 akideck systemd[1]: Starting Hardware Specific Wireplumber Configuration...
Mar 15 12:09:54 akideck systemd[1]: Finished Hardware Specific Pipewire Configuration.
Mar 15 12:09:54 akideck systemd[1]: Finished set multiple CFS tunings in sched debugfs.
Mar 15 12:09:54 akideck systemd[1]: Finished Create UID 1000 homedir on first boot/after factory reset.
Mar 15 12:09:54 akideck systemd[1]: Started SteamOS Manager Daemon.
Mar 15 12:09:54 akideck systemd[1]: jupiter-biosupdate.service: Deactivated successfully.
Mar 15 12:09:54 akideck systemd[1]: Finished Jupiter BIOS Update Service.
Mar 15 12:09:54 akideck systemd[1]: Finished Run tasks on the first boot after an OS update.
Mar 15 12:09:54 akideck systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Mar 15 12:09:54 akideck systemd[1]: Started Bluetooth service.
Mar 15 12:09:54 akideck systemd[1]: Reached target Bluetooth Support.
Mar 15 12:09:54 akideck systemd[1]: Starting Hostname Service...
Mar 15 12:09:54 akideck systemd[1]: Finished Hardware Specific Wireplumber Configuration.
Mar 15 12:09:54 akideck systemd-logind[871]: Watching system buttons on /dev/input/event2 (Power Button)
Mar 15 12:09:54 akideck systemd-logind[871]: Watching system buttons on /dev/input/event0 (Power Button)
Mar 15 12:09:54 akideck systemd-logind[871]: Watching system buttons on /dev/input/event1 (Lid Switch)
Mar 15 12:09:54 akideck systemd-logind[871]: Watching system buttons on /dev/input/event4 (Valve Software Steam Controller)
Mar 15 12:09:54 akideck systemd-logind[871]: Watching system buttons on /dev/input/event7 (AT Translated Set 2 keyboard)
Mar 15 12:09:54 akideck systemd-logind[871]: New seat seat0.
Mar 15 12:09:54 akideck systemd[1]: Started User Login Management.
Mar 15 12:09:54 akideck systemd[1]: Finished kdumpst loader boot-time service.
Mar 15 12:09:54 akideck systemd[1]: SteamOS kdumpst tiny layer service was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/.steamos/offload/var/kdumpst/logs/*).
Mar 15 12:09:54 akideck systemd[1]: Finished Append SteamOS info to kernel log.
Mar 15 12:09:54 akideck systemd[1]: Started Hostname Service.
Mar 15 12:09:54 akideck systemd[1]: jupiter-controller-update.service: Deactivated successfully.
Mar 15 12:09:54 akideck systemd[1]: Finished Jupiter Controller Firmware Update Service.
Mar 15 12:09:54 akideck systemd[1]: Started firewalld - dynamic firewall daemon.
Mar 15 12:09:54 akideck systemd[1]: Reached target Preparation for Network.
Mar 15 12:09:54 akideck systemd[1]: Starting Network Manager...
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.8944] NetworkManager (version 1.50.1-1.2) is starting... (boot:f1cab37f-0ac7-465e-972c-ac441e373792)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.8945] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-steamos-defaults.conf, 20-connectivity.conf)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.8974] manager[0x5557e9f70a40]: monitoring kernel firmware directory '/lib/firmware'.
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9004] hostname: hostname: using hostnamed
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9005] hostname: static hostname changed from (none) to "akideck"
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9007] dns-mgr: init: dns=systemd-resolved rc-manager=symlink, plugin=systemd-resolved
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9021] manager[0x5557e9f70a40]: rfkill: Wi-Fi hardware radio set enabled
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9021] manager[0x5557e9f70a40]: rfkill: WWAN hardware radio set enabled
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9043] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.50.1-1.2/libnm-device-plugin-adsl.so)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9063] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.50.1-1.2/libnm-device-plugin-bluetooth.so)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9072] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.50.1-1.2/libnm-device-plugin-ovs.so)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9150] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.50.1-1.2/libnm-device-plugin-team.so)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9163] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.50.1-1.2/libnm-device-plugin-wifi.so)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9168] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.50.1-1.2/libnm-device-plugin-wwan.so)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9171] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9172] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9172] manager: Networking is enabled by state file
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9174] settings: Loaded settings plugin: keyfile (internal)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9203] dhcp: init: Using DHCP client 'internal'
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9205] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9215] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9218] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9223] device (lo): Activation: starting connection 'lo' (c8e91dfe-5061-49d9-a5f5-59e5ef560fb9)
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9229] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Mar 15 12:09:54 akideck systemd[1]: Started Network Manager.
Mar 15 12:09:54 akideck systemd[1]: Reached target Network.
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9237] ovsdb: disconnected from ovsdb
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9238] device (lo): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9240] device (lo): state change: prepare -> config (reason 'none', managed-type: 'external')
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9242] device (lo): state change: config -> ip-config (reason 'none', managed-type: 'external')
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9245] device (lo): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
Mar 15 12:09:54 akideck systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 15 12:09:54 akideck systemd[1]: Starting OpenSSH Daemon...
Mar 15 12:09:54 akideck systemd[1]: Starting Permit User Sessions...
Mar 15 12:09:54 akideck systemd[1]: Finished Permit User Sessions.
Mar 15 12:09:54 akideck systemd[1]: Started Simple Desktop Display Manager.
Mar 15 12:09:54 akideck systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9666] device (lo): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9668] device (lo): state change: secondaries -> activated (reason 'none', managed-type: 'external')
Mar 15 12:09:54 akideck systemd[1]: Started OpenSSH Daemon.
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9672] device (lo): Activation: successful, device activated.
Mar 15 12:09:54 akideck systemd[1]: Reached target Multi-User System.
Mar 15 12:09:54 akideck systemd[1]: Reached target Graphical Interface.
Mar 15 12:09:54 akideck NetworkManager[1062]: <info>  [1742065794.9676] manager: startup complete
Mar 15 12:09:54 akideck systemd[1]: Started Update devkit service configuration.
Mar 15 12:09:54 akideck systemd[1]: Starting SteamOS Boot Registration...
Mar 15 12:09:54 akideck systemd[1]: Finished SteamOS Boot Registration.
Mar 15 12:09:54 akideck systemd[1]: Startup finished in 5.762s (firmware) + 1.408s (loader) + 1.606s (kernel) + 5.404s (userspace) = 14.182s.
Mar 15 12:09:54 akideck sddm[1091]: Initializing...
Mar 15 12:09:55 akideck sddm[1091]: Starting...
Mar 15 12:09:55 akideck sddm[1091]: Logind interface found
Mar 15 12:09:55 akideck sddm[1091]: Adding new display...
Mar 15 12:09:55 akideck sddm[1091]: Loaded empty theme configuration
Mar 15 12:09:55 akideck sddm[1091]: Using VT 1
Mar 15 12:09:55 akideck sddm[1091]: Display server started.
Mar 15 12:09:55 akideck sddm[1091]: Reading from "/usr/local/share/wayland-sessions/gamescope-wayland.desktop"
Mar 15 12:09:55 akideck sddm[1091]: Reading from "/usr/share/wayland-sessions/gamescope-wayland.desktop"
Mar 15 12:09:55 akideck sddm[1091]: Session "/usr/share/wayland-sessions/gamescope-wayland.desktop" selected, command: "start-gamescope-session" for VT 1
Mar 15 12:09:55 akideck sddm-helper[1102]: [PAM] Starting...
Mar 15 12:09:55 akideck sddm-helper[1102]: [PAM] Authenticating...
Mar 15 12:09:55 akideck sddm-helper[1102]: [PAM] Preparing to converse...
Mar 15 12:09:55 akideck sddm-helper[1102]: [PAM] Conversation with 1 messages
Mar 15 12:09:55 akideck sddm-helper[1102]: [PAM] returning.
Mar 15 12:09:55 akideck systemctl[1103]: Removed '/etc/systemd/system/graphical.target.wants/devkit-service-os-update.service'.
Mar 15 12:09:55 akideck systemd[1]: Reload requested from client PID 1103 ('systemctl') (unit devkit-service-os-update.service)...
Mar 15 12:09:55 akideck systemd[1]: Reloading...
Mar 15 12:09:55 akideck kernel: ath11k_pci 0000:03:00.0: chip_id 0x12 chip_family 0xb board_id 0x309 soc_id 0x400c1211
Mar 15 12:09:55 akideck kernel: ath11k_pci 0000:03:00.0: fw_version 0x110e7fff fw_build_timestamp 2024-05-28 15:10 fw_build_id WLAN.HSP.1.1-03926.13-QCAHSPSWPL_V2_SILICONZ_CE-2.52297.6
Mar 15 12:09:55 akideck systemd[1]: Reloading finished in 334 ms.
Mar 15 12:09:55 akideck avahi-daemon[802]: Server startup complete. Host name is akideck.local. Local service cookie is 2274374659.
Mar 15 12:09:55 akideck dbus-broker-launch[794]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
Mar 15 12:09:55 akideck sddm[1091]: Authentication for user  "deck"  successful
Mar 15 12:09:55 akideck sddm-helper[1102]: pam_kwallet5(sddm-autologin:setcred): pam_kwallet5: pam_sm_setcred
Mar 15 12:09:55 akideck systemd[1]: Starting Authorization Manager...
Mar 15 12:09:55 akideck systemd[1]: devkit-service-os-update.service: Deactivated successfully.
Mar 15 12:09:55 akideck systemd[1]: Starting Disk Manager...
Mar 15 12:09:55 akideck sddm-helper[1102]: pam_unix(sddm-autologin:session): session opened for user deck(uid=1000) by deck(uid=0)
Mar 15 12:09:55 akideck udisksd[1192]: udisks daemon version 2.10.1 starting
Mar 15 12:09:55 akideck systemd-logind[871]: New session 1 of user deck.
Mar 15 12:09:55 akideck systemd[1]: Created slice User Slice of UID 1000.
Mar 15 12:09:55 akideck systemd[1]: Starting User Runtime Directory /run/user/1000...
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.4889] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/2)
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.4894] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:01.4/0000:03:00.0/ieee80211/phy0/rfkill1) (driver ath11k_pci)
Mar 15 12:09:55 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.4964] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 15 12:09:55 akideck systemd[1]: Finished User Runtime Directory /run/user/1000.
Mar 15 12:09:55 akideck systemd[1]: Starting Wireless service...
Mar 15 12:09:55 akideck systemd[1]: Starting User Manager for UID 1000...
Mar 15 12:09:55 akideck polkitd[1190]: Started polkitd version 125
Mar 15 12:09:55 akideck systemd[1]: Started Authorization Manager.
Mar 15 12:09:55 akideck (systemd)[1202]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[deck] ruser=[<unknown>] rhost=[<unknown>]
Mar 15 12:09:55 akideck (systemd)[1202]: pam_unix(systemd-user:session): session opened for user deck(uid=1000) by deck(uid=0)
Mar 15 12:09:55 akideck systemd-logind[871]: New session 2 of user deck.
Mar 15 12:09:55 akideck systemd[1]: Started Disk Manager.
Mar 15 12:09:55 akideck udisksd[1192]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Mar 15 12:09:55 akideck block-device-event.sh[1298]: e2fsck 1.47.2 (1-Jan-2025)
Mar 15 12:09:55 akideck iwd[1201]: Wireless daemon version 3.0
Mar 15 12:09:55 akideck systemd[1]: Started Wireless service.
Mar 15 12:09:55 akideck iwd[1201]: station: Network configuration is disabled.
Mar 15 12:09:55 akideck iwd[1201]: Wiphy: 0, Name: phy0
Mar 15 12:09:55 akideck iwd[1201]:         Permanent Address: e8:8d:a6:77:9a:8c
Mar 15 12:09:55 akideck iwd[1201]:         2.4GHz Band:
Mar 15 12:09:55 akideck iwd[1201]:                 Bitrates (non-HT):
Mar 15 12:09:55 akideck iwd[1201]:                          1.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                          2.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                          5.5 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         11.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                          6.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                          9.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         12.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         18.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         24.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         36.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         48.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         54.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                 HT Capabilities:
Mar 15 12:09:55 akideck iwd[1201]:                         HT40
Mar 15 12:09:55 akideck iwd[1201]:                         Short GI for 20Mhz
Mar 15 12:09:55 akideck iwd[1201]:                         Short GI for 40Mhz
Mar 15 12:09:55 akideck iwd[1201]:                 HT RX MCS indexes:
Mar 15 12:09:55 akideck iwd[1201]:                         0-15
Mar 15 12:09:55 akideck iwd[1201]:                 HE Capabilities
Mar 15 12:09:55 akideck iwd[1201]:                         Interface Types:
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Interface Types: ap
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Interface Types: station
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:         5GHz Band:
Mar 15 12:09:55 akideck iwd[1201]:                 Bitrates (non-HT):
Mar 15 12:09:55 akideck iwd[1201]:                          6.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                          9.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         12.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         18.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         24.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         36.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         48.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         54.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                 HT Capabilities:
Mar 15 12:09:55 akideck iwd[1201]:                         HT40
Mar 15 12:09:55 akideck iwd[1201]:                         Short GI for 20Mhz
Mar 15 12:09:55 akideck iwd[1201]:                         Short GI for 40Mhz
Mar 15 12:09:55 akideck iwd[1201]:                 HT RX MCS indexes:
Mar 15 12:09:55 akideck iwd[1201]:                         0-15
Mar 15 12:09:55 akideck iwd[1201]:                 VHT Capabilities:
Mar 15 12:09:55 akideck iwd[1201]:                         160 Mhz operation
Mar 15 12:09:55 akideck iwd[1201]:                         Short GI for 80Mhz
Mar 15 12:09:55 akideck iwd[1201]:                         Short GI for 160 and 80 + 80 Mhz
Mar 15 12:09:55 akideck iwd[1201]:                         Max RX MCS: 0-9 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max TX MCS: 0-9 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                 HE Capabilities
Mar 15 12:09:55 akideck iwd[1201]:                         Interface Types:
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Interface Types: ap
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Interface Types: station
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:         6GHz Band:
Mar 15 12:09:55 akideck iwd[1201]:                 Bitrates (non-HT):
Mar 15 12:09:55 akideck iwd[1201]:                          6.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                          9.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         12.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         18.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         24.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         36.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         48.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                         54.0 Mbps
Mar 15 12:09:55 akideck iwd[1201]:                 HE Capabilities
Mar 15 12:09:55 akideck iwd[1201]:                         Interface Types:
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Interface Types: ap
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Interface Types: station
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 80MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE RX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:                         Max HE TX <= 160MHz MCS: 0-11 for NSS: 2
Mar 15 12:09:55 akideck iwd[1201]:         Ciphers: BIP-CMAC-256 BIP-GMAC-256 BIP-GMAC-128 CCMP-256
Mar 15 12:09:55 akideck iwd[1201]:                  GCMP-256 GCMP-128 BIP-CMAC-128 CCMP-128
Mar 15 12:09:55 akideck iwd[1201]:                  TKIP
Mar 15 12:09:55 akideck iwd[1201]:         Supported iftypes: station ap p2p-client p2p-go p2p-device
Mar 15 12:09:55 akideck systemd[1202]: Queued start job for default target Main User Target.
Mar 15 12:09:55 akideck block-device-event.sh[1298]: AkiDeck: clean, 187293/62496768 files, 248242284/249968128 blocks
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.8292] device (wlan0): state change: unavailable -> unmanaged (reason 'unmanaged-link-not-init', managed-type: 'removed')
Mar 15 12:09:55 akideck systemd[1202]: Created slice User Application Slice.
Mar 15 12:09:55 akideck systemd[1202]: Started Submitting pending crash events (file monitor).
Mar 15 12:09:55 akideck systemd[1202]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/deck/.cache/kcrash-metadata/*.ini).
Mar 15 12:09:55 akideck systemd[1202]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/deck/.cache/drkonqi/sentry-envelopes/*).
Mar 15 12:09:55 akideck systemd[1202]: Reached target Paths.
Mar 15 12:09:55 akideck systemd[1202]: Reached target Timers.
Mar 15 12:09:55 akideck systemd[1202]: Starting D-Bus User Message Bus Socket...
Mar 15 12:09:55 akideck systemd[1202]: Listening on GnuPG network certificate management daemon.
Mar 15 12:09:55 akideck systemd[1202]: Listening on Socket to launch DrKonqi for a systemd-coredump crash.
Mar 15 12:09:55 akideck systemd[1202]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Mar 15 12:09:55 akideck systemd[1202]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Mar 15 12:09:55 akideck systemd[1202]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Mar 15 12:09:55 akideck systemd[1202]: Listening on GnuPG cryptographic agent and passphrase cache.
Mar 15 12:09:55 akideck systemd[1202]: Listening on GnuPG public key management service.
Mar 15 12:09:55 akideck systemd[1202]: Listening on p11-kit server.
Mar 15 12:09:55 akideck systemd[1202]: Listening on PipeWire PulseAudio.
Mar 15 12:09:55 akideck systemd[1202]: Listening on PipeWire Multimedia System Sockets.
Mar 15 12:09:55 akideck systemd[1202]: Listening on D-Bus User Message Bus Socket.
Mar 15 12:09:55 akideck systemd[1202]: Reached target Sockets.
Mar 15 12:09:55 akideck systemd[1202]: Reached target Basic System.
Mar 15 12:09:55 akideck systemd[1202]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/deck/.cache/kcrash-metadata/*.ini).
Mar 15 12:09:55 akideck systemd[1]: Started User Manager for UID 1000.
Mar 15 12:09:55 akideck systemd[1202]: Starting gamemoded...
Mar 15 12:09:55 akideck systemd[1]: Started Session 1 of User deck.
Mar 15 12:09:55 akideck systemd[1202]: Starting Update XDG user dir configuration...
Mar 15 12:09:55 akideck sddm-helper[1102]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: pam_sm_open_session
Mar 15 12:09:55 akideck sddm-helper[1102]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: open_session called without kwallet5_key
Mar 15 12:09:55 akideck sddm-helper[1102]: Starting Wayland user session: "/usr/share/sddm/scripts/wayland-session" "start-gamescope-session"
Mar 15 12:09:55 akideck sddm-helper[1324]: Jumping to VT 1
Mar 15 12:09:55 akideck sddm-helper[1324]: VT mode fixed
Mar 15 12:09:55 akideck sddm[1091]: Session started true
Mar 15 12:09:55 akideck systemd[1202]: Created slice User Core Session Slice.
Mar 15 12:09:55 akideck systemd[1202]: Starting D-Bus User Message Bus...
Mar 15 12:09:55 akideck systemd[1202]: Finished Update XDG user dir configuration.
Mar 15 12:09:55 akideck dbus-broker-launch[1326]: Service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Mar 15 12:09:55 akideck dbus-broker-launch[1326]: Service file '/usr/share//dbus-1/services/org.kde.kscreen.service' is not named after the D-Bus name 'org.kde.KScreen'.
Mar 15 12:09:55 akideck dbus-broker-launch[1326]: Service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Mar 15 12:09:55 akideck dbus-broker-launch[1326]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Mar 15 12:09:55 akideck dbus-broker-launch[1326]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Mar 15 12:09:55 akideck systemd[1202]: Started D-Bus User Message Bus.
Mar 15 12:09:55 akideck dbus-broker-launch[1326]: Ready
Mar 15 12:09:55 akideck systemd[1202]: Started gamemoded.
Mar 15 12:09:55 akideck systemd[1202]: Reached target Main User Target.
Mar 15 12:09:55 akideck systemd[1202]: Startup finished in 315ms.
Mar 15 12:09:55 akideck systemd[1202]: Expecting device /dev/cec0...
Mar 15 12:09:55 akideck systemd[1202]: Reached target Session services which should run early before the graphical session is brought up.
Mar 15 12:09:55 akideck systemd[1202]: Starting Gamescope Session...
Mar 15 12:09:55 akideck systemd[1202]: Starting SteamOS Manager Daemon...
Mar 15 12:09:55 akideck systemd[1202]: Started Power Button daemon for SteamOS.
Mar 15 12:09:55 akideck systemd[1202]: Started SteamOS Manager Daemon.
Mar 15 12:09:55 akideck iwd[1201]: event: state, old: disconnected, new: autoconnect_quick
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.9828] Wi-Fi P2P device added on phy0
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.9831] manager: (/net/connman/iwd/0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/3)
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.9832] device (/net/connman/iwd/0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 15 12:09:55 akideck iwd[1201]: udev interface=wlan0 ifindex=3
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.9943] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/4)
Mar 15 12:09:55 akideck gamescope-session[1353]: Making Gamescope Mode Save file at "/home/deck/.config/gamescope/modes.cfg"
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.9952] device (wlan0): new IWD device state is disconnected
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.9954] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 15 12:09:55 akideck steamos-manager[1354]: 2025-03-15T19:09:55.996083Z  INFO steamos_manager: Starting SLS log receiver
Mar 15 12:09:55 akideck steamos-manager[1354]: 2025-03-15T19:09:55.996121Z  INFO steamos_manager: Starting job-manager
Mar 15 12:09:55 akideck steamos-manager[1354]: 2025-03-15T19:09:55.996152Z  INFO steamos_manager::daemon::config: No state file found, reloading default state
Mar 15 12:09:55 akideck steamos-manager[1354]: 2025-03-15T19:09:55.996256Z  INFO steamos_manager: No config file /usr/share/steamos-manager/user.d/config.toml found
Mar 15 12:09:55 akideck steamos-manager[1354]: 2025-03-15T19:09:55.996280Z  INFO steamos_manager: No config file /home/deck/.config/steamos-manager/config.toml found
Mar 15 12:09:55 akideck steamos-manager[1354]: 2025-03-15T19:09:55.996317Z  INFO steamos_manager: Starting udev-monitor
Mar 15 12:09:55 akideck NetworkManager[1062]: <info>  [1742065795.9961] device (wlan0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
Mar 15 12:09:55 akideck kernel: EXT4-fs (mmcblk0p1): Using encoding defined by superblock: utf8-12.1.0 with flags 0x0
Mar 15 12:09:56 akideck gamescope-session[1353]: Making Gamescope patched edid at "/home/deck/.config/gamescope/edid.bin"
Mar 15 12:09:56 akideck gamescope-session[1353]: Removing file: /home/deck/.local/share/Steam/config/uioverrides/movies/*
Mar 15 12:09:56 akideck gamescope-session[1383]: rm: cannot remove '/home/deck/.local/share/Steam/config/uioverrides/movies/*': No such file or directory
Mar 15 12:09:56 akideck gamescope-session[1384]: rm: cannot remove '/home/deck/.local/share/Steam/config/uioverrides/movies/*.installed': No such file or directory
Mar 15 12:09:56 akideck udisksd[1192]: Mounted /dev/mmcblk0p1 at /run/media/deck/AkiDeck on behalf of uid 1000
Mar 15 12:09:56 akideck kernel: EXT4-fs (mmcblk0p1): mounted filesystem b7d7e260-1293-4ba9-8cce-79702030fa8d r/w with ordered data mode. Quota mode: none.
Mar 15 12:09:56 akideck gamescope-session[1353]: Claimed global gamescope stats session at "/run/user/1000/gamescope-stats"
Mar 15 12:09:56 akideck NetworkManager[1062]: <info>  [1742065796.0723] device (/net/connman/iwd/0): state change: unavailable -> disconnected (reason 'supplicant-available', managed-type: 'full')
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  console: gamescope version 3.16.2 (gcc 14.2.1)
Mar 15 12:09:56 akideck gamescope-session[1353]: Tracing is enabled
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts'
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts/00-gamescope'
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts/00-gamescope/common'
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/common/inspect.lua' (id: 0)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/common/modegen.lua' (id: 1)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/common/util.lua' (id: 2)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts/00-gamescope/displays'
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/asus.rogally.lcd.lua' (id: 3)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/deckhd.steamdeck.deckhd-lcd.lua' (id: 4)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/valve.steamdeck.lcd.lua' (id: 5)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/valve.steamdeck.oled.lua' (id: 6)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/etc/gamescope/scripts'
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Warn]  scriptmgr: Directory '/etc/gamescope/scripts' does not exist
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/home/deck/.config/gamescope/scripts'
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Warn]  scriptmgr: Directory '/home/deck/.config/gamescope/scripts' does not exist
Mar 15 12:09:56 akideck block-device-event.sh[1277]: **** Mounted /dev/mmcblk0p1 at /run/media/deck/AkiDeck ****
Mar 15 12:09:56 akideck systemd[1]: run-p706-i1006.service: Deactivated successfully.
Mar 15 12:09:56 akideck gamescope-session[1353]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan: selecting physical device 'AMD Custom GPU 0932 (RADV VANGOGH)': queue family 1 (general queue family 0)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan: physical device supports DRM format modifiers
Mar 15 12:09:56 akideck gamescope-session[1353]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: [backend/headless/backend.c:67] Creating headless backend
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: [libseat] [libseat/backend/seatd.c:64] Could not connect to socket /run/seatd.sock: No such file or directory
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: [libseat] [libseat/libseat.c:76] Backend 'seatd' failed to open seat, skipping
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: [libseat] [libseat/libseat.c:73] Seat opened with backend 'logind'
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: [backend/session/session.c:108] Successfully loaded libseat session
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: opening DRM node '/dev/dri/card0'
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Error] drm: Immediate flips disabled from environment
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: Connector eDP-1 -> VLV - ANX7530 U
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: Got known display: steamdeck_oled_boe (Steam Deck OLED (BOE))
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: EDID with colorimetry detected. Using it
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: r 0.684570 0.314453
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: g 0.245117 0.714844
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: b 0.137695 0.049805
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: w 0.312500 0.329102
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: Connector eDP-1 -> VLV - ANX7530 U
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: Got known display: steamdeck_oled_boe (Steam Deck OLED (BOE))
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: EDID with colorimetry detected. Using it
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: r 0.684570 0.314453
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: g 0.245117 0.714844
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: b 0.137695 0.049805
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: w 0.312500 0.329102
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: Connectors:
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm:   DP-1 (disconnected)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm:   eDP-1 (connected)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: selecting connector eDP-1
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  drm: selecting mode 800x1280@90Hz
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan: supported DRM formats for sampling usage:
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   AR24 (0x34325241)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   XR24 (0x34325258)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   AB24 (0x34324241)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   XB24 (0x34324258)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   RG16 (0x36314752)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   NV12 (0x3231564E)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   AB4H (0x48344241)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   XB4H (0x48344258)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   AB48 (0x38344241)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   XB48 (0x38344258)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   AB30 (0x30334241)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   XB30 (0x30334258)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   AR30 (0x30335241)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vulkan:   XR30 (0x30335258)
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: Using explicit sync when available
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: Running compositor on wayland display 'gamescope-0'
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: [backend/headless/backend.c:17] Starting headless backend
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: Successfully initialized libei for input emulation!
Mar 15 12:09:56 akideck gamescope-session[1425]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :0
Mar 15 12:09:56 akideck gamescope-session[1426]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :1
Mar 15 12:09:56 akideck gpu-trace[805]: INFO - Startup tracing is disabled
Mar 15 12:09:56 akideck gpu-trace[805]: INFO - GPU Trace daemon ready
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  pipewire: stream state changed: connecting
Mar 15 12:09:56 akideck systemd[1202]: Started PipeWire Multimedia Service.
Mar 15 12:09:56 akideck systemd[1202]: Started Multimedia Service Session Manager.
Mar 15 12:09:56 akideck systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Mar 15 12:09:56 akideck systemd[1]: Started RealtimeKit Scheduling Policy Service.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Successfully called chroot.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Successfully dropped privileges.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Successfully limited resources.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Running.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Watchdog thread running.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Canary thread running.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Successfully made thread 1449 of process 1449 owned by '1000' high priority at nice level -11.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 1 threads of 1 processes of 1 users.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Successfully made thread 1454 of process 1449 owned by '1000' RT at priority 20.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 2 threads of 1 processes of 1 users.
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  pipewire: stream state changed: paused
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  pipewire: stream available on node ID: 38
Mar 15 12:09:56 akideck wireplumber[1450]: wp-internal-comp-loader: Loading profile 'main'
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Successfully made thread 1450 of process 1450 owned by '1000' high priority at nice level -11.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 3 threads of 2 processes of 1 users.
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  xwm: Embedded, no cursor set. Using left_ptr by default.
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  xwm: Embedded, no cursor set. Using left_ptr by default.
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  vblank: Using timerfd.
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  edid: Patching dims 10x16 -> 16x10
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  edid: Patching res 800x1280 -> 1280x800
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  edid: [edid] Patching HDR static metadata:
Mar 15 12:09:56 akideck gamescope-session[1353]:     - Max peak luminance = 1000 nits
Mar 15 12:09:56 akideck gamescope-session[1353]:     - Max frame average luminance = 800 nits
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  edid: Patching existing HDR Metadata with our own!
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  edid: CTA Checksum valid? Y
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  edid: BASE Checksum valid? Y
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  edid: Wrote new edid to: /home/deck/.config/gamescope/edid.bin
Mar 15 12:09:56 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: Updating mode for xwayland server #0: 1280x800@90
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Successfully made thread 1472 of process 1450 owned by '1000' RT at priority 20.
Mar 15 12:09:56 akideck rtkit-daemon[1455]: Supervising 4 threads of 2 processes of 1 users.
Mar 15 12:09:56 akideck systemd[1202]: Started Gamescope Session.
Mar 15 12:09:56 akideck systemd[1202]: Reached target Current graphical user session.
Mar 15 12:09:56 akideck systemd[1202]: Starting galileo mura setup...
Mar 15 12:09:56 akideck systemd[1202]: Starting mangoapp...
Mar 15 12:09:56 akideck systemd[1202]: Starting Xbindkeys for Gamescope session...
Mar 15 12:09:56 akideck systemd[1202]: Starting Wrapper for Ibus...
Mar 15 12:09:56 akideck systemd[1202]: Starting Steam Launcher...
Mar 15 12:09:56 akideck systemd[1202]: Started Steam Notification Daemon.
Mar 15 12:09:56 akideck systemd[1202]: Started wakehook.service.
Mar 15 12:09:56 akideck systemd[1202]: Started Xbindkeys for Gamescope session.
Mar 15 12:09:56 akideck systemd[1202]: Started mangoapp.
Mar 15 12:09:56 akideck systemd[1202]: Started Steam Launcher.
Mar 15 12:09:56 akideck systemd[1202]: Starting Steam Short Session Tracker...
Mar 15 12:09:56 akideck steam-short-session-tracker[1490]: /usr/lib/steamos/steam-short-session-tracker: line 9: /tmp/steamos-short-session-tracker: No such file or directory
Mar 15 12:09:56 akideck systemd[1202]: Finished Steam Short Session Tracker.
Mar 15 12:09:56 akideck steam-runtime-steam-remote[1509]: steam-runtime-steam-remote: Steam is not running: No such device or address
Mar 15 12:09:56 akideck mangoapp[1477]: [2025-03-15 12:09:56.996] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 15 12:09:57 akideck mangoapp[1477]: [2025-03-15 12:09:57.026] [MANGOHUD] [error] [cpu.cpp:536] Could not find cpu temp sensor location
Mar 15 12:09:57 akideck iwd[1201]: event: connect-info, ssid: The New Lunar Republic, bss: e8:9c:25:49:01:8c, signal: -32, load: 2/255
Mar 15 12:09:57 akideck iwd[1201]: event: state, old: autoconnect_quick, new: connecting (auto)
Mar 15 12:09:57 akideck ibus-daemon[1530]: /usr/share/ibus-table/engine/main.py:232: DeprecationWarning: Testing an element's truth value will always return True in future versions.  Use specific 'len(elem)' or 'elem is not None' test instead.
Mar 15 12:09:57 akideck ibus-daemon[1530]:   if element:
Mar 15 12:09:57 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start timed out.
Mar 15 12:09:57 akideck systemd[1202]: Timed out starting plasma-remotecontrollers.service.
Mar 15 12:09:57 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start failed with result 'timeout'.
Mar 15 12:09:57 akideck systemd[1202]: Unnecessary job was removed for /dev/cec0.
Mar 15 12:09:57 akideck systemd[1202]: Started Wrapper for Ibus.
Mar 15 12:09:57 akideck systemd[1202]: Created slice Slice /app/dbus-:1.2-org.freedesktop.portal.IBus.
Mar 15 12:09:57 akideck systemd[1202]: Started dbus-:1.2-org.freedesktop.portal.IBus@0.service.
Mar 15 12:09:57 akideck kernel: wlan0: authenticate with e8:9c:25:49:01:8c (local address=e8:8d:a6:77:9a:8c)
Mar 15 12:09:57 akideck kernel: wlan0: send auth to e8:9c:25:49:01:8c (try 1/3)
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.3667] device (wlan0): new IWD device state is connecting
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.3672] device (wlan0): Activation: starting connection 'The New Lunar Republic' (bdd53fc7-001f-41f5-8338-3dcbce226f2c)
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.3676] device (wlan0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.3678] manager: NetworkManager state is now CONNECTING
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.3679] device (wlan0): state change: prepare -> config (reason 'none', managed-type: 'full')
Mar 15 12:09:57 akideck kernel: wlan0: authenticate with e8:9c:25:49:01:8c (local address=e8:8d:a6:77:9a:8c)
Mar 15 12:09:57 akideck kernel: wlan0: send auth to e8:9c:25:49:01:8c (try 1/3)
Mar 15 12:09:57 akideck kernel: wlan0: authenticated
Mar 15 12:09:57 akideck kernel: wlan0: associate with e8:9c:25:49:01:8c (try 1/3)
Mar 15 12:09:57 akideck kernel: wlan0: RX AssocResp from e8:9c:25:49:01:8c (capab=0x1011 status=0 aid=13)
Mar 15 12:09:57 akideck kernel: ath11k_pci 0000:03:00.0: mac0-5 cap 9-0-0-8a-40-0
Mar 15 12:09:57 akideck kernel: ath11k_pci 0000:03:00.0: phy0-5 cap c-33-c-80-fd-9
Mar 15 12:09:57 akideck kernel: ath11k_pci 0000:03:00.0: phy6-10 cap 80-8-0-0-0
Mar 15 12:09:57 akideck kernel: ath11k_pci 0000:03:00.0: WMI_VDEV_PARAM_SET_HEMU_MODE 3 0x35
Mar 15 12:09:57 akideck kernel: wlan0: associated
Mar 15 12:09:57 akideck wireplumber[1450]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
Mar 15 12:09:57 akideck wireplumber[1450]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
Mar 15 12:09:57 akideck wireplumber[1450]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
Mar 15 12:09:57 akideck kernel: Bluetooth: RFCOMM TTY layer initialized
Mar 15 12:09:57 akideck kernel: Bluetooth: RFCOMM socket layer initialized
Mar 15 12:09:57 akideck kernel: Bluetooth: RFCOMM ver 1.11
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/ldac
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSink/aptx_hd
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_hd
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSink/aptx
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSink/aac
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aac
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSink/opus_g
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/opus_g
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSink/sbc
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/sbc
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_ll_1
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_ll_0
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/faststream
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/faststream_duplex
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSink/opus_05
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/opus_05
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSink/opus_05_duplex
Mar 15 12:09:57 akideck bluetoothd[803]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/opus_05_duplex
Mar 15 12:09:57 akideck kernel: wlan0: Limiting TX power to 24 (24 - 0) dBm as advertised by e8:9c:25:49:01:8c
Mar 15 12:09:57 akideck iwd[1201]: event: state, old: connecting (auto), new: connected
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.5423] device (wlan0): new IWD device state is connected
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.5553] device (wlan0): state change: config -> ip-config (reason 'none', managed-type: 'full')
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.5566] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Mar 15 12:09:57 akideck wireplumber[1450]: spa.alsa: Failed to enable UCM device Speaker
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.5713] dhcp4 (wlan0): state changed new lease, address=192.168.0.112, acd pending
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.7378] dhcp4 (wlan0): state changed new lease, address=192.168.0.112
Mar 15 12:09:57 akideck NetworkManager[1062]: <info>  [1742065797.7382] policy: set 'The New Lunar Republic' (wlan0) as default for IPv4 routing and DNS
Mar 15 12:09:57 akideck systemd-resolved[556]: wlan0: Bus client set search domain list to: lunarrepublic
Mar 15 12:09:57 akideck systemd-resolved[556]: wlan0: Bus client set default route setting: yes
Mar 15 12:09:57 akideck systemd-resolved[556]: wlan0: Bus client set DNS server list to: 192.168.0.1
Mar 15 12:09:57 akideck galileo-mura-setup[1476]: [galileo-mura] Not using mura correction for this unit as it is not SDC.
Mar 15 12:09:57 akideck systemd[1202]: galileo-mura-setup.service: Main process exited, code=exited, status=1/FAILURE
Mar 15 12:09:57 akideck systemd[1202]: galileo-mura-setup.service: Failed with result 'exit-code'.
Mar 15 12:09:57 akideck systemd[1202]: Failed to start galileo mura setup.
Mar 15 12:09:57 akideck systemd[1202]: galileo-mura-setup.service: Consumed 1.013s CPU time, 4.9M memory peak.
Mar 15 12:09:57 akideck systemd[1202]: Reached target Gamescope Session.
Mar 15 12:09:59 akideck avahi-daemon[802]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::ea8d:a6ff:fe77:9a8c.
Mar 15 12:09:59 akideck avahi-daemon[802]: New relevant interface wlan0.IPv6 for mDNS.
Mar 15 12:09:59 akideck avahi-daemon[802]: Registering new address record for fe80::ea8d:a6ff:fe77:9a8c on wlan0.*.
Mar 15 12:10:00 akideck systemd[1]: systemd-rfkill.service: Deactivated successfully.
Mar 15 12:10:01 akideck avahi-daemon[802]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Mar 15 12:10:01 akideck avahi-daemon[802]: New relevant interface wlan0.IPv4 for mDNS.
Mar 15 12:10:01 akideck avahi-daemon[802]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Mar 15 12:10:01 akideck NetworkManager[1062]: <info>  [1742065801.1710] device (wlan0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
Mar 15 12:10:01 akideck NetworkManager[1062]: <info>  [1742065801.1727] device (wlan0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
Mar 15 12:10:01 akideck NetworkManager[1062]: <info>  [1742065801.1729] device (wlan0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
Mar 15 12:10:01 akideck NetworkManager[1062]: <info>  [1742065801.1732] manager: NetworkManager state is now CONNECTED_SITE
Mar 15 12:10:01 akideck NetworkManager[1062]: <info>  [1742065801.1735] device (wlan0): Activation: successful, device activated.
Mar 15 12:10:04 akideck systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Mar 15 12:10:06 akideck systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 15 12:10:06 akideck systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 15 12:10:06 akideck NetworkManager[1062]: <info>  [1742065806.6539] manager: NetworkManager state is now CONNECTED_GLOBAL
Mar 15 12:10:07 akideck steam-launcher[1480]: steam.sh[1480]: Running Steam on steamos rolling 64-bit
Mar 15 12:10:07 akideck steam-launcher[1480]: steam.sh[1480]: STEAM_RUNTIME is enabled automatically
Mar 15 12:10:07 akideck steam-launcher[1619]: setup.sh[1619]: Steam runtime environment up-to-date!
Mar 15 12:10:07 akideck steam[1658]: steam.sh[1480]: Using supervisor /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 15 12:10:07 akideck steam[1658]: steam.sh[1480]: Steam client's requirements are satisfied
Mar 15 12:10:07 akideck steam[1658]: CProcessEnvironmentManager is ready, 6 preallocated environment variables.
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] Startup - updater built Mar 11 2025 20:39:15
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] Startup - Steam Client launched with: '/home/deck/.local/share/Steam/ubuntu12_32/steam' '-srt-logger-opened' '-steamdeck' '-steamos3' '-steampal' '-steamdeck' '-gamepadui'
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] Opted in to client beta 'steamdeck_publicbeta' via beta file
Mar 15 12:10:07 akideck steam[1658]: You are in the 'steamdeck_publicbeta' client beta.
Mar 15 12:10:07 akideck steam[1658]: 03/15 12:10:07 minidumps folder is set to /tmp/dumps
Mar 15 12:10:07 akideck steam[1658]: 03/15 12:10:07 Init: Installing breakpad exception handler for appid(steam)/version(1741737356)/tid(1677)
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] Loading cached metrics from disk (/home/deck/.local/share/Steam/package/steam_client_metrics.bin)
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] Using the following download hosts for Public, Realm steamglobal
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] 1. https://client-update.fastly.steamstatic.com, /, Realm 'steamglobal', weight was 900, source = 'update_hosts_cached.vdf'
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] 2. https://client-update.akamai.steamstatic.com, /, Realm 'steamglobal', weight was 100, source = 'update_hosts_cached.vdf'
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] 3. https://client-update.steamstatic.com, /, Realm 'steamglobal', weight was 1, source = 'baked in'
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] Verifying installation...
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] Verifying file sizes only
Mar 15 12:10:07 akideck steam[1658]: [2025-03-15 12:10:07] Verification complete
Mar 15 12:10:07 akideck steam[1658]: UpdateUI: skip show logo
Mar 15 12:10:07 akideck steam[1658]: Steam logging initialized: directory: /home/deck/.local/share/Steam/logs
Mar 15 12:10:08 akideck steam[1658]: XRRGetOutputInfo Workaround: initialized with override: 1 real: 0xf76b3370
Mar 15 12:10:08 akideck steam[1658]: XRRGetCrtcInfo Workaround: initialized with override: 1 real: 0xf76b1cc0
Mar 15 12:10:08 akideck systemd[1202]: Starting Portal service...
Mar 15 12:10:08 akideck systemd[1202]: Starting flatpak document portal service...
Mar 15 12:10:08 akideck systemd[1202]: Starting sandboxed app permission store...
Mar 15 12:10:08 akideck systemd[1202]: Started sandboxed app permission store.
Mar 15 12:10:08 akideck systemd[1202]: Started flatpak document portal service.
Mar 15 12:10:08 akideck rtkit-daemon[1455]: Supervising 4 threads of 2 processes of 1 users.
Mar 15 12:10:08 akideck rtkit-daemon[1455]: Supervising 4 threads of 2 processes of 1 users.
Mar 15 12:10:08 akideck rtkit-daemon[1455]: Supervising 4 threads of 2 processes of 1 users.
Mar 15 12:10:08 akideck xdg-desktop-por[1704]: No skeleton to export
Mar 15 12:10:08 akideck systemd[1202]: Started Portal service.
Mar 15 12:10:08 akideck steam[1658]: 03/15 12:10:08 minidumps folder is set to /tmp/dumps
Mar 15 12:10:08 akideck steam[1658]: 03/15 12:10:08 Init: Installing breakpad exception handler for appid(steamsysinfo)/version(1741737356)/tid(1726)
Mar 15 12:10:08 akideck steam[1658]: Running query: 1 - GpuTopology
Mar 15 12:10:08 akideck steam[1658]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 15 12:10:08 akideck steam[1658]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 12:10:08 akideck steam[1658]: Response: gpu_topology {
Mar 15 12:10:08 akideck steam[1658]:   gpus {
Mar 15 12:10:08 akideck steam[1658]:     id: 1
Mar 15 12:10:08 akideck steam[1658]:     name: "AMD Custom GPU 0932 (RADV VANGOGH)"
Mar 15 12:10:08 akideck steam[1658]:     vram_size_bytes: 6397714432
Mar 15 12:10:08 akideck steam[1658]:     driver_id: k_EGpuDriverId_MesaRadv
Mar 15 12:10:08 akideck steam[1658]:     driver_version_major: 24
Mar 15 12:10:08 akideck steam[1658]:     driver_version_minor: 2
Mar 15 12:10:08 akideck steam[1658]:     driver_version_patch: 99
Mar 15 12:10:08 akideck steam[1658]:   }
Mar 15 12:10:08 akideck steam[1658]:   default_gpu_id: 1
Mar 15 12:10:08 akideck steam[1658]: }
Mar 15 12:10:08 akideck steam[1658]: Exit code: 0
Mar 15 12:10:08 akideck steam[1658]: Saving response to: /tmp/steamEJMcAL - 58 bytes
Mar 15 12:10:08 akideck steamwebhelper[1749]: steamwebhelper.sh[1740]: Using supervisor /home/deck/.steam/root/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 15 12:10:08 akideck steamwebhelper[1749]: steamwebhelper.sh[1740]: Starting steamwebhelper under bootstrap sniper steam runtime via /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper.sh
Mar 15 12:10:08 akideck steamwebhelper[1749]: steamwebhelper.sh[1740]: CEF sandbox already disabled
Mar 15 12:10:08 akideck steamwebhelper[1749]: steamwebhelper.sh[1740]: Starting steamwebhelper with Sniper steam runtime at /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper/_v2-entry-point
Mar 15 12:10:10 akideck rtkit-daemon[1455]: Successfully made thread 1837 of process 1677 owned by '1000' high priority at nice level -10.
Mar 15 12:10:10 akideck rtkit-daemon[1455]: Supervising 5 threads of 3 processes of 1 users.
Mar 15 12:10:10 akideck rtkit-daemon[1455]: Successfully made thread 1836 of process 1677 owned by '1000' high priority at nice level -10.
Mar 15 12:10:10 akideck rtkit-daemon[1455]: Supervising 6 threads of 3 processes of 1 users.
Mar 15 12:10:10 akideck pkexec[1846]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:10 akideck pkexec[1846]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-priv-write /dev/drm_dp_aux0 ]
Mar 15 12:10:10 akideck p-steamos-priv-write[1860]: checking: /dev/drm_dp_aux0
Mar 15 12:10:10 akideck steamwebhelper[1749]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 15 12:10:10 akideck pkexec[1870]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:10 akideck pkexec[1870]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 2]
Mar 15 12:10:10 akideck pkexec[1888]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:10 akideck pkexec[1888]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 4]
Mar 15 12:10:10 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 1897, but reception is disabled
Mar 15 12:10:10 akideck pkexec[1899]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:10 akideck pkexec[1899]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-fan-control --enable]
Mar 15 12:10:10 akideck systemd[1202]: Started PipeWire PulseAudio.
Mar 15 12:10:10 akideck rtkit-daemon[1455]: Successfully made thread 1908 of process 1908 owned by '1000' high priority at nice level -11.
Mar 15 12:10:10 akideck rtkit-daemon[1455]: Supervising 7 threads of 4 processes of 1 users.
Mar 15 12:10:10 akideck rtkit-daemon[1455]: Successfully made thread 1910 of process 1908 owned by '1000' RT at priority 20.
Mar 15 12:10:10 akideck rtkit-daemon[1455]: Supervising 8 threads of 4 processes of 1 users.
Mar 15 12:10:10 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 15 12:10:10 akideck gpu-trace[805]: 127.0.0.1 - - [15/Mar/2025 12:10:10] "POST / HTTP/1.1" 200 -
Mar 15 12:10:10 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 15 12:10:10 akideck gpu-trace[805]: 127.0.0.1 - - [15/Mar/2025 12:10:10] "POST / HTTP/1.1" 200 -
Mar 15 12:10:10 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 15 12:10:10 akideck gpu-trace[805]: 127.0.0.1 - - [15/Mar/2025 12:10:10] "POST / HTTP/1.1" 200 -
Mar 15 12:10:10 akideck steamwebhelper[1749]: exec ./steamwebhelper -nocrashdialog -lang=en_US -cachedir=/home/deck/.local/share/Steam/config/htmlcache -steampid=1677 -buildid=1741737356 -steamid=0 -logdir=/home/deck/.local/share/Steam/logs -uimode=4 -startcount=0 -gamepadui -steamdeck -steamos3 -steamuniverse=Public -realm=Global -clientui=/home/deck/.local/share/Steam/clientui -steampath=/home/deck/.local/share/Steam/ubuntu12_32/steam -launcher=0 -no-restart-on-ui-mode-change --valve-enable-site-isolation --enable-smooth-scrolling --no-sandbox --password-store=basic --log-file=/home/deck/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --enable-features=PlatformHEVCDecoderSupport --disable-features=SpareRendererForSitePerProcess,DcheckIsFatal,ValveFFmpegAllowLowDelayHEVC
Mar 15 12:10:10 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 15 12:10:10 akideck gpu-trace[805]: 127.0.0.1 - - [15/Mar/2025 12:10:10] "POST / HTTP/1.1" 200 -
Mar 15 12:10:10 akideck mangoapp[1477]: [2025-03-15 12:10:10.917] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 15 12:10:10 akideck mangoapp[1477]: [2025-03-15 12:10:10.917] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 15 12:10:10 akideck pkexec[1958]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:10 akideck pkexec[1958]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-priv-write /sys/class/backlight/amdgpu_bl0/brightness 39638]
Mar 15 12:10:10 akideck p-steamos-priv-write[1971]: checking: /sys/class/backlight/amdgpu_bl0/brightness
Mar 15 12:10:10 akideck p-steamos-priv-write[1975]: commit: 39638 -> /sys/class/backlight/amdgpu_bl0/brightness
Mar 15 12:10:10 akideck systemd[1]: Starting Daemon for power management...
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.042] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.042] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.042] [MANGOHUD] [error] [overlay_params.cpp:114] Couldn't create socket pipe at 'mangohud'
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.042] [MANGOHUD] [error] [overlay_params.cpp:115] ERROR: 'Address already in use'
Mar 15 12:10:11 akideck systemd[1]: Started Daemon for power management.
Mar 15 12:10:11 akideck steam[1658]: Steam Runtime Launch Service: starting steam-runtime-launcher-service
Mar 15 12:10:11 akideck steam[1658]: Steam Runtime Launch Service: steam-runtime-launcher-service is running pid 1992
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.129] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.129] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.129] [MANGOHUD] [error] [overlay_params.cpp:114] Couldn't create socket pipe at 'mangohud'
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.129] [MANGOHUD] [error] [overlay_params.cpp:115] ERROR: 'Address already in use'
Mar 15 12:10:11 akideck steam[1658]: bus_name=com.steampowered.PressureVessel.LaunchAlongsideSteam
Mar 15 12:10:11 akideck pkexec[2002]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:11 akideck pkexec[2002]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-priv-write /sys/class/drm/card0/device/power_dpm_force_performance_level auto]
Mar 15 12:10:11 akideck p-steamos-priv-write[2020]: checking: /sys/class/drm/card0/device/power_dpm_force_performance_level
Mar 15 12:10:11 akideck p-steamos-priv-write[2023]: commit: auto -> /sys/class/drm/card0/device/power_dpm_force_performance_level
Mar 15 12:10:11 akideck kernel: warning: `ThreadPoolForeg' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.243] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.243] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.243] [MANGOHUD] [error] [overlay_params.cpp:114] Couldn't create socket pipe at 'mangohud'
Mar 15 12:10:11 akideck mangoapp[1477]: [2025-03-15 12:10:11.243] [MANGOHUD] [error] [overlay_params.cpp:115] ERROR: 'Address already in use'
Mar 15 12:10:11 akideck gamescope-session[1353]: radv: Updated the per-vertex VRS rate to '0'.
Mar 15 12:10:11 akideck pkexec[2064]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:11 akideck pkexec[2064]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-priv-write /sys/class/hwmon/hwmon5/power1_cap 15000000]
Mar 15 12:10:11 akideck p-steamos-priv-write[2106]: checking: /sys/class/hwmon/hwmon5/power1_cap
Mar 15 12:10:11 akideck p-steamos-priv-write[2109]: commit: 15000000 -> /sys/class/hwmon/hwmon5/power1_cap
Mar 15 12:10:11 akideck pkexec[2126]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:11 akideck pkexec[2126]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-priv-write /sys/class/hwmon/hwmon5/power2_cap 15000000]
Mar 15 12:10:11 akideck p-steamos-priv-write[2141]: checking: /sys/class/hwmon/hwmon5/power2_cap
Mar 15 12:10:11 akideck p-steamos-priv-write[2146]: commit: 15000000 -> /sys/class/hwmon/hwmon5/power2_cap
Mar 15 12:10:11 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: Updating mode for xwayland server #0: 1280x800@90
Mar 15 12:10:12 akideck pkexec[2191]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:12 akideck pkexec[2191]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-devkit-mode --enable]
Mar 15 12:10:12 akideck systemd[1]: Reload requested from client PID 2201 ('systemctl') (unit user@1000.service)...
Mar 15 12:10:12 akideck systemd[1]: Reloading...
Mar 15 12:10:12 akideck steam[1658]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 15 12:10:12 akideck steam[1658]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 12:10:12 akideck steam[1658]: [Gamescope WSI] Application info:
Mar 15 12:10:12 akideck steam[1658]:   pApplicationName: hellovr_vulkan
Mar 15 12:10:12 akideck steam[1658]:   applicationVersion: 1
Mar 15 12:10:12 akideck steam[1658]:   pEngineName: (null)
Mar 15 12:10:12 akideck steam[1658]:   engineVersion: 1
Mar 15 12:10:12 akideck steam[1658]:   apiVersion: 4194304
Mar 15 12:10:12 akideck steam[1658]: [Gamescope WSI] Executable name: vulkandriverquery
Mar 15 12:10:12 akideck steam[1658]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 15 12:10:12 akideck systemd[1]: Reloading finished in 346 ms.
Mar 15 12:10:12 akideck systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Mar 15 12:10:12 akideck systemd[1]: Reload requested from client PID 2304 ('systemctl') (unit user@1000.service)...
Mar 15 12:10:12 akideck systemd[1]: Reloading...
Mar 15 12:10:12 akideck pkexec[2205]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:12 akideck pkexec[2205]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-priv-write /sys/class/leds/status:white/led_brightness_multiplier 48]
Mar 15 12:10:12 akideck p-steamos-priv-write[2310]: checking: /sys/class/leds/status:white/led_brightness_multiplier
Mar 15 12:10:12 akideck p-steamos-priv-write[2402]: commit: 48 -> /sys/class/leds/status:white/led_brightness_multiplier
Mar 15 12:10:12 akideck systemd[1]: Reloading finished in 376 ms.
Mar 15 12:10:13 akideck steam[1658]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/entry:70: error: unexpected identifier 'direction', expected character '}'
Mar 15 12:10:13 akideck steam[1658]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/styles:36: error: invalid string constant "combobox_entry", expected valid string constant
Mar 15 12:10:13 akideck steam[1658]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 15 12:10:13 akideck steam[1658]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 12:10:13 akideck systemd[1202]: Reload requested from client PID 2413 ('systemctl') (unit steam-launcher.service)...
Mar 15 12:10:13 akideck systemd[1202]: Reloading...
Mar 15 12:10:13 akideck steam[1658]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 15 12:10:13 akideck kernel: input: Microsoft X-Box 360 pad 0 as /devices/virtual/input/input25
Mar 15 12:10:13 akideck systemd[1202]: Reloading finished in 271 ms.
Mar 15 12:10:13 akideck systemd[1202]: Expecting device /dev/cec0...
Mar 15 12:10:13 akideck systemd[1]: Starting Time & Date Service...
Mar 15 12:10:14 akideck systemd[1]: Started Time & Date Service.
Mar 15 12:10:14 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 2457, but reception is disabled
Mar 15 12:10:14 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start timed out.
Mar 15 12:10:14 akideck systemd[1202]: Timed out starting plasma-remotecontrollers.service.
Mar 15 12:10:14 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start failed with result 'timeout'.
Mar 15 12:10:14 akideck systemd[1202]: Unnecessary job was removed for /dev/cec0.
Mar 15 12:10:14 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 2452, but reception is disabled
Mar 15 12:10:14 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 2452, but reception is disabled
Mar 15 12:10:15 akideck steam[1658]: Desktop state changed: desktop: { pos:    0,   0 size: 1280, 800 } primary: { pos:    0,   0 size: 1280, 800 }
Mar 15 12:10:15 akideck steam[1658]: Caching cursor image for left_ptr, size 256x256, serial 2, cache size = 0
Mar 15 12:10:15 akideck steam[1658]: Caching cursor image for left_ptr, size 256x256, serial 2, cache size = 0
Mar 15 12:10:15 akideck steam[1658]: CDesktopCapturePipeWire: Opening DRM render node /dev/dri/renderD128
Mar 15 12:10:15 akideck steam[1658]: CDesktopCapturePipeWire: setting stream node path: gamescope
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/01%20Exposing%20Hostile.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/02%20Valve%20Alyx.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/03%20Coetaneous%20Entanglement.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/04%20Construction%20Strider.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/05%20Engage%20Quell%20Inquire.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/06%20Insubordinate%20Relocation.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/07%20City%2017%20Strider.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/08%20Thirty%20Seven%20After%20Six.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/09%20From%20Here%20to%20There%20in%20Under%20a%20Second.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/10%20Quaranta%20Giorni.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/11%20Xombies.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/12%20Only%20One.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/13%20Matter%20of%20Perspective.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/14%20Severed%20from%20the%20Vortessence.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/15%20Is%20Or%20Will%20Be.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/16%20What%20Did%20it%20Taste%20Like.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/17%20I%20Love%20This%20Gun.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/18%20Extra%20Dimensional%20Darkness.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/19%20Quantum%20Cubicles.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/20%20Infestation%20Control.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/21%20Deployed%20and%20Designated%20to%20Prosecute.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/22%20B3PbIBONACHOCTb.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/23%20Anti-Citizen.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/24%20Tri-Vector%20Pre-Reverberation.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/25%20Harsh%20Industrial%20Train%20Crash.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/26%20The%20Advisors.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/27%20Prisoner%20Pod.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/28-Charger.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/29-Scanning%20Hostile%20Biodats.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/30-Substation.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/31-Alien%20Flora.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/32-Alien%20Fauna.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/33-Requiem%20Vortessence.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/34-Lightning%20Dog.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/35-Arachnophobia.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/36-Rabid%20Lightning.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/37-Extract.%20Resonate.%20Isolate.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/38-Level-5%20Anti-Civil%20Activities.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/39-Vortessence%20Lux.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/40-Hacking.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/41-Outbreak%20is%20Uncontained.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/42-Processing%20Tripmines.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/43-Xenfestation%20Control.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/44-Sunset%20Vault.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/45-Ear%20Like%20Mozart.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/46-Jeff.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/47-Elevatormuzik.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/48-Trash%20Compactor%20Waltz.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/49-Quantum%20Antlion%20Tunnel.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/50-Cats.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/51-Beasts%20of%20Prey.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/52-Insects%20and%20Reptiles.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/53-The%20Last%20Substation.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/54-Trans%20Human%20Crossfire.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/55-Let%20Me%20Talk%20to%20Your%20Super-Advisor.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/56-Terin%20%236.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/57-Infestation%20Ambience.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/58-A%20Gentle%20Docking.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/59-Overload%20Protocol.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/60-Cauterizer.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/61-P1.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/62-Gravity%20Perforation%20Detail.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/63-Reality%20Disruption%20Pulse.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/64-Icosahedron.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/65-Supersymmetry%20Dilation.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/66-Stringularity.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/67-Ekpyrosis.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/68-Alice%20Matter.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/69-Gravity%20Grenade%20Conflict.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/70-Superimposition.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/71-Consequences.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck steam[1658]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/72-HIRE.flac
Mar 15 12:10:15 akideck steam[1658]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 12:10:15 akideck systemd[1202]: Reload requested from client PID 2481 ('systemctl') (unit steam-launcher.service)...
Mar 15 12:10:15 akideck systemd[1202]: Reloading...
Mar 15 12:10:15 akideck systemd[1]: Starting Atomic Update Daemon...
Mar 15 12:10:15 akideck systemd[1202]: Reloading finished in 267 ms.
Mar 15 12:10:15 akideck systemd[1]: Started Atomic Update Daemon.
Mar 15 12:10:15 akideck pkexec[2517]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:15 akideck pkexec[2517]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/jupiter-initial-firmware-update check]
Mar 15 12:10:16 akideck systemd[1202]: Starting Accessibility services bus...
Mar 15 12:10:16 akideck systemd[1202]: Started Accessibility services bus.
Mar 15 12:10:16 akideck systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Mar 15 12:10:16 akideck gamescope-session[2565]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 12:10:16 akideck gamescope-session[2565]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 12:10:16 akideck gamescope-session[2565]: >                   X11 cannot support keycodes above 255.
Mar 15 12:10:16 akideck gamescope-session[2565]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 12:10:16 akideck gamescope-session[2565]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 12:10:16 akideck gamescope-session[2565]: Errors from xkbcomp are not fatal to the X server
Mar 15 12:10:16 akideck gamescope-session[2566]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 12:10:16 akideck gamescope-session[2566]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 12:10:16 akideck gamescope-session[2566]: >                   X11 cannot support keycodes above 255.
Mar 15 12:10:16 akideck gamescope-session[2566]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 12:10:16 akideck gamescope-session[2566]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 12:10:16 akideck gamescope-session[2566]: Errors from xkbcomp are not fatal to the X server
Mar 15 12:10:16 akideck kernel: [drm] pre_validate_dsc:1589 MST_DSC dsc precompute is not needed
Mar 15 12:10:16 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 2570, but reception is disabled
Mar 15 12:10:16 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 2575, but reception is disabled
Mar 15 12:10:16 akideck pkexec[2590]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:16 akideck pkexec[2590]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 12:10:16 akideck pkexec[2612]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:16 akideck pkexec[2612]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 12:10:16 akideck pkexec[2637]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:16 akideck pkexec[2637]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 12:10:16 akideck pkexec[2655]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:16 akideck pkexec[2655]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 12:10:16 akideck pkexec[2677]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:16 akideck pkexec[2677]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 12:10:20 akideck pkexec[2695]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:10:20 akideck pkexec[2695]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-dock-updater --check]
Mar 15 12:10:18 akideck systemd-resolved[556]: Clock change detected. Flushing caches.
Mar 15 12:10:18 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 15 12:10:18 akideck systemd-journald[511]: Time jumped backwards, rotating.
Mar 15 12:10:18 akideck systemd-timesyncd[557]: Contacted time server 12.205.28.193:123 (2.arch.pool.ntp.org).
Mar 15 12:10:18 akideck systemd-timesyncd[557]: Initial clock synchronization to Sat 2025-03-15 12:10:18.569611 PDT.
Mar 15 12:10:20 akideck systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Mar 15 12:10:42 akideck systemd[1]: systemd-timedated.service: Deactivated successfully.
Mar 15 12:11:29 akideck systemd[1]: Unmounting /esp...
Mar 15 12:11:29 akideck systemd[1]: steamos-boot.service: Deactivated successfully.
Mar 15 12:11:29 akideck systemd[1]: Stopped SteamOS Boot Registration.
Mar 15 12:11:29 akideck systemd[1]: Unmounting /efi...
Mar 15 12:11:29 akideck systemd[1]: esp.mount: Deactivated successfully.
Mar 15 12:11:29 akideck systemd[1]: Unmounted /esp.
Mar 15 12:11:29 akideck systemd[1]: efi.mount: Deactivated successfully.
Mar 15 12:11:29 akideck systemd[1]: Unmounted /efi.
Mar 15 12:12:06 akideck steam[1658]: [2025-03-15 12:12:06] Background update loop checking for update. . .
Mar 15 12:12:06 akideck steam[1658]: [2025-03-15 12:12:06] Checking for available updates...
Mar 15 12:12:06 akideck steam[1658]: [2025-03-15 12:12:06] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 15 12:12:06 akideck steam[1658]: [2025-03-15 12:12:06] Manifest download: send request
Mar 15 12:12:07 akideck steam[1658]: [2025-03-15 12:12:07] Manifest download: waiting for download to finish
Mar 15 12:12:07 akideck steam[1658]: [2025-03-15 12:12:07] Manifest download: finished
Mar 15 12:12:07 akideck steam[1658]: [2025-03-15 12:12:07] Download skipped: /steam_client_steamdeck_publicbeta_ubuntu12 version 1741737356, installed version 1741737356, existing pending version 0
Mar 15 12:12:07 akideck steam[1658]: [2025-03-15 12:12:07] Nothing to do
Mar 15 12:12:07 akideck pkexec[2777]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:12:07 akideck pkexec[2777]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --supports-duplicate-detection]
Mar 15 12:12:07 akideck pkexec[2788]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:12:07 akideck pkexec[2788]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --enable-duplicate-detection check]
Mar 15 12:12:08 akideck pkexec[2809]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 12:12:08 akideck pkexec[2809]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-biosupdate check]
Mar 15 12:12:08 akideck steam[1658]: Checking for BIOS updates
Mar 15 12:12:08 akideck steam[1658]: BIOS version: F7G0112
Mar 15 12:12:08 akideck steam[1658]: Desired version: <none>
Mar 15 12:12:08 akideck steam[1658]: No updates configured for this bios
Mar 15 12:24:53 akideck systemd[1]: Starting Cleanup of Temporary Directories...
Mar 15 12:24:54 akideck systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
Mar 15 12:24:54 akideck systemd[1]: Finished Cleanup of Temporary Directories.
Mar 15 12:40:20 akideck steam[1658]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 15 12:40:21 akideck steam[1658]: Proton: Upgrading prefix from None to 9.0-202 (/home/deck/.local/share/Steam/steamapps/compatdata/3240220/)
Mar 15 12:40:22 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:22 akideck steam[1658]: fsync: up and running.
Mar 15 12:40:23 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:23 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:23 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:23 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:24 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:24 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:24 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:24 akideck steam[1658]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 15 12:40:24 akideck steam[1658]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 12:40:24 akideck steam[1658]: [Gamescope WSI] No application info given.
Mar 15 12:40:24 akideck steam[1658]: [Gamescope WSI] Executable name: explorer.exe
Mar 15 12:40:24 akideck steam[1658]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 15 12:40:24 akideck steam[1658]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 12:40:24 akideck steam[1658]: ATTENTION: default value of option vk_wsi_force_swapchain_to_current_extent overridden by environment.
Mar 15 12:40:24 akideck steam[1658]: [Gamescope WSI] No application info given.
Mar 15 12:40:24 akideck steam[1658]: [Gamescope WSI] Executable name: explorer.exe
Mar 15 12:40:24 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:24 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:25 akideck steam[1658]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 12:40:26 akideck systemd-logind[871]: The system will suspend now!
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.1177] manager: sleep: sleep requested (sleeping: no  enabled: yes)
Mar 15 12:40:26 akideck steam[1658]: method return time=1742067626.117748 sender=:1.7 -> destination=:1.78 serial=131 reply_serial=2
Mar 15 12:40:26 akideck wakehook[1483]: [wakehook] 1742067626.117658: Going to sleep? 1
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.1178] device (/net/connman/iwd/0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.1183] manager: NetworkManager state is now ASLEEP
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.1184] device (wlan0): state change: activated -> deactivating (reason 'sleeping', managed-type: 'full')
Mar 15 12:40:26 akideck systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 15 12:40:26 akideck systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 15 12:40:26 akideck iwd[1201]: event: state, old: connected, new: disconnecting
Mar 15 12:40:26 akideck kernel: wlan0: deauthenticating from e8:9c:25:49:01:8c by local choice (Reason: 3=DEAUTH_LEAVING)
Mar 15 12:40:26 akideck iwd[1201]: event: state, old: disconnecting, new: disconnected
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.3212] device (wlan0): new IWD device state is disconnecting
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.3214] device (wlan0): state change: deactivating -> disconnected (reason 'sleeping', managed-type: 'full')
Mar 15 12:40:26 akideck avahi-daemon[802]: Withdrawing address record for fe80::ea8d:a6ff:fe77:9a8c on wlan0.
Mar 15 12:40:26 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::ea8d:a6ff:fe77:9a8c.
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.3219] dhcp4 (wlan0): canceled DHCP transaction
Mar 15 12:40:26 akideck avahi-daemon[802]: Interface wlan0.IPv6 no longer relevant for mDNS.
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.3220] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.3220] dhcp4 (wlan0): state changed no lease
Mar 15 12:40:26 akideck systemd-resolved[556]: wlan0: Bus client reset search domain list.
Mar 15 12:40:26 akideck systemd-resolved[556]: wlan0: Bus client set default route setting: no
Mar 15 12:40:26 akideck systemd-resolved[556]: wlan0: Bus client reset DNS server list.
Mar 15 12:40:26 akideck avahi-daemon[802]: Withdrawing address record for 192.168.0.112 on wlan0.
Mar 15 12:40:26 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Mar 15 12:40:26 akideck avahi-daemon[802]: Interface wlan0.IPv4 no longer relevant for mDNS.
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.3885] device (wlan0): new IWD device state is disconnected
Mar 15 12:40:26 akideck NetworkManager[1062]: <info>  [1742067626.3887] device (wlan0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 15 12:40:26 akideck systemd[1]: Reached target Sleep.
Mar 15 12:40:26 akideck systemd[1]: Starting System Suspend...
Mar 15 12:40:26 akideck systemd[1]: user@1000.service: Unit now frozen-by-parent.
Mar 15 12:40:26 akideck systemd[1]: session-1.scope: Unit now frozen-by-parent.
Mar 15 12:40:26 akideck systemd[1]: user-1000.slice: Unit now frozen-by-parent.
Mar 15 12:40:26 akideck systemd[1]: user.slice: Unit now frozen.
Mar 15 12:40:26 akideck systemd-sleep[3401]: Successfully froze unit 'user.slice'.
Mar 15 12:40:26 akideck systemd-sleep[3401]: Performing sleep operation 'suspend'...
Mar 15 12:40:26 akideck kernel: PM: suspend entry (deep)
Mar 15 12:40:32 akideck kernel: Filesystems sync: 6.246 seconds
Mar 15 17:24:54 akideck kernel: Freezing user space processes
Mar 15 17:24:54 akideck kernel: Freezing user space processes completed (elapsed 0.001 seconds)
Mar 15 17:24:54 akideck kernel: OOM killer disabled.
Mar 15 17:24:54 akideck kernel: Freezing remaining freezable tasks
Mar 15 17:24:54 akideck kernel: Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
Mar 15 17:24:54 akideck kernel: printk: Suspending console(s) (use no_console_suspend to debug)
Mar 15 17:24:54 akideck kernel: ACPI: EC: interrupt blocked
Mar 15 17:24:54 akideck kernel: ACPI: PM: Preparing to enter system sleep state S3
Mar 15 17:24:54 akideck kernel: ACPI: EC: event blocked
Mar 15 17:24:54 akideck kernel: ACPI: EC: EC stopped
Mar 15 17:24:54 akideck kernel: ACPI: PM: Saving platform NVS memory
Mar 15 17:24:54 akideck kernel: Disabling non-boot CPUs ...
Mar 15 17:24:54 akideck kernel: smpboot: CPU 7 is now offline
Mar 15 17:24:54 akideck kernel: smpboot: CPU 6 is now offline
Mar 15 17:24:54 akideck kernel: smpboot: CPU 5 is now offline
Mar 15 17:24:54 akideck kernel: smpboot: CPU 4 is now offline
Mar 15 17:24:54 akideck kernel: smpboot: CPU 3 is now offline
Mar 15 17:24:54 akideck kernel: smpboot: CPU 2 is now offline
Mar 15 17:24:54 akideck kernel: smpboot: CPU 1 is now offline
Mar 15 17:24:54 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP off
Mar 15 17:24:54 akideck kernel: ACPI: PM: Low-level resume complete
Mar 15 17:24:54 akideck kernel: ACPI: EC: EC started
Mar 15 17:24:54 akideck kernel: ACPI: PM: Restoring platform NVS memory
Mar 15 17:24:54 akideck kernel: LVT offset 0 assigned for vector 0x400
Mar 15 17:24:54 akideck kernel: Enabling non-boot CPUs ...
Mar 15 17:24:54 akideck kernel: smpboot: Booting Node 0 Processor 1 APIC 0x1
Mar 15 17:24:54 akideck kernel: ACPI: \_SB_.PLTF.C001: Found 3 idle states
Mar 15 17:24:54 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
Mar 15 17:24:54 akideck kernel: CPU1 is up
Mar 15 17:24:54 akideck kernel: smpboot: Booting Node 0 Processor 2 APIC 0x2
Mar 15 17:24:54 akideck kernel: ACPI: \_SB_.PLTF.C002: Found 3 idle states
Mar 15 17:24:54 akideck kernel: CPU2 is up
Mar 15 17:24:54 akideck kernel: smpboot: Booting Node 0 Processor 3 APIC 0x3
Mar 15 17:24:54 akideck kernel: ACPI: \_SB_.PLTF.C003: Found 3 idle states
Mar 15 17:24:54 akideck kernel: CPU3 is up
Mar 15 17:24:54 akideck kernel: smpboot: Booting Node 0 Processor 4 APIC 0x4
Mar 15 17:24:54 akideck kernel: ACPI: \_SB_.PLTF.C004: Found 3 idle states
Mar 15 17:24:54 akideck kernel: CPU4 is up
Mar 15 17:24:54 akideck kernel: smpboot: Booting Node 0 Processor 5 APIC 0x5
Mar 15 17:24:54 akideck kernel: ACPI: \_SB_.PLTF.C005: Found 3 idle states
Mar 15 17:24:54 akideck kernel: CPU5 is up
Mar 15 17:24:54 akideck kernel: smpboot: Booting Node 0 Processor 6 APIC 0x6
Mar 15 17:24:54 akideck kernel: ACPI: \_SB_.PLTF.C006: Found 3 idle states
Mar 15 17:24:54 akideck kernel: CPU6 is up
Mar 15 17:24:54 akideck kernel: smpboot: Booting Node 0 Processor 7 APIC 0x7
Mar 15 17:24:54 akideck kernel: ACPI: \_SB_.PLTF.C007: Found 3 idle states
Mar 15 17:24:54 akideck kernel: CPU7 is up
Mar 15 17:24:54 akideck kernel: ACPI: PM: Waking up from system sleep state S3
Mar 15 17:24:54 akideck kernel: ACPI: EC: interrupt unblocked
Mar 15 17:24:54 akideck kernel: mhi mhi0: Requested to power ON
Mar 15 17:24:54 akideck kernel: mhi mhi0: Power on setup success
Mar 15 17:24:54 akideck kernel: mhi mhi0: Wait for device to enter SBL or Mission mode
Mar 15 17:24:54 akideck kernel: ACPI: EC: event unblocked
Mar 15 17:24:54 akideck kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000F43FC00000).
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: PSP is resuming...
Mar 15 17:24:54 akideck kernel: max98388 i2c-ADS8388:00: Reset completed (retry:0)
Mar 15 17:24:54 akideck kernel: max98388 i2c-ADS8388:01: Reset completed (retry:0)
Mar 15 17:24:54 akideck kernel: ath11k_pci 0000:03:00.0: failed to allocate dma memory for qmi (524288 B type 1)
Mar 15 17:24:54 akideck kernel: ath11k_pci 0000:03:00.0: failed to allocate qmi target memory: -22
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: reserve 0xa00000 from 0xf43e000000 for PSP TMR
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resuming...
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: dpm has been disabled
Mar 15 17:24:54 akideck kernel: nvme nvme0: 8/0/0 default/read/poll queues
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resumed successfully!
Mar 15 17:24:54 akideck kernel: [drm] DMUB hardware initialized: version=0x0300000A
Mar 15 17:24:54 akideck kernel: usb 3-3: reset full-speed USB device number 2 using xhci_hcd
Mar 15 17:24:54 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 15 17:24:54 akideck kernel: [drm] kiq ring mec 2 pipe 1 q 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
Mar 15 17:24:54 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Mar 15 17:24:54 akideck kernel: ath11k_pci 0000:03:00.0: timeout while waiting for restart complete
Mar 15 17:24:54 akideck kernel: ath11k_pci 0000:03:00.0: failed to resume core: -110
Mar 15 17:24:54 akideck kernel: ath11k_pci 0000:03:00.0: PM: dpm_run_callback(): pci_pm_resume returns -110
Mar 15 17:24:54 akideck kernel: ath11k_pci 0000:03:00.0: PM: failed to resume async: error -110
Mar 15 17:24:54 akideck kernel: ath11k_pci 0000:03:00.0: wmi command 16387 timeout
Mar 15 17:24:54 akideck kernel: ath11k_pci 0000:03:00.0: failed to send WMI_PDEV_SET_PARAM cmd
Mar 15 17:24:54 akideck kernel: ath11k_pci 0000:03:00.0: failed to enable dynamic bw: -11
Mar 15 17:24:54 akideck kernel: ------------[ cut here ]------------
Mar 15 17:24:54 akideck kernel: Hardware became unavailable upon resume. This could be a software issue prior to suspend or a hardware issue.
Mar 15 17:24:54 akideck kernel: WARNING: CPU: 1 PID: 3424 at net/mac80211/util.c:1828 ieee80211_reconfig+0xa0/0x15e0 [mac80211]
Mar 15 17:24:54 akideck kernel: Modules linked in: tls uinput snd_seq_dummy snd_hrtimer rfcomm snd_seq snd_seq_device michael_mic ccm algif_aead crypto_null des3_ede_x86_64 cbc des_generic libdes md4 nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct qrtr_mhi nft_chain_nat ip6table_nat ip6table_mangle ip6table_raw ip6table_security iptable_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 iptable_mangle iptable_raw iptable_security nf_tables ip6table_filter ip6_tables iptable_filter cmac algif_hash algif_skcipher af_alg bnep ramoops reed_solomon snd_acp_sof_mach snd_acp_mach snd_sof_probes qrtr snd_soc_dmic joydev snd_sof_amd_acp63 ath11k_pci intel_rapl_msr mousedev snd_sof_amd_vangogh intel_rapl_common ath11k snd_sof_amd_acp qmi_helpers snd_sof_pci amdgpu hci_uart snd_sof_xtensa_dsp mac80211 btqca snd_sof pwrseq_core kvm_amd snd_sof_utils btrtl snd_pci_ps libarc4 btintel hid_steam hid_multitouch btbcm snd_amd_sdw_acpi kvm spd5118 soundwire_amd snd_hda_codec_hdmi
Mar 15 17:24:54 akideck kernel:  crct10dif_pclmul cfg80211 soundwire_generic_allocation amdxcp snd_soc_nau8821 crc32_pclmul bluetooth polyval_clmulni soundwire_bus snd_soc_max98388 i2c_algo_bit polyval_generic snd_hda_intel drm_exec ghash_clmulni_intel snd_intel_dspcfg gpu_sched sha512_ssse3 drm_suballoc_helper sha1_ssse3 snd_soc_core snd_intel_sdw_acpi drm_buddy aesni_intel snd_hda_codec drm_ttm_helper gf128mul snd_compress crypto_simd ttm snd_hda_core ac97_bus cryptd snd_hwdep snd_pci_acp6x snd_pcm_dmaengine sp5100_tco drm_display_helper snd_pci_acp5x rapl wdat_wdt pcspkr atkbd snd_pcm snd_acp_config cec i2c_piix4 rfkill hid_generic libps2 cdc_acm vivaldi_fmap tpm_crb snd_timer snd video ccp mhi snd_soc_acpi i2c_smbus wmi ltrf216a tpm_tis i2c_hid_acpi soundcore industrialio tpm_tis_core i2c_hid 8250_dw mac_hid mmc_block pkcs8_key_parser hid_playstation led_class_multicolor hid_nintendo ff_memless i2c_dev crypto_user loop dm_mod nfnetlink zram tpm libaescfb ip_tables x_tables overlay ext4 crc16 mbcache jbd2 usbhid vfat fat btrfs
Mar 15 17:24:54 akideck kernel:  blake2b_generic libcrc32c crc32c_generic xor raid6_pq sdhci_pci serio_raw extcon_steamdeck leds_steamdeck steamdeck_hwmon cqhci nvme crc32c_intel sdhci sha256_ssse3 nvme_core xhci_pci i8042 mmc_core xhci_pci_renesas nvme_auth serio steamdeck spi_amd
Mar 15 17:24:54 akideck kernel: CPU: 1 UID: 0 PID: 3424 Comm: kworker/u32:24 Not tainted 6.11.11-valve8-1-neptune-611-g9b073eb8166e #1 67a36105599ee638952bfd845440aeb4111d3702
Mar 15 17:24:54 akideck kernel: Hardware name: Valve Galileo/Galileo, BIOS F7G0112 08/01/2024
Mar 15 17:24:54 akideck kernel: Workqueue: async async_run_entry_fn
Mar 15 17:24:54 akideck kernel: RIP: 0010:ieee80211_reconfig+0xa0/0x15e0 [mac80211]
Mar 15 17:24:54 akideck kernel: Code: 03 00 00 41 c6 87 ad 05 00 00 00 4c 89 ff e8 67 7d fb ff 41 89 c4 85 c0 0f 84 16 03 00 00 48 c7 c7 08 71 6c c1 e8 a0 66 2d c7 <0f> 0b eb 31 84 c0 0f 85 aa 01 00 00 41 c6 87 ad 05 00 00 00 4c 89
Mar 15 17:24:54 akideck kernel: RSP: 0018:ffffaa7f8c20fcd0 EFLAGS: 00010282
Mar 15 17:24:54 akideck kernel: RAX: 0000000000000000 RBX: ffff9dc896be0538 RCX: 0000000000000027
Mar 15 17:24:54 akideck kernel: RDX: ffff9dcb6ec609c8 RSI: 0000000000000001 RDI: ffff9dcb6ec609c0
Mar 15 17:24:54 akideck kernel: RBP: ffff9dc896be03c0 R08: 0000000000000000 R09: ffffaa7f8c20fa98
Mar 15 17:24:54 akideck kernel: R10: ffff9dcb7eafdfa8 R11: 0000000000000003 R12: 00000000fffffff5
Mar 15 17:24:54 akideck kernel: R13: 0000000000000010 R14: 0000000000000000 R15: ffff9dc896be0900
Mar 15 17:24:54 akideck kernel: FS:  0000000000000000(0000) GS:ffff9dcb6ec40000(0000) knlGS:0000000000000000
Mar 15 17:24:54 akideck kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Mar 15 17:24:54 akideck kernel: CR2: 0000000000000000 CR3: 000000000cc1e000 CR4: 0000000000350ef0
Mar 15 17:24:54 akideck kernel: Call Trace:
Mar 15 17:24:54 akideck kernel:  <TASK>
Mar 15 17:24:54 akideck kernel:  ? ieee80211_reconfig+0xa0/0x15e0 [mac80211 19c51c2daaf20e0d2032d1f66f37b81060840737]
Mar 15 17:24:54 akideck kernel:  ? __warn.cold+0x8e/0xe8
Mar 15 17:24:54 akideck kernel:  ? ieee80211_reconfig+0xa0/0x15e0 [mac80211 19c51c2daaf20e0d2032d1f66f37b81060840737]
Mar 15 17:24:54 akideck kernel:  ? report_bug+0xff/0x140
Mar 15 17:24:54 akideck kernel:  ? handle_bug+0x53/0x90
Mar 15 17:24:54 akideck kernel:  ? exc_invalid_op+0x17/0x70
Mar 15 17:24:54 akideck kernel:  ? asm_exc_invalid_op+0x1a/0x20
Mar 15 17:24:54 akideck kernel:  ? ieee80211_reconfig+0xa0/0x15e0 [mac80211 19c51c2daaf20e0d2032d1f66f37b81060840737]
Mar 15 17:24:54 akideck kernel:  ? srso_return_thunk+0x5/0x5f
Mar 15 17:24:54 akideck kernel:  ? srso_return_thunk+0x5/0x5f
Mar 15 17:24:54 akideck kernel:  ? srso_return_thunk+0x5/0x5f
Mar 15 17:24:54 akideck kernel:  ? schedule_timeout+0x12f/0x160
Mar 15 17:24:54 akideck kernel:  ? srso_return_thunk+0x5/0x5f
Mar 15 17:24:54 akideck kernel:  wiphy_resume+0x85/0x1b0 [cfg80211 d8d5fe6048cfd901ef49d456cb90336036e75234]
Mar 15 17:24:54 akideck kernel:  ? __pfx_wiphy_resume+0x10/0x10 [cfg80211 d8d5fe6048cfd901ef49d456cb90336036e75234]
Mar 15 17:24:54 akideck kernel:  dpm_run_callback+0x4a/0x150
Mar 15 17:24:54 akideck kernel:  device_resume+0xb0/0x280
Mar 15 17:24:54 akideck kernel:  async_resume+0x1d/0x30
Mar 15 17:24:54 akideck kernel:  async_run_entry_fn+0x34/0x140
Mar 15 17:24:54 akideck kernel:  process_one_work+0x17e/0x330
Mar 15 17:24:54 akideck kernel:  worker_thread+0x2ce/0x3f0
Mar 15 17:24:54 akideck kernel:  ? __pfx_worker_thread+0x10/0x10
Mar 15 17:24:54 akideck kernel:  kthread+0xd2/0x100
Mar 15 17:24:54 akideck kernel:  ? __pfx_kthread+0x10/0x10
Mar 15 17:24:54 akideck kernel:  ret_from_fork+0x34/0x50
Mar 15 17:24:54 akideck kernel:  ? __pfx_kthread+0x10/0x10
Mar 15 17:24:54 akideck kernel:  ret_from_fork_asm+0x1a/0x30
Mar 15 17:24:54 akideck kernel:  </TASK>
Mar 15 17:24:54 akideck kernel: ---[ end trace 0000000000000000 ]---
Mar 15 17:24:54 akideck kernel: ------------[ cut here ]------------
Mar 15 17:24:54 akideck kernel: WARNING: CPU: 1 PID: 3424 at net/mac80211/driver-ops.c:41 drv_stop+0xfd/0x110 [mac80211]
Mar 15 17:24:54 akideck kernel: Modules linked in: tls uinput snd_seq_dummy snd_hrtimer rfcomm snd_seq snd_seq_device michael_mic ccm algif_aead crypto_null des3_ede_x86_64 cbc des_generic libdes md4 nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct qrtr_mhi nft_chain_nat ip6table_nat ip6table_mangle ip6table_raw ip6table_security iptable_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 iptable_mangle iptable_raw iptable_security nf_tables ip6table_filter ip6_tables iptable_filter cmac algif_hash algif_skcipher af_alg bnep ramoops reed_solomon snd_acp_sof_mach snd_acp_mach snd_sof_probes qrtr snd_soc_dmic joydev snd_sof_amd_acp63 ath11k_pci intel_rapl_msr mousedev snd_sof_amd_vangogh intel_rapl_common ath11k snd_sof_amd_acp qmi_helpers snd_sof_pci amdgpu hci_uart snd_sof_xtensa_dsp mac80211 btqca snd_sof pwrseq_core kvm_amd snd_sof_utils btrtl snd_pci_ps libarc4 btintel hid_steam hid_multitouch btbcm snd_amd_sdw_acpi kvm spd5118 soundwire_amd snd_hda_codec_hdmi
Mar 15 17:24:54 akideck kernel:  crct10dif_pclmul cfg80211 soundwire_generic_allocation amdxcp snd_soc_nau8821 crc32_pclmul bluetooth polyval_clmulni soundwire_bus snd_soc_max98388 i2c_algo_bit polyval_generic snd_hda_intel drm_exec ghash_clmulni_intel snd_intel_dspcfg gpu_sched sha512_ssse3 drm_suballoc_helper sha1_ssse3 snd_soc_core snd_intel_sdw_acpi drm_buddy aesni_intel snd_hda_codec drm_ttm_helper gf128mul snd_compress crypto_simd ttm snd_hda_core ac97_bus cryptd snd_hwdep snd_pci_acp6x snd_pcm_dmaengine sp5100_tco drm_display_helper snd_pci_acp5x rapl wdat_wdt pcspkr atkbd snd_pcm snd_acp_config cec i2c_piix4 rfkill hid_generic libps2 cdc_acm vivaldi_fmap tpm_crb snd_timer snd video ccp mhi snd_soc_acpi i2c_smbus wmi ltrf216a tpm_tis i2c_hid_acpi soundcore industrialio tpm_tis_core i2c_hid 8250_dw mac_hid mmc_block pkcs8_key_parser hid_playstation led_class_multicolor hid_nintendo ff_memless i2c_dev crypto_user loop dm_mod nfnetlink zram tpm libaescfb ip_tables x_tables overlay ext4 crc16 mbcache jbd2 usbhid vfat fat btrfs
Mar 15 17:24:54 akideck kernel:  blake2b_generic libcrc32c crc32c_generic xor raid6_pq sdhci_pci serio_raw extcon_steamdeck leds_steamdeck steamdeck_hwmon cqhci nvme crc32c_intel sdhci sha256_ssse3 nvme_core xhci_pci i8042 mmc_core xhci_pci_renesas nvme_auth serio steamdeck spi_amd
Mar 15 17:24:54 akideck kernel: CPU: 1 UID: 0 PID: 3424 Comm: kworker/u32:24 Tainted: G        W          6.11.11-valve8-1-neptune-611-g9b073eb8166e #1 67a36105599ee638952bfd845440aeb4111d3702
Mar 15 17:24:54 akideck kernel: Tainted: [W]=WARN
Mar 15 17:24:54 akideck kernel: Hardware name: Valve Galileo/Galileo, BIOS F7G0112 08/01/2024
Mar 15 17:24:54 akideck kernel: Workqueue: async async_run_entry_fn
Mar 15 17:24:54 akideck kernel: RIP: 0010:drv_stop+0xfd/0x110 [mac80211]
Mar 15 17:24:54 akideck kernel: Code: 48 85 c0 74 0e 48 8b 78 08 89 ea 48 89 de e8 7a 40 05 00 65 ff 0d 7b d8 aa 3e 0f 85 38 ff ff ff e8 08 28 28 c7 e9 2e ff ff ff <0f> 0b 5b 5d e9 3a 6c 0b c8 66 2e 0f 1f 84 00 00 00 00 00 90 90 90
Mar 15 17:24:54 akideck kernel: RSP: 0018:ffffaa7f8c20fca8 EFLAGS: 00010246
Mar 15 17:24:54 akideck kernel: RAX: 0000000000000000 RBX: ffff9dc896be0900 RCX: 0000000000000000
Mar 15 17:24:54 akideck kernel: RDX: 0000000000000001 RSI: 0000000000000000 RDI: ffff9dc896be0900
Mar 15 17:24:54 akideck kernel: RBP: 0000000000000000 R08: ffffffff8a8c95d8 R09: 0000000000000000
Mar 15 17:24:54 akideck kernel: R10: ffff9dc87955d7d8 R11: 0000000000000246 R12: ffff9dc896be0900
Mar 15 17:24:54 akideck kernel: R13: ffffaa7f8c20fcf0 R14: ffffaa7f8c20fcf0 R15: 0000000000000000
Mar 15 17:24:54 akideck kernel: FS:  0000000000000000(0000) GS:ffff9dcb6ec40000(0000) knlGS:0000000000000000
Mar 15 17:24:54 akideck kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Mar 15 17:24:54 akideck kernel: CR2: 0000000000000000 CR3: 000000000cc1e000 CR4: 0000000000350ef0
Mar 15 17:24:54 akideck kernel: Call Trace:
Mar 15 17:24:54 akideck kernel:  <TASK>
Mar 15 17:24:54 akideck kernel:  ? drv_stop+0xfd/0x110 [mac80211 19c51c2daaf20e0d2032d1f66f37b81060840737]
Mar 15 17:24:54 akideck kernel:  ? __warn.cold+0x8e/0xe8
Mar 15 17:24:54 akideck kernel:  ? drv_stop+0xfd/0x110 [mac80211 19c51c2daaf20e0d2032d1f66f37b81060840737]
Mar 15 17:24:54 akideck kernel:  ? report_bug+0xff/0x140
Mar 15 17:24:54 akideck kernel:  ? handle_bug+0x53/0x90
Mar 15 17:24:54 akideck kernel:  ? exc_invalid_op+0x17/0x70
Mar 15 17:24:54 akideck kernel:  ? asm_exc_invalid_op+0x1a/0x20
Mar 15 17:24:54 akideck kernel:  ? drv_stop+0xfd/0x110 [mac80211 19c51c2daaf20e0d2032d1f66f37b81060840737]
Mar 15 17:24:54 akideck kernel:  ? ieee80211_stop_device+0x71/0x80 [mac80211 19c51c2daaf20e0d2032d1f66f37b81060840737]
Mar 15 17:24:54 akideck kernel:  ieee80211_do_stop+0x6a8/0x940 [mac80211 19c51c2daaf20e0d2032d1f66f37b81060840737]
Mar 15 17:24:54 akideck kernel:  ? srso_return_thunk+0x5/0x5f
Mar 15 17:24:54 akideck kernel:  ? try_to_wake_up+0x22f/0x660
Mar 15 17:24:54 akideck kernel:  cfg80211_stop_p2p_device+0x56/0x150 [cfg80211 d8d5fe6048cfd901ef49d456cb90336036e75234]
Mar 15 17:24:54 akideck kernel:  cfg80211_shutdown_all_interfaces+0xae/0xf0 [cfg80211 d8d5fe6048cfd901ef49d456cb90336036e75234]
Mar 15 17:24:54 akideck kernel:  wiphy_resume+0xc1/0x1b0 [cfg80211 d8d5fe6048cfd901ef49d456cb90336036e75234]
Mar 15 17:24:54 akideck kernel:  ? __pfx_wiphy_resume+0x10/0x10 [cfg80211 d8d5fe6048cfd901ef49d456cb90336036e75234]
Mar 15 17:24:54 akideck kernel:  dpm_run_callback+0x4a/0x150
Mar 15 17:24:54 akideck kernel:  device_resume+0xb0/0x280
Mar 15 17:24:54 akideck kernel:  async_resume+0x1d/0x30
Mar 15 17:24:54 akideck kernel:  async_run_entry_fn+0x34/0x140
Mar 15 17:24:54 akideck kernel:  process_one_work+0x17e/0x330
Mar 15 17:24:54 akideck kernel:  worker_thread+0x2ce/0x3f0
Mar 15 17:24:54 akideck kernel:  ? __pfx_worker_thread+0x10/0x10
Mar 15 17:24:54 akideck kernel:  kthread+0xd2/0x100
Mar 15 17:24:54 akideck kernel:  ? __pfx_kthread+0x10/0x10
Mar 15 17:24:54 akideck kernel:  ret_from_fork+0x34/0x50
Mar 15 17:24:54 akideck kernel:  ? __pfx_kthread+0x10/0x10
Mar 15 17:24:54 akideck kernel:  ret_from_fork_asm+0x1a/0x30
Mar 15 17:24:54 akideck kernel:  </TASK>
Mar 15 17:24:54 akideck kernel: ---[ end trace 0000000000000000 ]---
Mar 15 17:24:54 akideck kernel: ieee80211 phy0: PM: dpm_run_callback(): wiphy_resume [cfg80211] returns -11
Mar 15 17:24:54 akideck kernel: ieee80211 phy0: PM: failed to resume async: error -11
Mar 15 17:24:54 akideck kernel: OOM killer enabled.
Mar 15 17:24:54 akideck kernel: Restarting tasks ... done.
Mar 15 17:24:54 akideck kernel: random: crng reseeded on system resumption
Mar 15 17:24:54 akideck kernel: PM: suspend exit
Mar 15 17:24:54 akideck rtkit-daemon[1455]: The canary thread is apparently starving. Taking action.
Mar 15 17:24:54 akideck systemd-resolved[556]: Clock change detected. Flushing caches.
Mar 15 17:24:54 akideck wakehook[1483]: [wakehook] 1742084694.841018: Going to sleep? 0
Mar 15 17:24:54 akideck wakehook[1483]: [wakehook] 1742084694.841186: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (1/5)
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Demoting known real-time threads.
Mar 15 17:24:54 akideck systemd-resolved[556]: Switching to fallback DNS server 1.1.1.1#cloudflare-dns.com.
Mar 15 17:24:54 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: Got change event for KMS device
Mar 15 17:24:54 akideck gamescope-session[1353]: [gamescope] [Info]  drm: Connector eDP-1 -> VLV - ANX7530 U
Mar 15 17:24:54 akideck gamescope-session[1353]: [gamescope] [Info]  drm: Got known display: steamdeck_oled_boe (Steam Deck OLED (BOE))
Mar 15 17:24:54 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: EDID with colorimetry detected. Using it
Mar 15 17:24:54 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: r 0.684570 0.314453
Mar 15 17:24:54 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: g 0.245117 0.714844
Mar 15 17:24:54 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: b 0.137695 0.049805
Mar 15 17:24:54 akideck gamescope-session[1353]: [gamescope] [Info]  drm: [colorimetry]: w 0.312500 0.329102
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Successfully demoted thread 1910 of process 1908.
Mar 15 17:24:54 akideck systemd-sleep[3401]: System returned from sleep operation 'suspend'.
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Successfully demoted thread 1908 of process 1908.
Mar 15 17:24:54 akideck systemd[1]: user.slice: Unit now thawed.
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Successfully demoted thread 1836 of process 1677.
Mar 15 17:24:54 akideck systemd[1]: user-1000.slice: Unit now thawed.
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Successfully demoted thread 1837 of process 1677.
Mar 15 17:24:54 akideck systemd[1]: session-1.scope: Unit now thawed.
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Successfully demoted thread 1472 of process 1450.
Mar 15 17:24:54 akideck systemd[1]: user@1000.service: Unit now thawed.
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Successfully demoted thread 1450 of process 1450.
Mar 15 17:24:54 akideck systemd-sleep[3401]: Successfully thawed unit 'user.slice'.
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Successfully demoted thread 1454 of process 1449.
Mar 15 17:24:54 akideck systemd[1]: systemd-suspend.service: Deactivated successfully.
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Successfully demoted thread 1449 of process 1449.
Mar 15 17:24:54 akideck systemd[1]: Finished System Suspend.
Mar 15 17:24:54 akideck rtkit-daemon[1455]: Demoted 8 threads.
Mar 15 17:24:54 akideck systemd[1]: Stopped target Sleep.
Mar 15 17:24:54 akideck bluetoothd[803]: Controller resume with wake event 0x0
Mar 15 17:24:54 akideck systemd[1]: Reached target Suspend.
Mar 15 17:24:54 akideck systemd[1]: Stopped target Suspend.
Mar 15 17:24:54 akideck systemd-logind[871]: Operation 'suspend' finished.
Mar 15 17:24:54 akideck NetworkManager[1062]: <info>  [1742084694.8400] manager: sleep: wake requested (sleeping: yes  enabled: yes)
Mar 15 17:24:54 akideck NetworkManager[1062]: <info>  [1742084694.8402] device (/net/connman/iwd/0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 15 17:24:54 akideck systemd-resolved[556]: Closing all remaining TCP connections.
Mar 15 17:24:54 akideck systemd-resolved[556]: Resetting learnt feature levels on all servers.
Mar 15 17:24:54 akideck NetworkManager[1062]: <info>  [1742084694.8415] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 15 17:24:54 akideck upowerd[1979]: energy 49.768200 bigger than full 49.365720
Mar 15 17:24:54 akideck gamescope-session[3438]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:24:54 akideck gamescope-session[3438]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:24:54 akideck gamescope-session[3438]: >                   X11 cannot support keycodes above 255.
Mar 15 17:24:54 akideck gamescope-session[3440]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:24:54 akideck gamescope-session[3440]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:24:54 akideck gamescope-session[3440]: >                   X11 cannot support keycodes above 255.
Mar 15 17:24:54 akideck gamescope-session[3438]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:24:54 akideck gamescope-session[3438]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:24:54 akideck gamescope-session[3438]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:24:54 akideck gamescope-session[3440]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:24:54 akideck gamescope-session[3440]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:24:54 akideck gamescope-session[3440]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:24:54 akideck gamescope-session[3449]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:24:54 akideck gamescope-session[3449]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:24:54 akideck gamescope-session[3449]: >                   X11 cannot support keycodes above 255.
Mar 15 17:24:54 akideck gamescope-session[3448]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:24:54 akideck gamescope-session[3448]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:24:54 akideck gamescope-session[3448]: >                   X11 cannot support keycodes above 255.
Mar 15 17:24:54 akideck gamescope-session[3449]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:24:54 akideck gamescope-session[3449]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:24:54 akideck gamescope-session[3449]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:24:54 akideck gamescope-session[3448]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:24:54 akideck gamescope-session[3448]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:24:54 akideck gamescope-session[3448]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:24:54 akideck gamescope-session[3451]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:24:54 akideck gamescope-session[3451]: >
Mar 15 17:24:54 akideck gamescope-session[3450]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:24:54 akideck gamescope-session[3451]: Warning:
Mar 15 17:24:54 akideck gamescope-session[3450]: >
Mar 15 17:24:54 akideck gamescope-session[3451]: Unsupported maximum keycode 708, clipping.
Mar 15 17:24:54 akideck gamescope-session[3450]: Warning:
Mar 15 17:24:54 akideck gamescope-session[3451]: >                   X11 cannot support keycodes above 255.
Mar 15 17:24:54 akideck gamescope-session[3450]: Unsupported maximum keycode 708, clipping.
Mar 15 17:24:54 akideck gamescope-session[3450]: >                   X11 cannot support keycodes above 255.
Mar 15 17:24:54 akideck gamescope-session[3451]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:24:54 akideck gamescope-session[3451]: > Warning:
Mar 15 17:24:54 akideck gamescope-session[3450]: >
Mar 15 17:24:54 akideck gamescope-session[3451]: Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:24:54 akideck gamescope-session[3450]: Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:24:54 akideck gamescope-session[3450]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:24:54 akideck gamescope-session[3451]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:24:54 akideck gamescope-session[3450]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:24:55 akideck wakehook[1483]: [wakehook] 1742084695.841410: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (2/5)
Mar 15 17:24:56 akideck systemd[1]: Starting Time & Date Service...
Mar 15 17:24:56 akideck systemd[1]: Started Time & Date Service.
Mar 15 17:24:56 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 3467, but reception is disabled
Mar 15 17:24:56 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 3473, but reception is disabled
Mar 15 17:24:56 akideck wakehook[1483]: [wakehook] 1742084696.841666: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (3/5)
Mar 15 17:24:57 akideck wakehook[1483]: [wakehook] 1742084697.841959: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (4/5)
Mar 15 17:24:58 akideck NetworkManager[1062]: <warn>  [1742084698.0069] platform-linux: do-change-link[3]: failure 11 (Resource temporarily unavailable)
Mar 15 17:24:58 akideck NetworkManager[1062]: <info>  [1742084698.0076] manager: NetworkManager state is now DISCONNECTED
Mar 15 17:24:58 akideck NetworkManager[1062]: <info>  [1742084698.0079] device (/net/connman/iwd/0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
Mar 15 17:24:58 akideck kernel: ath11k_pci 0000:03:00.0: wmi command 16387 timeout
Mar 15 17:24:58 akideck kernel: ath11k_pci 0000:03:00.0: failed to send WMI_PDEV_SET_PARAM cmd
Mar 15 17:24:58 akideck kernel: ath11k_pci 0000:03:00.0: failed to enable PMF QOS: (-11
Mar 15 17:24:58 akideck systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Mar 15 17:24:58 akideck wakehook[1483]: [wakehook] 1742084698.842222: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (5/5)
Mar 15 17:24:59 akideck wakehook[1483]: [wakehook] 1742084699.842333: Failed to call org.kde.plasma.remotecontrollers.CEC.powerOnDevices: -113 No route to host
Mar 15 17:25:03 akideck gamescope-session[3488]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:25:03 akideck gamescope-session[3488]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:25:03 akideck gamescope-session[3488]: >                   X11 cannot support keycodes above 255.
Mar 15 17:25:03 akideck gamescope-session[3489]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:25:03 akideck gamescope-session[3489]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:25:03 akideck gamescope-session[3489]: >                   X11 cannot support keycodes above 255.
Mar 15 17:25:03 akideck gamescope-session[3488]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:25:03 akideck gamescope-session[3488]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:25:03 akideck gamescope-session[3489]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:25:03 akideck gamescope-session[3489]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:25:03 akideck gamescope-session[3488]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:25:03 akideck gamescope-session[3489]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:25:26 akideck systemd[1]: systemd-timedated.service: Deactivated successfully.
Mar 15 17:25:26 akideck kernel: usb 1-1: new high-speed USB device number 2 using xhci_hcd
Mar 15 17:25:27 akideck kernel: usb 1-1: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= a.04
Mar 15 17:25:27 akideck kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:27 akideck kernel: usb 1-1: Product: USB2.0 Hub             
Mar 15 17:25:27 akideck kernel: usb 1-1: Manufacturer: VIA Labs, Inc.         
Mar 15 17:25:27 akideck kernel: hub 1-1:1.0: USB hub found
Mar 15 17:25:27 akideck kernel: hub 1-1:1.0: 5 ports detected
Mar 15 17:25:27 akideck kernel: usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
Mar 15 17:25:27 akideck kernel: usb 2-1: New USB device found, idVendor=2109, idProduct=0817, bcdDevice= a.04
Mar 15 17:25:27 akideck kernel: usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:27 akideck kernel: usb 2-1: Product: USB3.0 Hub             
Mar 15 17:25:27 akideck kernel: usb 2-1: Manufacturer: VIA Labs, Inc.         
Mar 15 17:25:27 akideck kernel: hub 2-1:1.0: USB hub found
Mar 15 17:25:27 akideck kernel: hub 2-1:1.0: 4 ports detected
Mar 15 17:25:27 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:25:27 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb2/2-1
Mar 15 17:25:27 akideck kernel: usb 1-1.4: new full-speed USB device number 3 using xhci_hcd
Mar 15 17:25:28 akideck kernel: usb 1-1.4: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10
Mar 15 17:25:28 akideck kernel: usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 15 17:25:28 akideck kernel: usb 1-1.4: Product: USB Receiver
Mar 15 17:25:28 akideck kernel: usb 1-1.4: Manufacturer: Logitech
Mar 15 17:25:28 akideck kernel: usb 2-1.3: new SuperSpeed USB device number 3 using xhci_hcd
Mar 15 17:25:28 akideck kernel: usb 2-1.3: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=15.39
Mar 15 17:25:28 akideck kernel: usb 2-1.3: New USB device strings: Mfr=3, Product=4, SerialNumber=2
Mar 15 17:25:28 akideck kernel: usb 2-1.3: Product: USB3.0 Card Reader
Mar 15 17:25:28 akideck kernel: usb 2-1.3: Manufacturer: Generic
Mar 15 17:25:28 akideck kernel: usb 2-1.3: SerialNumber: 000000001539
Mar 15 17:25:28 akideck kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.0/0003:046D:C52B.0006/input/input26
Mar 15 17:25:28 akideck kernel: hid-generic 0003:046D:C52B.0006: input,hidraw4: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:04:00.3-1.4/input0
Mar 15 17:25:28 akideck kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.1/0003:046D:C52B.0007/input/input27
Mar 15 17:25:28 akideck kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.1/0003:046D:C52B.0007/input/input28
Mar 15 17:25:28 akideck kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.1/0003:046D:C52B.0007/input/input29
Mar 15 17:25:28 akideck kernel: hid-generic 0003:046D:C52B.0007: input,hiddev97,hidraw5: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:04:00.3-1.4/input1
Mar 15 17:25:28 akideck kernel: hid-generic 0003:046D:C52B.0008: hiddev98,hidraw6: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:04:00.3-1.4/input2
Mar 15 17:25:28 akideck mtp-probe[3540]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb2/2-1/2-1.3"
Mar 15 17:25:28 akideck mtp-probe[3540]: bus: 2, device: 3 was not an MTP device
Mar 15 17:25:28 akideck mtp-probe[3545]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:25:28 akideck mtp-probe[3545]: bus: 1, device: 3 was not an MTP device
Mar 15 17:25:28 akideck kernel: usb-storage 2-1.3:1.0: USB Mass Storage device detected
Mar 15 17:25:28 akideck kernel: scsi host0: usb-storage 2-1.3:1.0
Mar 15 17:25:28 akideck kernel: usbcore: registered new interface driver usb-storage
Mar 15 17:25:28 akideck kernel: usbcore: registered new interface driver uas
Mar 15 17:25:28 akideck mtp-probe[3564]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb2/2-1/2-1.3"
Mar 15 17:25:28 akideck mtp-probe[3564]: bus: 2, device: 3 was not an MTP device
Mar 15 17:25:28 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4
Mar 15 17:25:28 akideck steamos-manager[861]: 2025-03-16T00:25:28.582285Z  WARN steamos_manager::ds_inhibit: Failed to find associated driver for hidraw4: No such file or directory (os error 2)
Mar 15 17:25:28 akideck steamos-manager[861]: 2025-03-16T00:25:28.834170Z  WARN steamos_manager::ds_inhibit: Failed to find associated driver for hidraw5: No such file or directory (os error 2)
Mar 15 17:25:28 akideck kernel: logitech-djreceiver 0003:046D:C52B.0008: hiddev97,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:04:00.3-1.4/input2
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:116] Could not stat path '/dev/input/event18'
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [backend/session/session.c:318] Failed to open device: '/dev/input/event18': No such file or directory
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:116] Could not stat path '/dev/input/event17'
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [backend/session/session.c:318] Failed to open device: '/dev/input/event17': No such file or directory
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:116] Could not stat path '/dev/input/event9'
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [backend/session/session.c:318] Failed to open device: '/dev/input/event9': No such file or directory
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:116] Could not stat path '/dev/input/event19'
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [backend/session/session.c:318] Failed to open device: '/dev/input/event19': No such file or directory
Mar 15 17:25:29 akideck kernel: input: Logitech Wireless Device PID:4024 Keyboard as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0008/0003:046D:4024.0009/input/input31
Mar 15 17:25:29 akideck mtp-probe[3602]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:25:29 akideck mtp-probe[3602]: bus: 1, device: 3 was not an MTP device
Mar 15 17:25:29 akideck steamos-manager[861]: 2025-03-16T00:25:29.085866Z ERROR steamos_manager::ds_inhibit: Encountered error attempting to watch: No such file or directory (os error 2)
Mar 15 17:25:29 akideck steamos-manager[861]: 2025-03-16T00:25:29.085903Z  WARN steamos_manager::ds_inhibit: Got error processing event: No such file or directory (os error 2)
Mar 15 17:25:29 akideck kernel: input: Logitech Wireless Device PID:4024 Mouse as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0008/0003:046D:4024.0009/input/input32
Mar 15 17:25:29 akideck kernel: hid-generic 0003:046D:4024.0009: input,hidraw5: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4024] on usb-0000:04:00.3-1.4/input2:1
Mar 15 17:25:29 akideck kernel: input: Logitech K400 as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0008/0003:046D:4024.0009/input/input36
Mar 15 17:25:29 akideck kernel: scsi 0:0:0:0: Direct-Access     Generic  MassStorageClass 1539 PQ: 0 ANSI: 6
Mar 15 17:25:29 akideck kernel: scsi 0:0:0:1: Direct-Access     Generic  MassStorageClass 1539 PQ: 0 ANSI: 6
Mar 15 17:25:29 akideck kernel: sd 0:0:0:0: [sda] Media removed, stopped polling
Mar 15 17:25:29 akideck kernel: sd 0:0:0:0: [sda] Attached SCSI removable disk
Mar 15 17:25:29 akideck kernel: logitech-hidpp-device 0003:046D:4024.0009: input,hidraw5: USB HID v1.11 Keyboard [Logitech K400] on usb-0000:04:00.3-1.4/input2:1
Mar 15 17:25:29 akideck kernel: sd 0:0:0:1: [sdb] Media removed, stopped polling
Mar 15 17:25:29 akideck kernel: sd 0:0:0:1: [sdb] Attached SCSI removable disk
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:116] Could not stat path '/dev/input/event17'
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [backend/session/session.c:318] Failed to open device: '/dev/input/event17': No such file or directory
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:124] Could not take device: No such device
Mar 15 17:25:29 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [backend/session/session.c:318] Failed to open device: '/dev/input/event9': Resource temporarily unavailable
Mar 15 17:25:29 akideck systemd-logind[871]: Watching system buttons on /dev/input/event9 (Logitech K400)
Mar 15 17:25:32 akideck kernel: usb 1-1.5: new high-speed USB device number 4 using xhci_hcd
Mar 15 17:25:32 akideck kernel: usb 1-1.5: New USB device found, idVendor=291a, idProduct=8346, bcdDevice= 0.01
Mar 15 17:25:32 akideck kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:32 akideck kernel: usb 1-1.5: Product: Anker USB-C Hub Device 
Mar 15 17:25:32 akideck kernel: usb 1-1.5: Manufacturer: Anker Innovations Limit
Mar 15 17:25:32 akideck kernel: usb 1-1.5: SerialNumber: 0000000000000001
Mar 15 17:25:34 akideck kernel: usb 1-1: USB disconnect, device number 2
Mar 15 17:25:35 akideck kernel: usb 1-1.4: USB disconnect, device number 3
Mar 15 17:25:35 akideck kernel: usb 1-1.5: USB disconnect, device number 4
Mar 15 17:25:35 akideck kernel: usb 1-1: new high-speed USB device number 5 using xhci_hcd
Mar 15 17:25:35 akideck kernel: usb 1-1: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= a.04
Mar 15 17:25:35 akideck kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:35 akideck kernel: usb 1-1: Product: USB2.0 Hub             
Mar 15 17:25:35 akideck kernel: usb 1-1: Manufacturer: VIA Labs, Inc.         
Mar 15 17:25:35 akideck kernel: hub 1-1:1.0: USB hub found
Mar 15 17:25:35 akideck kernel: hub 1-1:1.0: 5 ports detected
Mar 15 17:25:35 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:25:36 akideck kernel: usb 1-1.4: new full-speed USB device number 6 using xhci_hcd
Mar 15 17:25:36 akideck kernel: usb 1-1.4: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10
Mar 15 17:25:36 akideck kernel: usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 15 17:25:36 akideck kernel: usb 1-1.4: Product: USB Receiver
Mar 15 17:25:36 akideck kernel: usb 1-1.4: Manufacturer: Logitech
Mar 15 17:25:36 akideck kernel: logitech-djreceiver 0003:046D:C52B.000C: hiddev97,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:04:00.3-1.4/input2
Mar 15 17:25:36 akideck kernel: input: Logitech K400 as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.000C/0003:046D:4024.000D/input/input37
Mar 15 17:25:36 akideck kernel: usb 1-1.5: new high-speed USB device number 7 using xhci_hcd
Mar 15 17:25:36 akideck kernel: logitech-hidpp-device 0003:046D:4024.000D: input,hidraw5: USB HID v1.11 Keyboard [Logitech K400] on usb-0000:04:00.3-1.4/input2:1
Mar 15 17:25:36 akideck kernel: usb 1-1.5: New USB device found, idVendor=291a, idProduct=8346, bcdDevice= 0.01
Mar 15 17:25:36 akideck kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:36 akideck kernel: usb 1-1.5: Product: Anker USB-C Hub Device 
Mar 15 17:25:36 akideck kernel: usb 1-1.5: Manufacturer: Anker Innovations Limit
Mar 15 17:25:36 akideck kernel: usb 1-1.5: SerialNumber: 0000000000000001
Mar 15 17:25:36 akideck mtp-probe[3696]: checking bus 1, device 6: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:25:36 akideck mtp-probe[3696]: bus: 1, device: 6 was not an MTP device
Mar 15 17:25:36 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4
Mar 15 17:25:36 akideck mtp-probe[3735]: checking bus 1, device 6: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:25:36 akideck mtp-probe[3735]: bus: 1, device: 6 was not an MTP device
Mar 15 17:25:37 akideck systemd-logind[871]: Watching system buttons on /dev/input/event9 (Logitech K400)
Mar 15 17:25:37 akideck kernel: logitech-hidpp-device 0003:046D:4024.000D: HID++ 2.0 device connected.
Mar 15 17:25:37 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.000C/0003:046D:4024.000D/power_supply/hidpp_battery_0
Mar 15 17:25:38 akideck gamescope-session[3743]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:25:38 akideck gamescope-session[3743]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:25:38 akideck gamescope-session[3743]: >                   X11 cannot support keycodes above 255.
Mar 15 17:25:38 akideck gamescope-session[3742]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:25:38 akideck gamescope-session[3742]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:25:38 akideck gamescope-session[3742]: >                   X11 cannot support keycodes above 255.
Mar 15 17:25:38 akideck gamescope-session[3743]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:25:38 akideck gamescope-session[3743]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:25:38 akideck gamescope-session[3742]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:25:38 akideck gamescope-session[3742]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:25:38 akideck gamescope-session[3743]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:25:38 akideck gamescope-session[3742]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:25:40 akideck kernel: usb 1-1: USB disconnect, device number 5
Mar 15 17:25:40 akideck kernel: usb 1-1.4: USB disconnect, device number 6
Mar 15 17:25:40 akideck kernel: usb 1-1.5: USB disconnect, device number 7
Mar 15 17:25:40 akideck kernel: usb 1-1: new high-speed USB device number 8 using xhci_hcd
Mar 15 17:25:40 akideck kernel: usb 1-1: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= a.04
Mar 15 17:25:41 akideck kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:41 akideck kernel: usb 1-1: Product: USB2.0 Hub             
Mar 15 17:25:41 akideck kernel: usb 1-1: Manufacturer: VIA Labs, Inc.         
Mar 15 17:25:41 akideck kernel: hub 1-1:1.0: USB hub found
Mar 15 17:25:41 akideck kernel: hub 1-1:1.0: 5 ports detected
Mar 15 17:25:41 akideck kernel: hub 1-1:1.0: Using single TT (err -71)
Mar 15 17:25:41 akideck kernel: hub 1-1:1.0: config failed, can't get hub status (err -5)
Mar 15 17:25:41 akideck kernel: xhci_hcd 0000:04:00.3: USB core suspending port 1-1 not in U0/U1/U2
Mar 15 17:25:41 akideck kernel: usb 1-1: Failed to suspend device, error -32
Mar 15 17:25:41 akideck kernel: usb 1-1: USB disconnect, device number 8
Mar 15 17:25:41 akideck kernel: usb 1-1: new high-speed USB device number 9 using xhci_hcd
Mar 15 17:25:41 akideck kernel: usb 1-1: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= a.04
Mar 15 17:25:41 akideck kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:41 akideck kernel: usb 1-1: Product: USB2.0 Hub             
Mar 15 17:25:41 akideck kernel: usb 1-1: Manufacturer: VIA Labs, Inc.         
Mar 15 17:25:41 akideck kernel: hub 1-1:1.0: USB hub found
Mar 15 17:25:41 akideck kernel: hub 1-1:1.0: 5 ports detected
Mar 15 17:25:41 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:25:41 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:25:42 akideck kernel: usb 1-1.4: new full-speed USB device number 10 using xhci_hcd
Mar 15 17:25:42 akideck kernel: usb 1-1.4: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10
Mar 15 17:25:42 akideck kernel: usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 15 17:25:42 akideck kernel: usb 1-1.4: Product: USB Receiver
Mar 15 17:25:42 akideck kernel: usb 1-1.4: Manufacturer: Logitech
Mar 15 17:25:42 akideck kernel: logitech-djreceiver 0003:046D:C52B.0010: hiddev97,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:04:00.3-1.4/input2
Mar 15 17:25:42 akideck kernel: input: Logitech K400 as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0010/0003:046D:4024.0011/input/input38
Mar 15 17:25:42 akideck kernel: usb 1-1.5: new high-speed USB device number 11 using xhci_hcd
Mar 15 17:25:42 akideck kernel: logitech-hidpp-device 0003:046D:4024.0011: input,hidraw5: USB HID v1.11 Keyboard [Logitech K400] on usb-0000:04:00.3-1.4/input2:1
Mar 15 17:25:50 akideck kernel: logitech-hidpp-device 0003:046D:4024.0011: HID++ 2.0 device connected.
Mar 15 17:25:50 akideck kernel: usb 1-1.5: New USB device found, idVendor=291a, idProduct=8346, bcdDevice= 0.01
Mar 15 17:25:50 akideck kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:50 akideck kernel: usb 1-1.5: Product: Anker USB-C Hub Device 
Mar 15 17:25:50 akideck kernel: usb 1-1.5: Manufacturer: Anker Innovations Limit
Mar 15 17:25:50 akideck kernel: usb 1-1.5: SerialNumber: 0000000000000001
Mar 15 17:25:50 akideck kernel: usb 1-1: USB disconnect, device number 9
Mar 15 17:25:50 akideck kernel: usb 1-1.4: USB disconnect, device number 10
Mar 15 17:25:50 akideck kernel: usb 1-1.5: USB disconnect, device number 11
Mar 15 17:25:42 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4
Mar 15 17:25:42 akideck mtp-probe[3838]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:25:42 akideck mtp-probe[3838]: bus: 1, device: 10 was not an MTP device
Mar 15 17:25:42 akideck mtp-probe[3877]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:25:42 akideck mtp-probe[3877]: bus: 1, device: 10 was not an MTP device
Mar 15 17:25:50 akideck kernel: usb 1-1: new high-speed USB device number 12 using xhci_hcd
Mar 15 17:25:50 akideck kernel: usb 1-1: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= a.04
Mar 15 17:25:51 akideck kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:51 akideck kernel: usb 1-1: Product: USB2.0 Hub             
Mar 15 17:25:51 akideck kernel: usb 1-1: Manufacturer: VIA Labs, Inc.         
Mar 15 17:25:51 akideck kernel: hub 1-1:1.0: USB hub found
Mar 15 17:25:51 akideck kernel: hub 1-1:1.0: 5 ports detected
Mar 15 17:25:51 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:116] Could not stat path '/dev/input/event9'
Mar 15 17:25:51 akideck gamescope-session[1353]: [gamescope] [Error] wlserver: [backend/session/session.c:318] Failed to open device: '/dev/input/event9': No such file or directory
Mar 15 17:25:51 akideck systemd-logind[871]: Failed to open /dev/input/event9: No such file or directory
Mar 15 17:25:51 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:25:51 akideck kernel: usb 1-1.4: new full-speed USB device number 13 using xhci_hcd
Mar 15 17:25:51 akideck kernel: usb 1-1.4: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10
Mar 15 17:25:52 akideck kernel: usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 15 17:25:52 akideck kernel: usb 1-1.4: Product: USB Receiver
Mar 15 17:25:52 akideck kernel: usb 1-1.4: Manufacturer: Logitech
Mar 15 17:25:52 akideck kernel: logitech-djreceiver 0003:046D:C52B.0014: hiddev97,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:04:00.3-1.4/input2
Mar 15 17:25:52 akideck kernel: input: Logitech K400 as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0014/0003:046D:4024.0015/input/input39
Mar 15 17:25:52 akideck kernel: usb 1-1.5: new high-speed USB device number 14 using xhci_hcd
Mar 15 17:25:52 akideck pkexec[3954]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:25:52 akideck pkexec[3954]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-session-select plasma --sentinel-created]
Mar 15 17:25:52 akideck steam[1658]: Updated user selected session to plasma-steamos-oneshot.desktop
Mar 15 17:25:52 akideck systemd[1202]: Stopped target Gamescope Session.
Mar 15 17:25:52 akideck systemd[1202]: Stopping Gamescope Session...
Mar 15 17:25:52 akideck systemd[1202]: Stopping Power Button daemon for SteamOS...
Mar 15 17:25:52 akideck xbindkeys[1478]: X connection to :0 broken (explicit kill or server shutdown).
Mar 15 17:25:52 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: [xwayland/server.c:217] Restarting Xwayland
Mar 15 17:25:52 akideck systemd[1202]: gamescope-xbindkeys.service: Main process exited, code=exited, status=1/FAILURE
Mar 15 17:25:52 akideck systemd[1202]: gamescope-xbindkeys.service: Failed with result 'exit-code'.
Mar 15 17:25:52 akideck systemd[1202]: Stopped Xbindkeys for Gamescope session.
Mar 15 17:25:52 akideck gamescope-session[1353]: [gamescope] [Info]  wlserver: [xwayland/server.c:217] Restarting Xwayland
Mar 15 17:25:52 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 3961, but reception is disabled
Mar 15 17:25:52 akideck gamescope-session[3968]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :1
Mar 15 17:25:52 akideck systemd[1202]: Stopping Accessibility services bus...
Mar 15 17:25:52 akideck deck[3965]: Gamescope Session Ended - Performing Final Cleanup
Mar 15 17:25:52 akideck systemd[1202]: Stopping mangoapp...
Mar 15 17:25:52 akideck systemd[1202]: Stopping Wrapper for Ibus...
Mar 15 17:25:52 akideck systemd[1202]: Stopping Steam Notification Daemon...
Mar 15 17:25:52 akideck gamescope-session[3971]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :0
Mar 15 17:25:52 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-75) graph xrun not-triggered (0 suppressed)
Mar 15 17:25:52 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-75) xrun state:0x7f63f4099008 pending:2/6 s:1932450163533 a:1932450661788 f:1932450673959 waiting:498255 process:12171 status:triggered
Mar 15 17:25:52 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:1932471845839 a:1932450311365 f:1932450329135 waiting:18446744073688017142 process:17770 status:triggered
Mar 15 17:25:52 akideck systemd[1202]: Stopping Steam Short Session Tracker...
Mar 15 17:25:52 akideck systemd[1202]: Stopping Portal service...
Mar 15 17:25:52 akideck systemd[1202]: Stopping flatpak document portal service...
Mar 15 17:25:52 akideck systemd[1202]: Stopping sandboxed app permission store...
Mar 15 17:25:52 akideck systemd[1202]: steam-notif-daemon.service: Main process exited, code=exited, status=1/FAILURE
Mar 15 17:25:52 akideck systemd[1202]: steam-notif-daemon.service: Failed with result 'exit-code'.
Mar 15 17:25:52 akideck systemd[1202]: Stopped Steam Notification Daemon.
Mar 15 17:25:52 akideck kernel: logitech-hidpp-device 0003:046D:4024.0015: input,hidraw5: USB HID v1.11 Keyboard [Logitech K400] on usb-0000:04:00.3-1.4/input2:1
Mar 15 17:25:52 akideck systemd[1]: run-user-1000-doc.mount: Deactivated successfully.
Mar 15 17:25:52 akideck systemd[1202]: Stopped mangoapp.
Mar 15 17:25:52 akideck systemd[1202]: gamescope-mangoapp.service: Consumed 35.820s CPU time, 45M memory peak.
Mar 15 17:25:52 akideck kernel: usb 1-1.5: New USB device found, idVendor=291a, idProduct=8346, bcdDevice= 0.01
Mar 15 17:25:52 akideck kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:25:52 akideck kernel: usb 1-1.5: Product: Anker USB-C Hub Device 
Mar 15 17:25:52 akideck kernel: usb 1-1.5: Manufacturer: Anker Innovations Limit
Mar 15 17:25:52 akideck kernel: usb 1-1.5: SerialNumber: 0000000000000001
Mar 15 17:25:52 akideck systemd[1202]: Stopped Power Button daemon for SteamOS.
Mar 15 17:25:52 akideck mtp-probe[3989]: checking bus 1, device 13: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:25:52 akideck mtp-probe[3989]: bus: 1, device: 13 was not an MTP device
Mar 15 17:25:52 akideck systemd[1202]: Stopped Wrapper for Ibus.
Mar 15 17:25:52 akideck systemd[1202]: Stopped Portal service.
Mar 15 17:25:52 akideck systemd[1202]: Stopped flatpak document portal service.
Mar 15 17:25:52 akideck systemd[1202]: Stopped sandboxed app permission store.
Mar 15 17:25:52 akideck systemd[1202]: Stopped Accessibility services bus.
Mar 15 17:25:52 akideck steam-short-session-tracker[3999]: rm: cannot remove '/tmp/steamos-short-session-tracker': No such file or directory
Mar 15 17:25:52 akideck systemd[1202]: Stopped Steam Short Session Tracker.
Mar 15 17:25:52 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 3970, but reception is disabled
Mar 15 17:25:52 akideck systemd[1202]: Stopping Steam Launcher...
Mar 15 17:25:52 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4
Mar 15 17:25:52 akideck kernel: input: Steam Deck as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input40
Mar 15 17:25:52 akideck kernel: input: Steam Deck Motion Sensors as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input41
Mar 15 17:25:52 akideck mtp-probe[4063]: checking bus 1, device 13: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:25:52 akideck mtp-probe[4063]: bus: 1, device: 13 was not an MTP device
Mar 15 17:25:52 akideck bash[4017]: /bin/bash: line 1: kill: (1480) - No such process
Mar 15 17:25:52 akideck systemd[1202]: steam-launcher.service: Control process exited, code=exited, status=1/FAILURE
Mar 15 17:25:52 akideck systemd[1202]: steam-launcher.service: Killing process 1658 (srt-logger) with signal SIGKILL.
Mar 15 17:25:52 akideck systemd[1202]: steam-launcher.service: Killing process 1992 (steam-runtime-l) with signal SIGKILL.
Mar 15 17:25:52 akideck systemd[1202]: steam-launcher.service: Failed with result 'exit-code'.
Mar 15 17:25:52 akideck systemd[1202]: Stopped Steam Launcher.
Mar 15 17:25:52 akideck systemd[1202]: steam-launcher.service: Consumed 2h 19min 17.968s CPU time, 12.1G memory peak.
Mar 15 17:25:52 akideck systemd[1202]: Stopped target Current graphical user session.
Mar 15 17:25:52 akideck systemd-logind[871]: Watching system buttons on /dev/input/event9 (Logitech K400)
Mar 15 17:25:52 akideck gamescope-session[3971]: (EE) failed to read Wayland events: Broken pipe
Mar 15 17:25:52 akideck gamescope-session[3968]: (EE) failed to read Wayland events: Broken pipe
Mar 15 17:25:52 akideck gamescope-session[1353]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 15 17:25:52 akideck gamescope-session[1353]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 15 17:25:52 akideck gamescope-session[1353]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 15 17:25:52 akideck gamescope-session[1353]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 15 17:25:53 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 15 17:25:54 akideck systemd[1202]: Stopped Gamescope Session.
Mar 15 17:25:54 akideck systemd[1202]: gamescope-session.service: Consumed 50.232s CPU time, 329M memory peak.
Mar 15 17:25:54 akideck systemd[1202]: Stopped target Session services which should run early before the graphical session is brought up.
Mar 15 17:25:54 akideck deck[4096]: Gamescope Session Ended - Cleanup Complete
Mar 15 17:25:54 akideck sddm-helper[1102]: [PAM] Closing session
Mar 15 17:25:54 akideck sddm-helper[1102]: pam_unix(sddm-autologin:session): session closed for user deck
Mar 15 17:25:54 akideck sddm-helper[1102]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: pam_sm_close_session
Mar 15 17:25:54 akideck sddm-helper[1102]: pam_kwallet5(sddm-autologin:setcred): pam_kwallet5: pam_sm_setcred
Mar 15 17:25:54 akideck sddm-helper[1102]: [PAM] Ended.
Mar 15 17:25:54 akideck sddm[1091]: Auth: sddm-helper exited successfully
Mar 15 17:25:54 akideck systemd[1]: session-1.scope: Deactivated successfully.
Mar 15 17:25:54 akideck sddm[1091]: Removing display SDDM::Display(0x55d7242383b0) ...
Mar 15 17:25:54 akideck systemd-logind[871]: Removed session 1.
Mar 15 17:25:54 akideck sddm[1091]: Adding new display...
Mar 15 17:25:54 akideck sddm[1091]: Loaded empty theme configuration
Mar 15 17:25:54 akideck wireplumber[1450]: wplua: [string "alsa.lua"]:448: table index is nil
                                           stack traceback:
                                                   [string "alsa.lua"]:448: in function <[string "alsa.lua"]:434>
Mar 15 17:25:54 akideck sddm[1091]: Using VT 1
Mar 15 17:25:54 akideck sddm[1091]: Display server started.
Mar 15 17:25:54 akideck sddm[1091]: Reading from "/usr/local/share/xsessions/plasma-steamos-oneshot.desktop"
Mar 15 17:25:54 akideck sddm[1091]: Reading from "/usr/share/xsessions/plasma-steamos-oneshot.desktop"
Mar 15 17:25:54 akideck sddm[1091]: Session "/usr/share/xsessions/plasma-steamos-oneshot.desktop" selected, command: "/usr/bin/startplasma-steamos-oneshot /usr/bin/startplasma-x11" for VT 1
Mar 15 17:25:54 akideck sddm-helper[4101]: [PAM] Starting...
Mar 15 17:25:54 akideck sddm-helper[4101]: [PAM] Authenticating...
Mar 15 17:25:54 akideck sddm-helper[4101]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: pam_sm_authenticate
Mar 15 17:25:54 akideck sddm-helper[4101]: [PAM] Preparing to converse...
Mar 15 17:25:54 akideck sddm-helper[4101]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Couldn't get password (it is empty)
Mar 15 17:25:54 akideck sddm-helper[4101]: [PAM] Conversation with 1 messages
Mar 15 17:25:54 akideck sddm-helper[4101]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Empty or missing password, doing nothing
Mar 15 17:25:54 akideck sddm-helper[4101]: [PAM] returning.
Mar 15 17:25:54 akideck sddm[1091]: Authentication for user  "deck"  successful
Mar 15 17:25:54 akideck sddm-helper[4101]: pam_kwallet5(sddm-autologin:setcred): pam_kwallet5: pam_sm_setcred
Mar 15 17:25:54 akideck sddm-helper[4101]: pam_unix(sddm-autologin:session): session opened for user deck(uid=1000) by deck(uid=0)
Mar 15 17:25:54 akideck systemd-logind[871]: New session 3 of user deck.
Mar 15 17:25:54 akideck systemd[1]: Started Session 3 of User deck.
Mar 15 17:25:54 akideck sddm-helper[4101]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: pam_sm_open_session
Mar 15 17:25:54 akideck sddm-helper[4101]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: open_session called without kwallet5_key
Mar 15 17:25:54 akideck sddm-helper[4101]: Starting X11 session: "/usr/bin/X -nolisten tcp -background none -seat seat0 -noreset -keeptty -novtswitch -verbose 3" "/usr/share/sddm/scripts/Xsession \"/usr/bin/startplasma-steamos-oneshot /usr/bin/startplasma-x11\""
Mar 15 17:25:54 akideck sddm-helper[4108]: Jumping to VT 1
Mar 15 17:25:54 akideck sddm-helper[4108]: VT mode didn't need to be fixed
Mar 15 17:25:54 akideck sddm[1091]: Session started true
Mar 15 17:25:54 akideck sddm-helper-start-x11user[4108]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                         Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                         If this causes problems, reconfigure your locale. See the locale(1) manual
                                                         for more information.
Mar 15 17:25:54 akideck sddm-helper-start-x11user[4108]: Xauthority path: "/run/user/1000/xauth_EXVQiN"
Mar 15 17:25:54 akideck sddm-helper-start-x11user[4108]: Running server: /usr/bin/X -nolisten tcp -background none -seat seat0 -noreset -keeptty -novtswitch -verbose 3 -auth /run/user/1000/xauth_EXVQiN -displayfd 13 vt1
Mar 15 17:25:55 akideck sddm-helper-start-x11user[4108]: X11 display: :0
Mar 15 17:25:55 akideck sddm-helper-start-x11user[4108]: starting XOrg Greeter... ":0"
Mar 15 17:25:55 akideck sddm-helper-start-x11user[4108]: Writing cookie to "/run/user/1000/xauth_EXVQiN"
Mar 15 17:25:55 akideck sddm-helper-start-x11user[4108]: Setting default cursor...
Mar 15 17:25:55 akideck sddm-helper-start-x11user[4108]: Running display setup script: /usr/lib/steamos/steamos-rotate-x11-screen
Mar 15 17:25:55 akideck sddm-helper-start-x11user[4108]: "Output eDP has panel orientation \"Right Side Up \" rotating right\n"
Mar 15 17:25:55 akideck pkexec[4146]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:25:55 akideck pkexec[4146]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck] [COMMAND=/usr/bin/steamos-session-select gamescope --sentinel-created]
Mar 15 17:25:55 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 15 17:25:55 akideck sddm-helper-start-x11user[4108]: "(--) Log file renamed from \"/home/deck/.local/share/xorg/Xorg.pid-4109.log\" to \"/home/deck/.local/share/xorg/Xorg.0.log\"\n\nX.Org X Server 1.21.1.16\nX Protocol Version 11, Revision 0\nCurrent Operating System: Linux akideck 6.11.11-valve8-1-neptune-611-g9b073eb8166e #1 SMP PREEMPT_DYNAMIC Thu, 13 Mar 2025 00:07:06 +0000 x86_64\nKernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-neptune-611 console=tty1 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0 rd.systemd.gpt_auto=no log_buf_len=4M amd_iommu=off amdgpu.lockup_timeout=5000,10000,10000,5000 amdgpu.gttsize=8128 amdgpu.sched_hw_submission=4 audit=0 fsck.mode=auto fsck.repair=preen loglevel=3 splash quiet plymouth.ignore-serial-consoles fbcon=vc:4-6 steamos.efi=PARTUUID=3aa080ee-ef49-4929-a90f-4dfb6b93d329\n \nCurrent version of pixman: 0.44.2\n\tBefore reporting problems, check http://wiki.x.org\n\tto make sure that you have the latest version.\nMarkers: (--) probed, (**) from config file, (==) default setting,\n\t(++) from command line, (!!) notice, (II) informational,\n\t(WW) warning, (EE) error, (NI) not implemented, (??) unknown.\n(==) Log file: \"/home/deck/.local/share/xorg/Xorg.0.log\", Time: Sat Mar 15 17:25:54 2025\n(==) Using system config directory \"/usr/share/X11/xorg.conf.d\"\n(==) No Layout section.  Using the first Screen section.\n(**) |-->Screen \"Default Screen\" (0)\n(**) |   |-->Monitor \"<default monitor>\"\n(==) No monitor specified for screen \"Default Screen\".\n\tUsing a default monitor configuration.\n(**) Allowing byte-swapped clients\n(==) Automatically adding devices\n(==) Automatically enabling devices\n(==) Automatically adding GPU devices\n(==) Automatically binding GPU devices\n(==) Max clients allowed: 256, resource mask: 0x1fffff\n(WW) The directory \"/usr/share/fonts/misc\" does not exist.\n\tEntry deleted from font path.\n(WW) `fonts.dir' not found (or not valid) in \"/usr/share/fonts/TTF\".\n\tEntry deleted from font path.\n\t(Run 'mkfontdir' on \"/usr/share/fonts/TTF\").\n(WW) The directory \"/usr/share/fonts/OTF\" does not exist.\n\tEntry deleted from font path.\n(WW) The directory \"/usr/share/fonts/Type1\" does not exist.\n\tEntry deleted from font path.\n(WW) The directory \"/usr/share/fonts/100dpi\" does not exist.\n\tEntry deleted from font path.\n(WW) The directory \"/usr/share/fonts/75dpi\" does not exist.\n\tEntry deleted from font path.\n(==) FontPath set to:\n\t\n(==) ModulePath set to \"/usr/lib/xorg/modules\"\n(II) The server relies on udev to provide the list of input devices.\n\tIf no devices become available, reconfigure udev or disable AutoAddDevices.\n(II) Module ABI versions:\n\tX.Org ANSI C Emulation: 0.4\n\tX.Org Video Driver: 25.2\n\tX.Org XInput driver : 24.4\n\tX.Org Server Extension : 10.0\n(++) using VT number 1\n\n(II) systemd-logind: took control of session /org/freedesktop/login1/session/_33\n(II) xfree86: Adding drm device (/dev/dri/card0)\n(II) Platform probe for /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.0/drm/card0\n(II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 14 paused 0\n(--) PCI:*(4@0:0:0) 1002:1435:1002:0123 rev 174, Mem @ 0xf8e0000000/268435456, 0xf8f0000000/2097152, 0x80500000/524288, I/O @ 0x00001000/256\n(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)\n(II) LoadModule: \"glx\"\n(II) Loading /usr/lib/xorg/modules/extensions/libglx.so\n(II) Module glx: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.16, module version = 1.0.0\n\tABI class: X.Org Server Extension, version 10.0\n(II) Applying OutputClass \"AMDgpu\" to /dev/dri/card0\n\tloading driver: amdgpu\n(==) Matched amdgpu as autoconfigured driver 0\n(==) Matched ati as autoconfigured driver 1\n(==) Matched modesetting as autoconfigured driver 2\n(==) Matched fbdev as autoconfigured driver 3\n(==) Matched vesa as autoconfigured driver 4\n(==) Assigned the driver to the xf86ConfigLayout\n(II) LoadModule: \"amdgpu\"\n(II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so\n(II) Module amdgpu: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.11, module version = 23.0.0\n\tModule class: X.Org Video Driver\n\tABI class: X.Org Video Driver, version 25.2\n(II) LoadModule: \"ati\"\n(WW) Warning, couldn't open module ati\n(EE) Failed to load module \"ati\" (module does not exist, 0)\n(II) LoadModule: \"modesetting\"\n(II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so\n(II) Module modesetting: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.16, module version = 1.21.1\n\tModule class: X.Org Video Driver\n\tABI class: X.Org Video Driver, version 25.2\n(II) LoadModule: \"fbdev\"\n(WW) Warning, couldn't open module fbdev\n(EE) Failed to load module \"fbdev\" (module does not exist, 0)\n(II) LoadModule: \"vesa\"\n(WW) Warning, couldn't open module vesa\n(EE) Failed to load module \"vesa\" (module does not exist, 0)\n(II) AMDGPU: Driver for AMD Radeon:\n\tAll GPUs supported by the amdgpu kernel driver\n(II) modesetting: Driver for Modesetting Kernel Drivers: kms\n(WW) Falling back to old probe method for modesetting\n(WW) VGA arbiter: cannot open kernel arbiter, no multi-card support\n(II) AMDGPU(0): Creating default Display subsection in Screen section\n\t\"Default Screen\" for depth/fbbpp 24/32\n(**) AMDGPU(0): Depth 24, (--) framebuffer bpp 32\n(II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)\n(==) AMDGPU(0): Default visual is TrueColor\n(II) Applying OutputClass \"AMDgpu\" options to /dev/dri/card0\n(==) AMDGPU(0): RGB weight 888\n(II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC)\n(--) AMDGPU(0): Chipset: \"AMD Custom GPU 0932\" (ChipID = 0x1435)\n(II) Loading sub module \"fb\"\n(II) LoadModule: \"fb\"\n(II) Module \"fb\" already built-in\n(II) Loading sub module \"dri2\"\n(II) LoadModule: \"dri2\"\n(II) Module \"dri2\" already built-in\n(II) Loading sub module \"glamoregl\"\n(II) LoadModule: \"glamoregl\"\n(II) Loading /usr/lib/xorg/modules/libglamoregl.so\n(II) Module glamoregl: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.16, module version = 1.0.1\n\tABI class: X.Org ANSI C Emulation, version 0.4\n(II) AMDGPU(0): glamor X acceleration enabled on AMD Custom GPU 0932 (radeonsi, vangogh, LLVM 18.1.8, DRM 3.59, 6.11.11-valve8-1-neptune-611-g9b073eb8166e)\n(II) AMDGPU(0): glamor detected, initialising EGL layer.\n(==) AMDGPU(0): TearFree property default: auto\n(==) AMDGPU(0): VariableRefresh: disabled\n(==) AMDGPU(0): AsyncFlipSecondaries: disabled\n(II) AMDGPU(0): KMS Pageflipping: enabled\n(II) AMDGPU(0): Output eDP has no monitor section\n(II) AMDGPU(0): Output DisplayPort-0 has no monitor section\n(**) AMDGPU(0): Option \"NoOutputInitialSize\" \"1920 1080\"\n(II) AMDGPU(0): EDID for output eDP\n(II) AMDGPU(0): Manufacturer: VLV  Model: 3004  Serial#: 1\n(II) AMDGPU(0): Year: 2022  Week: 255\n(II) AMDGPU(0): EDID Version: 1.4\n(II) AMDGPU(0): Digital Display Input\n(II) AMDGPU(0): 8 bits per channel\n(II) AMDGPU(0): Digital interface is DisplayPort\n(II) AMDGPU(0): Max Image Size [cm]: horiz.: 10  vert.: 16\n(II) AMDGPU(0): Gamma: 2.20\n(II) AMDGPU(0): No DPMS capabilities specified\n(II) AMDGPU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:2:2\n(II) AMDGPU(0): Default color space is primary color space\n(II) AMDGPU(0): First detailed timing is preferred mode\n(II) AMDGPU(0): Preferred mode is native pixel format and refresh rate\n(II) AMDGPU(0): Display is continuous-frequency\n(II) AMDGPU(0): redX: 0.685 redY: 0.314   greenX: 0.245 greenY: 0.715\n(II) AMDGPU(0): blueX: 0.138 blueY: 0.050   whiteX: 0.312 whiteY: 0.329\n(II) AMDGPU(0): Manufacturer's mask: 0\n(II) AMDGPU(0): Supported detailed timing:\n(II) AMDGPU(0): clock: 102.0 MHz   Image Size:  100 x 160 mm\n(II) AMDGPU(0): h_active: 800  h_sync: 818  h_sync_end 822 h_blank_end 858 h_border: 0\n(II) AMDGPU(0): v_active: 1280  v_sync: 1288  v_sync_end 1290 v_blanking: 1320 v_border: 0\n(II) AMDGPU(0): Monitor name: ANX7530 U\n(II) AMDGPU(0): Ranges: V min: 45 V max: 90 Hz, H min: 118 H max: 119 kHz, PixClock max 145 MHz\n(II) AMDGPU(0): Number of EDID sections to follow: 1\n(II) AMDGPU(0): EDID (in hex):\n(II) AMDGPU(0): \t00ffffffffffff005996043001000000\n(II) AMDGPU(0): \tff200104a50a1078176c71af503eb723\n(II) AMDGPU(0): \t0c505400000001010101010101010101\n(II) AMDGPU(0): \t010101010101d827203a300028501204\n(II) AMDGPU(0): \t820064a00000001e000000fc00414e58\n(II) AMDGPU(0): \t3735333020550a202020000000fd002d\n(II) AMDGPU(0): \t5a76770e000a20202020202000000010\n(II) AMDGPU(0): \t00000000000000000000000000000116\n(II) AMDGPU(0): \t02030b00e60601016a6a030000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t0000000000000000000000000000002b\n(II) AMDGPU(0): Printing probed modes for output eDP\n(II) AMDGPU(0): Modeline \"800x1280\"x90.1  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n(II) AMDGPU(0): EDID for output DisplayPort-0\n(II) AMDGPU(0): Output eDP connected\n(II) AMDGPU(0): Output DisplayPort-0 disconnected\n(II) AMDGPU(0): Using exact sizes for initial modes\n(II) AMDGPU(0): Output eDP using initial mode 800x1280 +0+0\n(II) AMDGPU(0): mem size init: gart size :1fb298000 vram size: s:3e45d000 visible:3e45d000\n(==) AMDGPU(0): DPI set to (96, 96)\n(==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0)\n(II) Loading sub module \"ramdac\"\n(II) LoadModule: \"ramdac\"\n(II) Module \"ramdac\" already built-in\n(II) UnloadModule: \"modesetting\"\n(II) Unloading modesetting\n(II) AMDGPU(0): [DRI2] Setup complete\n(II) AMDGPU(0): [DRI2]   DRI driver: radeonsi\n(II) AMDGPU(0): [DRI2]   VDPAU driver: radeonsi\n(II) AMDGPU(0): Front buffer pitch: 3584 bytes\n(II) AMDGPU(0): SYNC extension fences enabled\n(II) AMDGPU(0): Present extension enabled\n(==) AMDGPU(0): DRI3 enabled\n(==) AMDGPU(0): Backing store enabled\n(II) AMDGPU(0): Direct rendering enabled\n(II) AMDGPU(0): Use GLAMOR acceleration.\n(II) AMDGPU(0): Acceleration enabled\n(==) AMDGPU(0): DPMS enabled\n(==) AMDGPU(0): Silken mouse enabled\n(II) AMDGPU(0): Set up textured video (glamor)\n(WW) AMDGPU(0): Option \"HotplugDriver\" is not used\n(WW) AMDGPU(0): Option \"AllowEmptyInitialConfiguration\" is not used\n(II) Initializing extension Generic Event Extension\n(II) Initializing extension SHAPE\n(II) Initializing extension MIT-SHM\n(II) Initializing extension XInputExtension\n(II) Initializing extension XTEST\n(II) Initializing extension BIG-REQUESTS\n(II) Initializing extension SYNC\n(II) Initializing extension XKEYBOARD\n(II) Initializing extension XC-MISC\n(II) Initializing extension SECURITY\n(II) Initializing extension XFIXES\n(II) Initializing extension RENDER\n(II) Initializing extension RANDR\n(II) Initializing extension COMPOSITE\n(II) Initializing extension DAMAGE\n(II) Initializing extension MIT-SCREEN-SAVER\n(II) Initializing extension DOUBLE-BUFFER\n(II) Initializing extension RECORD\n(II) Initializing extension DPMS\n(II) Initializing extension Present\n(II) Initializing extension DRI3\n(II) Initializing extension X-Resource\n(II) Initializing extension XVideo\n(II) Initializing extension XVideo-MotionCompensation\n(II) Initializing extension GLX\n(II) AIGLX: Loaded and initialized radeonsi\n(II) GLX: Initialized DRI2 GL provider for screen 0\n(II) Initializing extension XFree86-VidModeExtension\n(II) Initializing extension XFree86-DGA\n(II) Initializing extension XFree86-DRI\n(II) Initializing extension DRI2\n(II) AMDGPU(0): Setting screen physical size to 211 x 338\n(II) config/udev: Adding input device Power Button (/dev/input/event2)\n(**) Power Button: Applying InputClass \"libinput keyboard catchall\"\n(II) LoadModule: \"libinput\"\n(II) Loading /usr/lib/xorg/modules/input/libinput_drv.so\n(II) Module libinput: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.13, module version = 1.5.0\n\tModule class: X.Org XInput Driver\n\tABI class: X.Org XInput driver, version 24.4\n(II) Using input driver 'libinput' for 'Power Button'\n(II) systemd-logind: got fd for /dev/input/event2 13:66 fd 27 paused 0\n(**) Power Button: always reports core events\n(**) Option \"Device\" \"/dev/input/event2\"\n(II) event2  - Power Button: is tagged by udev as: Keyboard\n(II) event2  - Power Button: device is a keyboard\n(II) event2  - Power Button: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2\"\n(II) XINPUT: Adding extended input device \"Power Button\" (type: KEYBOARD, id 6)\n(II) event2  - Power Button: is tagged by udev as: Keyboard\n(II) event2  - Power Button: device is a keyboard\n(II) config/udev: Adding input device Video Bus (/dev/input/event3)\n(**) Video Bus: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'Video Bus'\n(II) systemd-logind: got fd for /dev/input/event3 13:67 fd 30 paused 0\n(**) Video Bus: always reports core events\n(**) Option \"Device\" \"/dev/input/event3\"\n(II) event3  - Video Bus: is tagged by udev as: Keyboard\n(II) event3  - Video Bus: device is a keyboard\n(II) event3  - Video Bus: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d/LNXVIDEO:01/input/input3/event3\"\n(II) XINPUT: Adding extended input device \"Video Bus\" (type: KEYBOARD, id 7)\n(II) event3  - Video Bus: is tagged by udev as: Keyboard\n(II) event3  - Video Bus: device is a keyboard\n(II) config/udev: Adding input device Power Button (/dev/input/event0)\n(**) Power Button: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'Power Button'\n(II) systemd-logind: got fd for /dev/input/event0 13:64 fd 31 paused 0\n(**) Power Button: always reports core events\n(**) Option \"Device\" \"/dev/input/event0\"\n(II) event0  - Power Button: is tagged by udev as: Keyboard\n(II) event0  - Power Button: device is a keyboard\n(II) event0  - Power Button: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0\"\n(II) XINPUT: Adding extended input device \"Power Button\" (type: KEYBOARD, id 8)\n(II) event0  - Power Button: is tagged by udev as: Keyboard\n(II) event0  - Power Button: device is a keyboard\n(II) config/udev: Adding input device Lid Switch (/dev/input/event1)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event10)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=7 (/dev/input/event11)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=8 (/dev/input/event12)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=9 (/dev/input/event13)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device Logitech K400 (/dev/input/event9)\n(**) Logitech K400: Applying InputClass \"libinput pointer catchall\"\n(**) Logitech K400: Applying InputClass \"libinput keyboard catchall\"\n(**) Logitech K400: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Logitech K400'\n(II) systemd-logind: got fd for /dev/input/event9 13:73 fd 32 paused 0\n(**) Logitech K400: always reports core events\n(**) Option \"Device\" \"/dev/input/event9\"\n(II) event9  - Logitech K400: is tagged by udev as: Keyboard Mouse\n(II) event9  - Logitech K400: device is a pointer\n(II) event9  - Logitech K400: device is a keyboard\n(II) event9  - Logitech K400: device removed\n(**) Option \"AccelSpeed\" \"0\"\n(**) Option \"AccelProfile\" \"flat\"\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Logitech K400: needs a virtual subdevice\n(**) Option \"config_info\" \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0014/0003:046D:4024.0015/input/input39/event9\"\n(II) XINPUT: Adding extended input device \"Logitech K400\" (type: MOUSE, id 9)\n(**) Option \"AccelerationScheme\" \"none\"\n(**) Logitech K400: (accel) selected scheme none/0\n(**) Logitech K400: (accel) acceleration factor: 2.000\n(**) Logitech K400: (accel) acceleration threshold: 4\n(II) event9  - Logitech K400: is tagged by udev as: Keyboard Mouse\n(II) event9  - Logitech K400: device is a pointer\n(II) event9  - Logitech K400: device is a keyboard\n(II) config/udev: Adding input device Logitech K400 (/dev/input/mouse3)\n(**) Logitech K400: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Logitech K400'\n(**) Logitech K400: always reports core events\n(**) Option \"Device\" \"/dev/input/mouse3\"\n(II) mouse3  - not using input device '/dev/input/mouse3'.\n(EE) libinput: Logitech K400: Failed to create a device for /dev/input/mouse3\n(EE) PreInit returned 2 for \"Logitech K400\"\n(II) UnloadModule: \"libinput\"\n(II) config/udev: Adding input device Valve Software Steam Controller (/dev/input/event5)\n(**) Valve Software Steam Controller: Applying InputClass \"libinput pointer catchall\"\n(**) Valve Software Steam Controller: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Valve Software Steam Controller'\n(II) systemd-logind: got fd for /dev/input/event5 13:69 fd 33 paused 0\n(**) Valve Software Steam Controller: always reports core events\n(**) Option \"Device\" \"/dev/input/event5\"\n(II) event5  - Valve Software Steam Controller: is tagged by udev as: Mouse\n(II) event5  - Valve Software Steam Controller: device is a pointer\n(II) event5  - Valve Software Steam Controller: device removed\n(**) Option \"AccelSpeed\" \"0\"\n(**) Option \"AccelProfile\" \"flat\"\n(II) libinput: Valve Software Steam Controller: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Valve Software Steam Controller: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Valve Software Steam Controller: Step value 0 was provided, libinput Fallback acceleration function is used.\n(**) Option \"config_info\" \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.0/0003:28DE:1205.0001/input/input16/event5\"\n(II) XINPUT: Adding extended input device \"Valve Software Steam Controller\" (type: MOUSE, id 10)\n(**) Option \"AccelerationScheme\" \"none\"\n(**) Valve Software Steam Controller: (accel) selected scheme none/0\n(**) Valve Software Steam Controller: (accel) acceleration factor: 2.000\n(**) Valve Software Steam Controller: (accel) acceleration threshold: 4\n(II) event5  - Valve Software Steam Controller: is tagged by udev as: Mouse\n(II) event5  - Valve Software Steam Controller: device is a pointer\n(II) config/udev: Adding input device Valve Software Steam Controller (/dev/input/mouse0)\n(**) Valve Software Steam Controller: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Valve Software Steam Controller'\n(**) Valve Software Steam Controller: always reports core events\n(**) Option \"Device\" \"/dev/input/mouse0\"\n(II) mouse0  - not using input device '/dev/input/mouse0'.\n(EE) libinput: Valve Software Steam Controller: Failed to create a device for /dev/input/mouse0\n(EE) PreInit returned 2 for \"Valve Software Steam Controller\"\n(II) UnloadModule: \"libinput\"\n(II) config/udev: Adding input device Valve Software Steam Controller (/dev/input/event4)\n(**) Valve Software Steam Controller: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'Valve Software Steam Controller'\n(II) systemd-logind: got fd for /dev/input/event4 13:68 fd 34 paused 0\n(**) Valve Software Steam Controller: always reports core events\n(**) Option \"Device\" \"/dev/input/event4\"\n(II) event4  - Valve Software Steam Controller: is tagged by udev as: Keyboard\n(II) event4  - Valve Software Steam Controller: device is a keyboard\n(II) event4  - Valve Software Steam Controller: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.1/0003:28DE:1205.0002/input/input15/event4\"\n(II) XINPUT: Adding extended input device \"Valve Software Steam Controller\" (type: KEYBOARD, id 11)\n(II) event4  - Valve Software Steam Controller: is tagged by udev as: Keyboard\n(II) event4  - Valve Software Steam Controller: device is a keyboard\n(II) config/udev: Adding input device Steam Deck (/dev/input/event8)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device Steam Deck (/dev/input/js0)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device Steam Deck Motion Sensors (/dev/input/event17)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device Steam Deck Motion Sensors (/dev/input/js1)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device sof-nau8821-max Headset Jack (/dev/input/event16)\n(**) sof-nau8821-max Headset Jack: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'sof-nau8821-max Headset Jack'\n(II) systemd-logind: got fd for /dev/input/event16 13:80 fd 35 paused 0\n(**) sof-nau8821-max Headset Jack: always reports core events\n(**) Option \"Device\" \"/dev/input/event16\"\n(II) event16 - sof-nau8821-max Headset Jack: is tagged by udev as: Keyboard Switch\n(II) event16 - sof-nau8821-max Headset Jack: device is a keyboard\n(II) event16 - sof-nau8821-max Headset Jack: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.5/nau8821-max/sound/card1/input22/event16\"\n(II) XINPUT: Adding extended input device \"sof-nau8821-max Headset Jack\" (type: KEYBOARD, id 12)\n(II) event16 - sof-nau8821-max Headset Jack: is tagged by udev as: Keyboard Switch\n(II) event16 - sof-nau8821-max Headset Jack: device is a keyboard\n(II) config/udev: Adding input device FTS3528:00 2808:1015 (/dev/input/event14)\n(**) FTS3528:00 2808:1015: Applying InputClass \"libinput touchscreen catchall\"\n(**) FTS3528:00 2808:1015: Applying InputClass \"calibration\"\n(II) Using input driver 'libinput' for 'FTS3528:00 2808:1015'\n(II) systemd-logind: got fd for /dev/input/event14 13:78 fd 36 paused 0\n(**) FTS3528:00 2808:1015: always reports core events\n(**) Option \"Device\" \"/dev/input/event14\"\n(II) event14 - FTS3528:00 2808:1015: is tagged by udev as: Touchscreen\n(II) event14 - FTS3528:00 2808:1015: device is a touch device\n(II) event14 - FTS3528:00 2808:1015: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/platform/AMDI0010:01/i2c-1/i2c-FTS3528:00/0018:2808:1015.0004/input/input19/event14\"\n(II) XINPUT: Adding extended input device \"FTS3528:00 2808:1015\" (type: TOUCHSCREEN, id 13)\n(**) Option \"AccelerationScheme\" \"none\"\n(**) FTS3528:00 2808:1015: (accel) selected scheme none/0\n(**) FTS3528:00 2808:1015: (accel) acceleration factor: 2.000\n(**) FTS3528:00 2808:1015: (accel) acceleration threshold: 4\n(**) Option \"TransformationMatrix\" \"0  1  0 -1  0   1 0  0   1\"\n(II) event14 - FTS3528:00 2808:1015: is tagged by udev as: Touchscreen\n(II) event14 - FTS3528:00 2808:1015: device is a touch device\n(II) config/udev: Adding input device FTS3528:00 2808:1015 (/dev/input/mouse1)\n(**) FTS3528:00 2808:1015: Applying InputClass \"calibration\"\n(II) Using input driver 'libinput' for 'FTS3528:00 2808:1015'\n(**) FTS3528:00 2808:1015: always reports core events\n(**) Option \"Device\" \"/dev/input/mouse1\"\n(EE) xf86OpenSerial: Cannot open device /dev/input/mouse1\n\tPermission denied.\n(II) mouse1: opening input device '/dev/input/mouse1' failed (Permission denied).\n(II) mouse1  - failed to create input device '/dev/input/mouse1'.\n(EE) libinput: FTS3528:00 2808:1015: Failed to create a device for /dev/input/mouse1\n(EE) PreInit returned 2 for \"FTS3528:00 2808:1015\"\n(II) UnloadModule: \"libinput\"\n(II) config/udev: Adding input device FTS3528:00 2808:1015 UNKNOWN (/dev/input/event15)\n(**) FTS3528:00 2808:1015 UNKNOWN: Applying InputClass \"libinput tablet catchall\"\n(**) FTS3528:00 2808:1015 UNKNOWN: Applying InputClass \"calibration\"\n(II) Using input driver 'libinput' for 'FTS3528:00 2808:1015 UNKNOWN'\n(II) systemd-logind: got fd for /dev/input/event15 13:79 fd 37 paused 0\n(**) FTS3528:00 2808:1015 UNKNOWN: always reports core events\n(**) Option \"Device\" \"/dev/input/event15\"\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: is tagged by udev as: Tablet\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device \"FTS3528:00 2808:1015 UNKNOWN\" (2808:1015) is not known to libwacom\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device is a tablet\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/platform/AMDI0010:01/i2c-1/i2c-FTS3528:00/0018:2808:1015.0004/input/input21/event15\"\n(II) XINPUT: Adding extended input device \"FTS3528:00 2808:1015 UNKNOWN\" (type: TABLET, id 14)\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: is tagged by udev as: Tablet\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device \"FTS3528:00 2808:1015 UNKNOWN\" (2808:1015) is not known to libwacom\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device is a tablet\n(II) config/udev: Adding input device FTS3528:00 2808:1015 UNKNOWN (/dev/input/mouse2)\n(**) FTS3528:00 2808:1015 UNKNOWN: Applying InputClass \"calibration\"\n(II) Using input driver 'libinput' for 'FTS3528:00 2808:1015 UNKNOWN'\n(**) FTS3528:00 2808:1015 UNKNOWN: always reports core events\n(**) Option \"Device\" \"/dev/input/mouse2\"\n(EE) xf86OpenSerial: Cannot open device /dev/input/mouse2\n\tPermission denied.\n(II) mouse2: opening input device '/dev/input/mouse2' failed (Permission denied).\n(II) mouse2  - failed to create input device '/dev/input/mouse2'.\n(EE) libinput: FTS3528:00 2808:1015 UNKNOWN: Failed to create a device for /dev/input/mouse2\n(EE) PreInit returned 2 for \"FTS3528:00 2808:1015 UNKNOWN\"\n(II) UnloadModule: \"libinput\"\n(II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event7)\n(**) AT Translated Set 2 keyboard: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'\n(II) systemd-logind: got fd for /dev/input/event7 13:71 fd 39 paused 0\n(**) AT Translated Set 2 keyboard: always reports core events\n(**) Option \"Device\" \"/dev/input/event7\"\n(II) event7  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard\n(II) event7  - AT Translated Set 2 keyboard: device is a keyboard\n(II) event7  - AT Translated Set 2 keyboard: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/platform/i8042/serio0/input/input6/event7\"\n(II) XINPUT: Adding extended input device \"AT Translated Set 2 keyboard\" (type: KEYBOARD, id 15)\n(II) event7  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard\n(II) event7  - AT Translated Set 2 keyboard: device is a keyboard\n(II) config/udev: Adding input device PC Speaker (/dev/input/event6)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(**) Logitech K400: Applying InputClass \"libinput pointer catchall\"\n(**) Logitech K400: Applying InputClass \"libinput keyboard catchall\"\n(**) Logitech K400: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Logitech K400'\n(II) systemd-logind: returning pre-existing fd for /dev/input/event9 13:73\n(**) Logitech K400: always reports core events\n(**) Option \"Device\" \"/dev/input/event9\"\n(II) libinput: Logitech K400: is a virtual subdevice\n(**) Option \"AccelSpeed\" \"0\"\n(**) Option \"AccelProfile\" \"flat\"\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n(**) Option \"config_info\" \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0014/0003:046D:4024.0015/input/input39/event9\"\n(II) XINPUT: Adding extended input device \"Logitech K400\" (type: KEYBOARD, id 16)\n(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using EDID range info for horizontal sync\n(II) AMDGPU(0): Using EDID range info for vertical refresh\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n(EE) AMDGPU(0): drmmode_do_crtc_dpms cannot get last vblank counter\n(II) AMDGPU(0): Allocate new frame buffer 1280x800\n(II) AMDGPU(0):  => pitch 5120 bytes\n"
Mar 15 17:25:55 akideck wireplumber[1450]: spa.alsa: Failed to enable UCM device Speaker
Mar 15 17:25:56 akideck systemd[1202]: Reload requested from client PID 4123 ('startplasma-x11')...
Mar 15 17:25:56 akideck systemd[1202]: Reloading...
Mar 15 17:25:56 akideck systemd[1202]: Reloading finished in 370 ms.
Mar 15 17:25:56 akideck systemd[1202]: Created slice User Background Tasks Slice.
Mar 15 17:25:56 akideck systemd[1202]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/deck/.cache/drkonqi/sentry-envelopes/*).
Mar 15 17:25:56 akideck systemd[1202]: Reached target Session services which should run early before the graphical session is brought up.
Mar 15 17:25:56 akideck systemd[1202]: Starting KDE Config Module Initialization...
Mar 15 17:25:56 akideck systemd[1202]: Starting KDE Global Shortcuts Server...
Mar 15 17:25:56 akideck systemd[1202]: Starting Baloo File Indexer Daemon...
Mar 15 17:25:57 akideck systemd[1202]: Starting Portal service...
Mar 15 17:25:57 akideck systemd[1202]: Started Baloo File Indexer Daemon.
Mar 15 17:25:57 akideck systemd[1202]: Starting flatpak document portal service...
Mar 15 17:25:57 akideck systemd[1202]: Starting sandboxed app permission store...
Mar 15 17:25:57 akideck kcminit_startup[4205]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
Mar 15 17:25:57 akideck systemd[1202]: Started sandboxed app permission store.
Mar 15 17:25:57 akideck systemd[1202]: Started flatpak document portal service.
Mar 15 17:25:57 akideck xdg-desktop-por[4208]: Choosing gtk.portal for org.freedesktop.impl.portal.Lockdown as a last-resort fallback
Mar 15 17:25:57 akideck xdg-desktop-por[4208]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file
Mar 15 17:25:57 akideck kcminit_startup[4205]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_style.so"
Mar 15 17:25:57 akideck systemd[1202]: Starting Portal service (GTK/GNOME implementation)...
Mar 15 17:25:57 akideck kcminit_startup[4205]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_mouse.so"
Mar 15 17:25:57 akideck systemd[1202]: Started KDE Config Module Initialization.
Mar 15 17:25:57 akideck systemd[1202]: Starting KDE Session Management Server...
Mar 15 17:25:57 akideck systemd[1202]: Started Unlock kwallet from pam credentials.
Mar 15 17:25:57 akideck systemd[1202]: Starting KDE Daemon 6...
Mar 15 17:25:57 akideck systemd[1202]: Starting KDE Window Manager...
Mar 15 17:25:57 akideck systemd[1202]: Started KDE Global Shortcuts Server.
Mar 15 17:25:57 akideck systemd[1202]: Starting Accessibility services bus...
Mar 15 17:25:57 akideck systemd[1202]: Started Accessibility services bus.
Mar 15 17:25:57 akideck dbus-broker-launch[4271]: Ready
Mar 15 17:25:57 akideck systemd[1202]: Created slice Slice /app/dbus-:1.56-org.a11y.atspi.Registry.
Mar 15 17:25:57 akideck systemd[1202]: Started dbus-:1.56-org.a11y.atspi.Registry@0.service.
Mar 15 17:25:57 akideck systemd[1202]: Started Portal service (GTK/GNOME implementation).
Mar 15 17:25:57 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 17:25:57 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 17:25:57 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 17:25:57 akideck at-spi2-registryd[4277]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Mar 15 17:25:57 akideck systemd[1202]: Started KDE Daemon 6.
Mar 15 17:25:57 akideck systemd[1202]: Starting KDE Configuration Module Initialization (Phase 1)...
Mar 15 17:25:57 akideck systemd[1202]: Started KDE Session Management Server.
Mar 15 17:25:57 akideck kded6[4240]: org.kde.colorcorrectlocationupdater: Geolocator stopped
Mar 15 17:25:57 akideck systemd[1202]: Starting KDE Plasma Workspace...
Mar 15 17:25:57 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n"
Mar 15 17:25:57 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:25:57 akideck kcminit_startup[4205]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so"
Mar 15 17:25:57 akideck kcminit_startup[4205]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_touchpad.so"
Mar 15 17:25:57 akideck kcminit_startup[4205]: kcm_touchpad: Using X11 backend
Mar 15 17:25:57 akideck systemd[1202]: Finished KDE Configuration Module Initialization (Phase 1).
Mar 15 17:25:57 akideck kded6[4240]: QDBusObjectPath: invalid path "/modules/plasma-session-shortcuts"
Mar 15 17:25:57 akideck kded6[4240]: kf.dbusaddons: The kded module name "plasma-session-shortcuts" is invalid!
Mar 15 17:25:57 akideck systemd[1202]: Started KDE Window Manager.
Mar 15 17:25:57 akideck systemd[1202]: Starting User preferences database...
Mar 15 17:25:57 akideck systemd[1202]: Started User preferences database.
Mar 15 17:25:57 akideck kded6[4240]: org.kde.kameleon: found no RGB LED devices
Mar 15 17:25:57 akideck kded6[4240]: kcm_touchpad: Using X11 backend
Mar 15 17:25:57 akideck NetworkManager[1062]: <info>  [1742084757.8693] agent-manager: agent[1421b84b4b70400f,:1.94/org.kde.plasma.networkmanagement/1000]: agent registered
Mar 15 17:25:57 akideck kded6[4240]: org.kde.libkbolt: Failed to connect to Bolt manager DBus interface:
Mar 15 17:25:57 akideck kded6[4240]: org.kde.bolt.kded: Couldn't connect to Bolt DBus daemon
Mar 15 17:25:57 akideck systemd[1202]: Starting KActivityManager Activity manager Service...
Mar 15 17:25:57 akideck kded6[4240]: org.kde.plasma.printmanager.kded: unable to register service to dbus
Mar 15 17:25:57 akideck kconf_update[4387]: kf.config.kconf_update: /usr/share/kconf_update/ark.upd defined Version=5 but Version=6 was expected
Mar 15 17:25:57 akideck kconf_update[4387]: kf.config.kconf_update: /usr/share/kconf_update/dolphin_detailsmodesettings.upd defined Version=5 but Version=6 was expected
Mar 15 17:25:57 akideck kconf_update[4387]: kf.config.kconf_update: /usr/share/kconf_update/dolphin_directorysizemode.upd defined Version=5 but Version=6 was expected
Mar 15 17:25:57 akideck systemd[1202]: Started KDE Plasma Workspace.
Mar 15 17:25:57 akideck systemd[1202]: Reached target KDE Plasma Workspace Core.
Mar 15 17:25:57 akideck kconf_update[4387]: kf.config.kconf_update: /usr/share/kconf_update/konsole.upd defined Version=5 but Version=6 was expected
Mar 15 17:25:57 akideck kconf_update[4387]: kf.config.kconf_update: /usr/share/kconf_update/okular.upd defined Version=5 but Version=6 was expected
Mar 15 17:25:57 akideck systemd[1202]: Started Consume pending crashes using DrKonqi.
Mar 15 17:25:57 akideck systemd[1202]: Started Proxies GTK DBus menus to a Plasma readable format.
Mar 15 17:25:57 akideck systemd[1202]: Started KAccess.
Mar 15 17:25:57 akideck systemd[1202]: Starting KDE PolicyKit Authentication Agent...
Mar 15 17:25:57 akideck systemd[1202]: Starting Powerdevil...
Mar 15 17:25:57 akideck systemd[1202]: Starting Xdg Desktop Portal For KDE...
Mar 15 17:25:57 akideck systemd[1202]: Started Handle legacy xembed system tray icons.
Mar 15 17:25:57 akideck kaccess[4390]: Xlib XKB extension major= 1  minor= 0
Mar 15 17:25:58 akideck dbus-broker-launch[794]: Activation request for 'org.freedesktop.ModemManager1' failed: The systemd unit 'dbus-org.freedesktop.ModemManager1.service' could not be found.
Mar 15 17:25:58 akideck kded6[4240]: kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.DBus.Error.NameHasNoOwner" 
                                      "Could not activate remote peer 'org.freedesktop.ModemManager1': activation request failed: unknown unit"
Mar 15 17:25:58 akideck systemd[1202]: Started KActivityManager Activity manager Service.
Mar 15 17:25:58 akideck kded6[4449]: xsettingsd: Loaded 14 settings from /home/deck/.config/xsettingsd/xsettingsd.conf
Mar 15 17:25:58 akideck kded6[4449]: xsettingsd: Created window 0x2a00001 on screen 0 with timestamp 1938471
Mar 15 17:25:58 akideck kded6[4449]: xsettingsd: Selection _XSETTINGS_S0 is owned by 0x0
Mar 15 17:25:58 akideck kded6[4449]: xsettingsd: Took ownership of selection _XSETTINGS_S0
Mar 15 17:25:58 akideck systemd[1]: Created slice Slice /system/dbus-:1.3-org.kde.kded.smart.
Mar 15 17:25:58 akideck systemd[1202]: Starting KScreen...
Mar 15 17:25:58 akideck systemd[1]: Started dbus-:1.3-org.kde.kded.smart@0.service.
Mar 15 17:25:58 akideck org_kde_powerdevil[4392]: Failed to create wl_display (No such file or directory)
Mar 15 17:25:58 akideck org_kde_powerdevil[4392]: Initializing libddcutil.  ddcutil version: 2.1.4, shared library: /usr/lib/libddcutil.so.5.1.2
Mar 15 17:25:58 akideck org_kde_powerdevil[4392]: Options passed from client:
Mar 15 17:25:58 akideck org_kde_powerdevil[4392]: Applying combined options:
Mar 15 17:25:58 akideck systemd[1202]: Started KDE PolicyKit Authentication Agent.
Mar 15 17:25:58 akideck polkit-kde-authentication-agent-1[4391]: New PolkitAgentListener  0x561e58940850
Mar 15 17:25:58 akideck polkit-kde-authentication-agent-1[4391]: Adding new listener  PolkitQt1::Agent::Listener(0x561e589401d0) for  0x561e58940850
Mar 15 17:25:58 akideck polkit-kde-authentication-agent-1[4391]: Listener online
Mar 15 17:25:58 akideck kded6[4240]: kf.bluezqt: PendingCall Error: "The name is not activatable"
Mar 15 17:25:58 akideck kded6[4240]: Known activities: QList("834bdd14-909a-4669-80bd-94f937ee4a8e")
Mar 15 17:25:58 akideck kded6[4240]: Known activities: QList("834bdd14-909a-4669-80bd-94f937ee4a8e")
Mar 15 17:25:58 akideck systemd[1202]: Started KScreen.
Mar 15 17:25:58 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n"
Mar 15 17:25:58 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr: Connected output 82 to CRTC 78
Mar 15 17:25:58 akideck systemd[1202]: Started Xdg Desktop Portal For KDE.
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper: Detected XRandR 1.6
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper: Event Base:  89
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper: Event Error:  147
Mar 15 17:25:58 akideck kaccess[4390]: X server XKB extension major= 1  minor= 0
Mar 15 17:25:58 akideck kded6[4240]: kscreen.kded: PowerDevil SuspendSession action not available!
Mar 15 17:25:58 akideck polkit-kde-authentication-agent-1[4391]: Authentication agent result: true
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr: XRandR::setConfig
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr: Requested screen size is QSize(1280, 800)
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr: Needed CRTCs:  1
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr: Actions to perform:
                                                                 Priorities: true
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr:         Output 82 
                                                                         Old: "0" 
                                                                         New: "1"
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr:         Change Screen Size: false
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr:         Disable outputs: false
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr:         Change outputs: false
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr:         Enable outputs: false
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr: RRSetOutputPrimary 
                                                                 New priority: 1
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr: RRSetOutputPrimary 
                                                                 New priority: 0
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xrandr: XRandR::setConfig done!
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper: RRNotify_OutputProperty (ignored)
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper:         Timestamp:  1938567
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper:         Output:  82
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper:         Property:  "_KDE_SCREEN_INDEX"
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper:         State (newValue, Deleted):  0
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper: RRNotify_OutputProperty (ignored)
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper:         Timestamp:  1938567
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper:         Output:  82
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper:         Property:  "_KDE_SCREEN_INDEX"
Mar 15 17:25:58 akideck kscreen_backend_launcher[4457]: kscreen.xcb.helper:         State (newValue, Deleted):  0
Mar 15 17:25:58 akideck systemd[1202]: Started Portal service.
Mar 15 17:25:58 akideck plasmashell[4325]: kf.plasma.quick: Applet preload policy set to 1
Mar 15 17:25:58 akideck plasmashell[4325]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:178:25: QML FolderViewDropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth":
                                           file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:201:9
Mar 15 17:25:58 akideck plasmashell[4325]: Toolbox not loading, toolbox package is either invalid or disabled.
Mar 15 17:25:58 akideck org_kde_powerdevil[4392]: Library initialization complete.
Mar 15 17:25:58 akideck org_kde_powerdevil[4392]: Watch thread started
Mar 15 17:25:58 akideck systemd[1]: Created slice Slice /system/dbus-:1.3-org.kde.powerdevil.discretegpuhelper.
Mar 15 17:25:58 akideck systemd[1]: Started dbus-:1.3-org.kde.powerdevil.discretegpuhelper@0.service.
Mar 15 17:25:58 akideck systemd[1]: Created slice Slice /system/dbus-:1.3-org.kde.powerdevil.chargethresholdhelper.
Mar 15 17:25:58 akideck systemd[1]: Started dbus-:1.3-org.kde.powerdevil.chargethresholdhelper@0.service.
Mar 15 17:25:58 akideck systemd[1]: Created slice Slice /system/dbus-:1.3-org.kde.powerdevil.backlighthelper.
Mar 15 17:25:58 akideck systemd[1]: Started dbus-:1.3-org.kde.powerdevil.backlighthelper@0.service.
Mar 15 17:25:58 akideck org_kde_powerdevil[4392]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds are not supported by the kernel for this hardware"
Mar 15 17:25:58 akideck plasmashell[4325]: org.kde.plasma.kicker: Entry is not valid "org.kde.kontact.desktop" 0x56175825ff60
Mar 15 17:25:58 akideck plasmashell[4325]: org.kde.plasma.kicker: Entry is not valid "ktp-contactlist.desktop" 0x56175825ff60
Mar 15 17:25:58 akideck plasmashell[4325]: org.kde.plasma.kicker: Entry is not valid "org.kde.kontact.desktop" 0x56175825ff60
Mar 15 17:25:58 akideck plasmashell[4325]: org.kde.plasma.kicker: Entry is not valid "ktp-contactlist.desktop" 0x56175825ff60
Mar 15 17:25:58 akideck systemd[1202]: Started Powerdevil.
Mar 15 17:25:58 akideck systemd[1202]: Reached target KDE Plasma Workspace.
Mar 15 17:25:58 akideck systemd[1202]: Reached target Current graphical user session.
Mar 15 17:25:58 akideck systemd[1202]: Reached target plasma-workspace-x11.target.
Mar 15 17:25:58 akideck systemd[1202]: Starting AT-SPI D-Bus Bus...
Mar 15 17:25:58 akideck systemd[1202]: Starting Default Brightness...
Mar 15 17:25:58 akideck systemd[1202]: Starting Firewall Applet...
Mar 15 17:25:58 akideck systemd[1202]: Starting IBus...
Mar 15 17:25:58 akideck systemd[1202]: Starting Discover...
Mar 15 17:25:58 akideck org_kde_powerdevil[4392]: org.kde.powerdevil: Handle button events action could not check for screen configuration
Mar 15 17:25:58 akideck org_kde_powerdevil[4392]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds are not supported by the kernel for this hardware"
Mar 15 17:25:58 akideck systemd[1202]: Starting KDE Connect...
Mar 15 17:25:58 akideck systemd[1202]: Starting Plasma Session Restore...
Mar 15 17:25:58 akideck systemd[1202]: Starting Setup KWallet...
Mar 15 17:25:58 akideck systemd[1202]: Starting Steam...
Mar 15 17:25:58 akideck systemd[1202]: Starting KSplash "ready" Stage...
Mar 15 17:25:58 akideck systemd[1202]: Starting KDE Session Restoration...
Mar 15 17:25:58 akideck systemd[1202]: Started KDE Connect.
Mar 15 17:25:58 akideck systemd[1202]: Started Firewall Applet.
Mar 15 17:25:58 akideck systemd[1202]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'.
Mar 15 17:25:58 akideck systemd[1202]: Condition check resulted in AT-SPI D-Bus Bus being skipped.
Mar 15 17:25:58 akideck systemd[1202]: Started IBus.
Mar 15 17:25:58 akideck systemd[1202]: Started Default Brightness.
Mar 15 17:25:58 akideck systemd[1202]: Started Discover.
Mar 15 17:25:58 akideck systemd[1202]: Started Plasma Session Restore.
Mar 15 17:25:58 akideck kwin_x11[4241]: kf.config.core: "\"fsrestore1\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 15 17:25:58 akideck kwin_x11[4241]: kf.config.core: "\"fsrestore2\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 15 17:25:58 akideck systemd[1202]: Finished KSplash "ready" Stage.
Mar 15 17:25:58 akideck systemd[1202]: Started Setup KWallet.
Mar 15 17:25:58 akideck systemd[1202]: Started Steam.
Mar 15 17:25:58 akideck systemd[1202]: Reached target Startup of XDG autostart applications.
Mar 15 17:25:58 akideck systemd[1202]: Finished KDE Session Restoration.
Mar 15 17:25:58 akideck systemd[1202]: Started /usr/lib/DiscoverNotifier.
Mar 15 17:25:59 akideck firewall-applet[4623]: Traceback (most recent call last):
Mar 15 17:25:59 akideck plasmashell[4325]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:50:9: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
Mar 15 17:25:59 akideck firewall-applet[4623]:   File "/usr/bin/firewall-applet", line 11, in <module>
Mar 15 17:25:59 akideck firewall-applet[4623]:     from PyQt6 import QtGui, QtCore, QtWidgets
Mar 15 17:25:59 akideck firewall-applet[4623]: ModuleNotFoundError: No module named 'PyQt6'
Mar 15 17:25:59 akideck firewall-applet[4623]: During handling of the above exception, another exception occurred:
Mar 15 17:25:59 akideck firewall-applet[4623]: Traceback (most recent call last):
Mar 15 17:25:59 akideck firewall-applet[4623]:   File "/usr/bin/firewall-applet", line 15, in <module>
Mar 15 17:25:59 akideck firewall-applet[4623]:     from PyQt5 import QtGui, QtCore, QtWidgets
Mar 15 17:25:59 akideck firewall-applet[4623]: ModuleNotFoundError: No module named 'PyQt5'
Mar 15 17:25:59 akideck plasmashell[4325]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:50:9: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
Mar 15 17:25:59 akideck systemd[1202]: app-firewall\x2dapplet@autostart.service: Main process exited, code=exited, status=1/FAILURE
Mar 15 17:25:59 akideck systemd[1202]: app-firewall\x2dapplet@autostart.service: Failed with result 'exit-code'.
Mar 15 17:25:59 akideck systemd[1202]: Started dbus-:1.2-org.freedesktop.portal.IBus@1.service.
Mar 15 17:25:59 akideck steam-runtime-steam-remote[4689]: steam-runtime-steam-remote: Steam is not running: No such device or address
Mar 15 17:25:59 akideck DiscoverNotifier[4645]: couldn't load "/usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so: libpackagekitqt6.so.1: cannot open shared object file: No such file or directory"
Mar 15 17:25:59 akideck DiscoverNotifier[4663]: couldn't load "/usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so: libpackagekitqt6.so.1: cannot open shared object file: No such file or directory"
Mar 15 17:25:59 akideck kdeconnectd[4629]: 2025-03-15T17:25:59 default: Error sending UDP packet: QAbstractSocket::NetworkError
Mar 15 17:25:59 akideck kdeconnectd[4629]: 2025-03-15T17:25:59 kdeconnect.core: Failed to open any MDNS client sockets
Mar 15 17:25:59 akideck kdeconnectd[4629]: 2025-03-15T17:25:59 kdeconnect.core: Failed to open any MDNS server sockets
Mar 15 17:25:59 akideck plasmashell[4325]: qt.dbus.integration: Could not connect "org.cups.cupsd.Notifier" to PrinterFinishingsChanged(QString, QString, QString, uint, QString, bool) :
Mar 15 17:25:59 akideck systemd[1]: Created slice CUPS Slice.
Mar 15 17:25:59 akideck systemd[1]: Starting CUPS Scheduler...
Mar 15 17:25:59 akideck systemd[1]: Started CUPS Scheduler.
Mar 15 17:25:59 akideck plasmashell[4325]: error getting max keyboard brightness via dbus QDBusError("org.freedesktop.DBus.Error.UnknownObject", "No such object path '/org/kde/Solid/PowerManagement/Actions/KeyboardBrightnessControl'")
Mar 15 17:25:59 akideck plasmashell[4325]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Mar 15 17:26:00 akideck steam[4649]: steam.sh[4649]: Running Steam on steamos rolling 64-bit
Mar 15 17:26:00 akideck steam[4649]: steam.sh[4649]: STEAM_RUNTIME is enabled automatically
Mar 15 17:26:00 akideck steam[4821]: setup.sh[4821]: Steam runtime environment up-to-date!
Mar 15 17:26:00 akideck steam[4857]: steam.sh[4649]: Using supervisor /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 15 17:26:00 akideck steam[4857]: steam.sh[4649]: Steam client's requirements are satisfied
Mar 15 17:26:00 akideck steam[4857]: CProcessEnvironmentManager is ready, 6 preallocated environment variables.
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] Startup - updater built Mar 11 2025 20:39:15
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] Startup - Steam Client launched with: '/home/deck/.local/share/Steam/ubuntu12_32/steam' '-srt-logger-opened' '-steamdeck' '-silent'
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] Opted in to client beta 'steamdeck_publicbeta' via beta file
Mar 15 17:26:00 akideck steam[4857]: You are in the 'steamdeck_publicbeta' client beta.
Mar 15 17:26:00 akideck steam[4857]: 03/15 17:26:00 minidumps folder is set to /tmp/dumps
Mar 15 17:26:00 akideck steam[4857]: 03/15 17:26:00 Init: Installing breakpad exception handler for appid(steam)/version(1741737356)/tid(4892)
Mar 15 17:26:00 akideck steam[4857]: Looks like steam didn't shutdown cleanly, scheduling immediate update check
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] Loading cached metrics from disk (/home/deck/.local/share/Steam/package/steam_client_metrics.bin)
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] Using the following download hosts for Public, Realm steamglobal
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] 1. https://client-update.fastly.steamstatic.com, /, Realm 'steamglobal', weight was 900, source = 'update_hosts_cached.vdf'
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] 2. https://client-update.akamai.steamstatic.com, /, Realm 'steamglobal', weight was 100, source = 'update_hosts_cached.vdf'
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] 3. https://client-update.steamstatic.com, /, Realm 'steamglobal', weight was 1, source = 'baked in'
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] Checking for update on startup
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] Checking for available updates...
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 15 17:26:00 akideck steam[4857]: [2025-03-15 17:26:00] Manifest download: send request
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Manifest download: waiting for download to finish
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Manifest download: finished
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Download failed: http error 0 (client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12)
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Downloading manifest: https://client-update.akamai.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Manifest download: send request
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Manifest download: waiting for download to finish
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Manifest download: finished
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Download failed: http error 0 (client-update.akamai.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12)
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Downloading manifest: https://client-update.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Manifest download: send request
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Manifest download: waiting for download to finish
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Manifest download: finished
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Download failed: http error 0 (client-update.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12)
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] DownloadManifest - exhausted list of download hosts
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] failed to load manifest from buffer.
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Failed to load manifest
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Error: Download failed: http error 0
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Saving metrics to disk (/home/deck/.local/share/Steam/package/steam_client_metrics.bin)
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Error: Failed to determine download location for universe 1
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Verifying installation...
Mar 15 17:26:01 akideck steam[4857]: [2025-03-15 17:26:01] Verifying all executable checksums
Mar 15 17:26:01 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 15 17:26:01 akideck kernel: logitech-hidpp-device 0003:046D:4024.0015: HID++ 2.0 device connected.
Mar 15 17:26:02 akideck steam[4857]: [2025-03-15 17:26:02] Verification complete
Mar 15 17:26:02 akideck steam[4857]: UpdateUI: skip show logo
Mar 15 17:26:02 akideck kwin_x11[4241]: kwin_core: Failed to focus 0x200002 (error 3)
Mar 15 17:26:02 akideck kwin_x11[4241]: kwin_core: XCB error: 3 (BadWindow), sequence: 2820, resource id: 2097154, major code: 129 (SHAPE), minor code: 3 (Combine)
Mar 15 17:26:02 akideck kwin_x11[4241]: kwin_core: XCB error: 3 (BadWindow), sequence: 2821, resource id: 2097154, major code: 129 (SHAPE), minor code: 3 (Combine)
Mar 15 17:26:02 akideck kwin_x11[4241]: kwin_core: XCB error: 3 (BadWindow), sequence: 2836, resource id: 2097154, major code: 129 (SHAPE), minor code: 3 (Combine)
Mar 15 17:26:02 akideck kwin_x11[4241]: kwin_core: XCB error: 3 (BadWindow), sequence: 2837, resource id: 2097154, major code: 129 (SHAPE), minor code: 3 (Combine)
Mar 15 17:26:02 akideck steam[4857]: Steam logging initialized: directory: /home/deck/.local/share/Steam/logs
Mar 15 17:26:03 akideck steam[4857]: XRRGetOutputInfo Workaround: initialized with override: 0 real: 0xf7685370
Mar 15 17:26:03 akideck steam[4857]: XRRGetCrtcInfo Workaround: initialized with override: 0 real: 0xf7683cc0
Mar 15 17:26:03 akideck steam[4857]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/entry:70: error: unexpected identifier 'direction', expected character '}'
Mar 15 17:26:03 akideck steam[4857]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/styles:36: error: invalid string constant "combobox_entry", expected valid string constant
Mar 15 17:26:03 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n"
Mar 15 17:26:03 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:03 akideck steam[4857]: 03/15 17:26:03 minidumps folder is set to /tmp/dumps
Mar 15 17:26:03 akideck steam[4857]: 03/15 17:26:03 Init: Installing breakpad exception handler for appid(steamsysinfo)/version(1741737356)/tid(4925)
Mar 15 17:26:03 akideck steam[4857]: Running query: 1 - GpuTopology
Mar 15 17:26:03 akideck steam[4857]: Response: gpu_topology {
Mar 15 17:26:03 akideck steam[4857]:   gpus {
Mar 15 17:26:03 akideck steam[4857]:     id: 1
Mar 15 17:26:03 akideck steam[4857]:     name: "AMD Custom GPU 0932 (RADV VANGOGH)"
Mar 15 17:26:03 akideck steam[4857]:     vram_size_bytes: 6397714432
Mar 15 17:26:03 akideck steam[4857]:     driver_id: k_EGpuDriverId_MesaRadv
Mar 15 17:26:03 akideck steam[4857]:     driver_version_major: 24
Mar 15 17:26:03 akideck steam[4857]:     driver_version_minor: 2
Mar 15 17:26:03 akideck steam[4857]:     driver_version_patch: 99
Mar 15 17:26:03 akideck steam[4857]:   }
Mar 15 17:26:03 akideck steam[4857]:   default_gpu_id: 1
Mar 15 17:26:03 akideck steam[4857]: }
Mar 15 17:26:03 akideck steam[4857]: Exit code: 0
Mar 15 17:26:03 akideck steam[4857]: Saving response to: /tmp/steamDKNlgl - 58 bytes
Mar 15 17:26:03 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n"
Mar 15 17:26:03 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:03 akideck steamwebhelper[4948]: steamwebhelper.sh[4939]: Using supervisor /home/deck/.steam/root/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 15 17:26:03 akideck steamwebhelper[4948]: steamwebhelper.sh[4939]: Starting steamwebhelper under bootstrap sniper steam runtime via /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper.sh
Mar 15 17:26:03 akideck steamwebhelper[4948]: steamwebhelper.sh[4939]: CEF sandbox already disabled
Mar 15 17:26:03 akideck steamwebhelper[4948]: steamwebhelper.sh[4939]: Starting steamwebhelper with Sniper steam runtime at /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper/_v2-entry-point
Mar 15 17:26:04 akideck rtkit-daemon[1455]: Recovering from system lockup, not allowing further RT threads.
Mar 15 17:26:04 akideck systemd[1]: efi.automount: Got automount request for /efi, triggered by 871 (systemd-logind)
Mar 15 17:26:04 akideck rtkit-daemon[1455]: Recovering from system lockup, not allowing further RT threads.
Mar 15 17:26:04 akideck systemd[1]: Mounting /efi...
Mar 15 17:26:04 akideck systemd[1]: Mounted /efi.
Mar 15 17:26:04 akideck pkexec[5021]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:26:04 akideck pkexec[5021]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 2]
Mar 15 17:26:04 akideck pkexec[5030]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:26:04 akideck pkexec[5030]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 4]
Mar 15 17:26:04 akideck steam[4857]: Steam Runtime Launch Service: starting steam-runtime-launcher-service
Mar 15 17:26:04 akideck steam[4857]: Steam Runtime Launch Service: steam-runtime-launcher-service is running pid 5043
Mar 15 17:26:04 akideck steam[4857]: bus_name=com.steampowered.PressureVessel.LaunchAlongsideSteam
Mar 15 17:26:05 akideck steamwebhelper[4948]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 15 17:26:05 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0014/0003:046D:4024.0015/power_supply/hidpp_battery_1
Mar 15 17:26:05 akideck steamwebhelper[4948]: exec ./steamwebhelper -nocrashdialog -lang=en_US -cachedir=/home/deck/.local/share/Steam/config/htmlcache -steampid=4892 -buildid=1741737356 -steamid=0 -logdir=/home/deck/.local/share/Steam/logs -uimode=7 -startcount=0 -steamdeck -steamuniverse=Public -realm=Global -clientui=/home/deck/.local/share/Steam/clientui -steampath=/home/deck/.local/share/Steam/ubuntu12_32/steam -launcher=0 -no-restart-on-ui-mode-change --valve-enable-site-isolation --enable-smooth-scrolling --no-sandbox --password-store=basic --log-file=/home/deck/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --enable-features=PlatformHEVCDecoderSupport --disable-features=SpareRendererForSitePerProcess,DcheckIsFatal,ValveFFmpegAllowLowDelayHEVC
Mar 15 17:26:06 akideck steam[4857]: [2025-03-15 17:26:06] Error: Failed to determine download location for universe 1
Mar 15 17:26:06 akideck kernel: input: Microsoft X-Box 360 pad 0 as /devices/virtual/input/input42
Mar 15 17:26:06 akideck sddm-helper-start-x11user[4108]: "(II) config/udev: Adding input device Microsoft X-Box 360 pad 0 (/dev/input/js0)\n"
Mar 15 17:26:06 akideck sddm-helper-start-x11user[4108]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 15 17:26:06 akideck sddm-helper-start-x11user[4108]: "(II) config/udev: Adding input device Microsoft X-Box 360 pad 0 (/dev/input/event8)\n"
Mar 15 17:26:06 akideck sddm-helper-start-x11user[4108]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 15 17:26:07 akideck systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 5174 (steamwebhelper)
Mar 15 17:26:07 akideck systemd[1]: Mounting Arbitrary Executable File Formats File System...
Mar 15 17:26:07 akideck systemd[1]: Mounted Arbitrary Executable File Formats File System.
Mar 15 17:26:08 akideck systemd[1]: dbus-:1.3-org.kde.kded.smart@0.service: Deactivated successfully.
Mar 15 17:26:08 akideck systemd[1]: dbus-:1.3-org.kde.powerdevil.discretegpuhelper@0.service: Deactivated successfully.
Mar 15 17:26:08 akideck systemd[1]: dbus-:1.3-org.kde.powerdevil.chargethresholdhelper@0.service: Deactivated successfully.
Mar 15 17:26:08 akideck systemd[1]: dbus-:1.3-org.kde.powerdevil.backlighthelper@0.service: Deactivated successfully.
Mar 15 17:26:17 akideck plasmashell[4325]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Mar 15 17:26:17 akideck plasmashell[4325]: kf.kunitconversion: currency conversion table update has no network connection, abort update
Mar 15 17:26:17 akideck plasmashell[4325]: org.kde.plasma.runner.bookmarks: No default firefox profile found
Mar 15 17:26:18 akideck systemd[1202]: Starting KRunner provider for baloo file indexer...
Mar 15 17:26:19 akideck systemd[1202]: Started KRunner provider for baloo file indexer.
Mar 15 17:26:19 akideck systemd[1]: Starting Locale Service...
Mar 15 17:26:19 akideck systemd[1]: Started Locale Service.
Mar 15 17:26:19 akideck systemd[1]: Reached target User and Group Name Lookups.
Mar 15 17:26:19 akideck systemd[1202]: Started Konsole - Terminal.
Mar 15 17:26:19 akideck systemd[1]: Starting Accounts Service...
Mar 15 17:26:20 akideck accounts-daemon[5381]: started daemon version 23.13.0
Mar 15 17:26:20 akideck systemd[1]: Started Accounts Service.
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.mozilla.firefox.Locale/x86_64/stable is already installed: No such ref 'runtime/org.mozilla.firefox.Locale/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.krita.Locale/x86_64/stable is already installed: No such ref 'runtime/org.kde.krita.Locale/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.Platform/x86_64/5.15-24.08 is already installed: No such ref 'runtime/org.kde.Platform/x86_64/5.15-24.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.Platform.Locale/x86_64/5.15-24.08 is already installed: No such ref 'runtime/org.kde.Platform.Locale/x86_64/5.15-24.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.gtk.Gtk3theme.Breeze/x86_64/3.22 is already installed: No such ref 'runtime/org.gtk.Gtk3theme.Breeze/x86_64/3.22' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.gnome.Platform/x86_64/46 is already installed: No such ref 'runtime/org.gnome.Platform/x86_64/46' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.gnome.Platform.Locale/x86_64/46 is already installed: No such ref 'runtime/org.gnome.Platform.Locale/x86_64/46' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform/x86_64/24.08 is already installed: No such ref 'runtime/org.freedesktop.Platform/x86_64/24.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform/x86_64/23.08 is already installed: No such ref 'runtime/org.freedesktop.Platform/x86_64/23.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.openh264/x86_64/2.4.1 is already installed: No such ref 'runtime/org.freedesktop.Platform.openh264/x86_64/2.4.1' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.openh264/x86_64/2.2.0 is already installed: No such ref 'runtime/org.freedesktop.Platform.openh264/x86_64/2.2.0' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.ffmpeg-full/x86_64/23.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.ffmpeg-full/x86_64/23.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.Locale/x86_64/24.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.Locale/x86_64/24.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.Locale/x86_64/23.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.Locale/x86_64/23.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/24.08extra is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/24.08extra' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/24.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/24.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/23.08-extra is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/23.08-extra' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/23.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/23.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.LinuxAudio.Plugins.swh/x86_64/23.08 is already installed: No such ref 'runtime/org.freedesktop.LinuxAudio.Plugins.swh/x86_64/23.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.LinuxAudio.Plugins.TAP/x86_64/23.08 is already installed: No such ref 'runtime/org.freedesktop.LinuxAudio.Plugins.TAP/x86_64/23.08' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.blender.Blender.Locale/x86_64/stable is already installed: No such ref 'runtime/org.blender.Blender.Locale/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since runtime/org.blender.Blender.Codecs/x86_64/stable is already installed: No such ref 'runtime/org.blender.Blender.Codecs/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since app/org.mozilla.firefox/x86_64/stable is already installed: No such ref 'app/org.mozilla.firefox/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since app/org.kde.krita/x86_64/stable is already installed: No such ref 'app/org.kde.krita/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since app/org.gimp.GIMP/x86_64/stable is already installed: No such ref 'app/org.gimp.GIMP/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since app/org.blender.Blender/x86_64/stable is already installed: No such ref 'app/org.blender.Blender/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since app/info.mumble.Mumble/x86_64/stable is already installed: No such ref 'app/info.mumble.Mumble/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since app/com.spotify.Client/x86_64/stable is already installed: No such ref 'app/com.spotify.Client/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since app/com.github.k4zmu2a.spacecadetpinball/x86_64/stable is already installed: No such ref 'app/com.github.k4zmu2a.spacecadetpinball/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck DiscoverNotifie[4645]: Warning: Treating remote fetch error as non-fatal since app/com.discordapp.Discord/x86_64/stable is already installed: No such ref 'app/com.discordapp.Discord/x86_64/stable' in remote flathub
Mar 15 17:26:20 akideck systemd[1202]: Started app-org.kde.konsole-5380.scope.
Mar 15 17:26:27 akideck steam[4857]: Desktop state changed: desktop: { pos:    0,   0 size: 1280, 800 } primary: { pos:    0,   0 size: 1280, 800 }
Mar 15 17:26:27 akideck steam[4857]: Caching cursor image for blank, size 16x16, serial 59, cache size = 0
Mar 15 17:26:27 akideck kded6[4240]: Registering ":1.90/org/ayatana/NotificationItem/steam" to system tray
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/01%20Exposing%20Hostile.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/02%20Valve%20Alyx.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/03%20Coetaneous%20Entanglement.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/04%20Construction%20Strider.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/05%20Engage%20Quell%20Inquire.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/06%20Insubordinate%20Relocation.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/07%20City%2017%20Strider.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/08%20Thirty%20Seven%20After%20Six.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/09%20From%20Here%20to%20There%20in%20Under%20a%20Second.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/10%20Quaranta%20Giorni.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/11%20Xombies.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/12%20Only%20One.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/13%20Matter%20of%20Perspective.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/14%20Severed%20from%20the%20Vortessence.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/15%20Is%20Or%20Will%20Be.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/16%20What%20Did%20it%20Taste%20Like.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/17%20I%20Love%20This%20Gun.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/18%20Extra%20Dimensional%20Darkness.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/19%20Quantum%20Cubicles.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/20%20Infestation%20Control.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/21%20Deployed%20and%20Designated%20to%20Prosecute.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/22%20B3PbIBONACHOCTb.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/23%20Anti-Citizen.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/24%20Tri-Vector%20Pre-Reverberation.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/25%20Harsh%20Industrial%20Train%20Crash.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/26%20The%20Advisors.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/27%20Prisoner%20Pod.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/28-Charger.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/29-Scanning%20Hostile%20Biodats.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/30-Substation.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/31-Alien%20Flora.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/32-Alien%20Fauna.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/33-Requiem%20Vortessence.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/34-Lightning%20Dog.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/35-Arachnophobia.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/36-Rabid%20Lightning.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/37-Extract.%20Resonate.%20Isolate.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/38-Level-5%20Anti-Civil%20Activities.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/39-Vortessence%20Lux.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/40-Hacking.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/41-Outbreak%20is%20Uncontained.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/42-Processing%20Tripmines.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/43-Xenfestation%20Control.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/44-Sunset%20Vault.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/45-Ear%20Like%20Mozart.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/46-Jeff.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/47-Elevatormuzik.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/48-Trash%20Compactor%20Waltz.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/49-Quantum%20Antlion%20Tunnel.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/50-Cats.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/51-Beasts%20of%20Prey.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/52-Insects%20and%20Reptiles.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/53-The%20Last%20Substation.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/54-Trans%20Human%20Crossfire.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/55-Let%20Me%20Talk%20to%20Your%20Super-Advisor.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/56-Terin%20%236.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/57-Infestation%20Ambience.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/58-A%20Gentle%20Docking.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/59-Overload%20Protocol.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/60-Cauterizer.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/61-P1.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/62-Gravity%20Perforation%20Detail.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/63-Reality%20Disruption%20Pulse.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/64-Icosahedron.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/65-Supersymmetry%20Dilation.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/66-Stringularity.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/67-Ekpyrosis.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/68-Alice%20Matter.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/69-Gravity%20Grenade%20Conflict.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/70-Superimposition.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/71-Consequences.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck steam[4857]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/72-HIRE.flac
Mar 15 17:26:27 akideck steam[4857]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:26:27 akideck plasmashell[4325]: qt.gui.imageio: libpng warning: iCCP: known incorrect sRGB profile
Mar 15 17:26:28 akideck steam[4857]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 15 17:26:29 akideck sudo[5504]:     deck : TTY=pts/1 ; PWD=/home/deck ; USER=root ; COMMAND=/usr/bin/dmesg
Mar 15 17:26:29 akideck sudo[5504]: pam_unix(sudo:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:26:29 akideck sudo[5504]: pam_unix(sudo:session): session closed for user root
Mar 15 17:26:29 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:29 akideck steam[4857]: fsync: up and running.
Mar 15 17:26:29 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:29 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:30 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:30 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:30 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:31 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:31 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:31 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:31 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n"
Mar 15 17:26:31 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:31 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n"
Mar 15 17:26:31 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:31 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n"
Mar 15 17:26:31 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:31 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:31 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:31 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:32 akideck steam[4857]: Fossilize INFO: Overriding serialization path: "/home/deck/.local/share/Steam/shader_cache_temp_dir_d3d11_64/fozpipelinesv6/steamapprun_pipeline_cache".
Mar 15 17:26:34 akideck steam[4857]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 15 17:26:34 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:34 akideck steam[4857]: fsync: up and running.
Mar 15 17:26:34 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:34 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:34 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:34 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:35 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:36 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:36 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:36 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n"
Mar 15 17:26:36 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:36 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n"
Mar 15 17:26:36 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:36 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n"
Mar 15 17:26:36 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:36 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n"
Mar 15 17:26:36 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:36 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:36 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:36 akideck steam[4857]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 15 17:26:37 akideck steam[4857]: Fossilize INFO: Overriding serialization path: "/home/deck/.local/share/Steam/shader_cache_temp_dir_d3d12_64/fozpipelinesv6/steamapprun_pipeline_cache".
Mar 15 17:26:45 akideck systemd-logind[871]: Power key pressed short.
Mar 15 17:26:45 akideck systemd-logind[871]: The system will suspend now!
Mar 15 17:26:45 akideck wakehook[1483]: [wakehook] 1742084805.426249: Going to sleep? 1
Mar 15 17:26:45 akideck NetworkManager[1062]: <info>  [1742084805.4263] manager: sleep: sleep requested (sleeping: no  enabled: yes)
Mar 15 17:26:45 akideck NetworkManager[1062]: <info>  [1742084805.4264] device (/net/connman/iwd/0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 15 17:26:45 akideck NetworkManager[1062]: <info>  [1742084805.4271] device (wlan0): state change: unavailable -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 15 17:26:45 akideck NetworkManager[1062]: <info>  [1742084805.4280] manager: NetworkManager state is now ASLEEP
Mar 15 17:26:45 akideck systemd[1]: Reached target Sleep.
Mar 15 17:26:45 akideck systemd[1]: Starting System Suspend...
Mar 15 17:26:45 akideck systemd[1]: user.slice: Unit now frozen.
Mar 15 17:26:45 akideck systemd[1]: user-1000.slice: Unit now frozen-by-parent.
Mar 15 17:26:45 akideck systemd-sleep[5984]: Successfully froze unit 'user.slice'.
Mar 15 17:26:45 akideck systemd[1]: session-3.scope: Unit now frozen-by-parent.
Mar 15 17:26:45 akideck systemd[1]: user@1000.service: Unit now frozen-by-parent.
Mar 15 17:26:45 akideck systemd-sleep[5984]: Performing sleep operation 'suspend'...
Mar 15 17:26:45 akideck kernel: PM: suspend entry (deep)
Mar 15 17:26:45 akideck kernel: Filesystems sync: 0.073 seconds
Mar 15 17:26:57 akideck kernel: Freezing user space processes
Mar 15 17:26:57 akideck kernel: Freezing user space processes completed (elapsed 0.001 seconds)
Mar 15 17:26:57 akideck kernel: OOM killer disabled.
Mar 15 17:26:57 akideck kernel: Freezing remaining freezable tasks
Mar 15 17:26:57 akideck kernel: Freezing remaining freezable tasks completed (elapsed 0.000 seconds)
Mar 15 17:26:57 akideck kernel: printk: Suspending console(s) (use no_console_suspend to debug)
Mar 15 17:26:57 akideck kernel: ACPI: EC: interrupt blocked
Mar 15 17:26:57 akideck kernel: ACPI: PM: Preparing to enter system sleep state S3
Mar 15 17:26:57 akideck kernel: ACPI: EC: event blocked
Mar 15 17:26:57 akideck kernel: ACPI: EC: EC stopped
Mar 15 17:26:57 akideck kernel: ACPI: PM: Saving platform NVS memory
Mar 15 17:26:57 akideck kernel: Disabling non-boot CPUs ...
Mar 15 17:26:57 akideck kernel: smpboot: CPU 7 is now offline
Mar 15 17:26:57 akideck kernel: smpboot: CPU 6 is now offline
Mar 15 17:26:57 akideck kernel: smpboot: CPU 5 is now offline
Mar 15 17:26:57 akideck kernel: smpboot: CPU 4 is now offline
Mar 15 17:26:57 akideck kernel: smpboot: CPU 3 is now offline
Mar 15 17:26:57 akideck kernel: smpboot: CPU 2 is now offline
Mar 15 17:26:57 akideck kernel: smpboot: CPU 1 is now offline
Mar 15 17:26:57 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP off
Mar 15 17:26:57 akideck kernel: ACPI: PM: Low-level resume complete
Mar 15 17:26:57 akideck kernel: ACPI: EC: EC started
Mar 15 17:26:57 akideck kernel: ACPI: PM: Restoring platform NVS memory
Mar 15 17:26:57 akideck kernel: LVT offset 0 assigned for vector 0x400
Mar 15 17:26:57 akideck kernel: Enabling non-boot CPUs ...
Mar 15 17:26:57 akideck kernel: smpboot: Booting Node 0 Processor 1 APIC 0x1
Mar 15 17:26:57 akideck kernel: ACPI: \_SB_.PLTF.C001: Found 3 idle states
Mar 15 17:26:57 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
Mar 15 17:26:57 akideck kernel: CPU1 is up
Mar 15 17:26:57 akideck kernel: smpboot: Booting Node 0 Processor 2 APIC 0x2
Mar 15 17:26:57 akideck kernel: ACPI: \_SB_.PLTF.C002: Found 3 idle states
Mar 15 17:26:57 akideck kernel: CPU2 is up
Mar 15 17:26:57 akideck kernel: smpboot: Booting Node 0 Processor 3 APIC 0x3
Mar 15 17:26:57 akideck kernel: ACPI: \_SB_.PLTF.C003: Found 3 idle states
Mar 15 17:26:57 akideck kernel: CPU3 is up
Mar 15 17:26:57 akideck kernel: smpboot: Booting Node 0 Processor 4 APIC 0x4
Mar 15 17:26:57 akideck kernel: ACPI: \_SB_.PLTF.C004: Found 3 idle states
Mar 15 17:26:57 akideck kernel: CPU4 is up
Mar 15 17:26:57 akideck kernel: smpboot: Booting Node 0 Processor 5 APIC 0x5
Mar 15 17:26:57 akideck kernel: ACPI: \_SB_.PLTF.C005: Found 3 idle states
Mar 15 17:26:57 akideck kernel: CPU5 is up
Mar 15 17:26:57 akideck kernel: smpboot: Booting Node 0 Processor 6 APIC 0x6
Mar 15 17:26:57 akideck kernel: ACPI: \_SB_.PLTF.C006: Found 3 idle states
Mar 15 17:26:57 akideck kernel: CPU6 is up
Mar 15 17:26:57 akideck kernel: smpboot: Booting Node 0 Processor 7 APIC 0x7
Mar 15 17:26:57 akideck kernel: ACPI: \_SB_.PLTF.C007: Found 3 idle states
Mar 15 17:26:57 akideck kernel: CPU7 is up
Mar 15 17:26:57 akideck kernel: ACPI: PM: Waking up from system sleep state S3
Mar 15 17:26:57 akideck kernel: ACPI: EC: interrupt unblocked
Mar 15 17:26:57 akideck kernel: mhi mhi0: Requested to power ON
Mar 15 17:26:57 akideck kernel: mhi mhi0: Power on setup success
Mar 15 17:26:57 akideck kernel: mhi mhi0: Wait for device to enter SBL or Mission mode
Mar 15 17:26:57 akideck kernel: ACPI: EC: event unblocked
Mar 15 17:26:57 akideck kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000F43FC00000).
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: PSP is resuming...
Mar 15 17:26:57 akideck kernel: max98388 i2c-ADS8388:00: Reset completed (retry:0)
Mar 15 17:26:57 akideck kernel: max98388 i2c-ADS8388:01: Reset completed (retry:0)
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: reserve 0xa00000 from 0xf43e000000 for PSP TMR
Mar 15 17:26:57 akideck kernel: ath11k_pci 0000:03:00.0: chip_id 0x12 chip_family 0xb board_id 0x309 soc_id 0x400c1211
Mar 15 17:26:57 akideck kernel: ath11k_pci 0000:03:00.0: fw_version 0x110e7fff fw_build_timestamp 2024-05-28 15:10 fw_build_id WLAN.HSP.1.1-03926.13-QCAHSPSWPL_V2_SILICONZ_CE-2.52297.6
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resuming...
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: dpm has been disabled
Mar 15 17:26:57 akideck kernel: nvme nvme0: 8/0/0 default/read/poll queues
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resumed successfully!
Mar 15 17:26:57 akideck kernel: [drm] DMUB hardware initialized: version=0x0300000A
Mar 15 17:26:57 akideck kernel: usb 3-3: reset full-speed USB device number 2 using xhci_hcd
Mar 15 17:26:57 akideck kernel: usb 1-1: reset high-speed USB device number 12 using xhci_hcd
Mar 15 17:26:57 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 15 17:26:57 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 15 17:26:57 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 15 17:26:57 akideck kernel: [drm] kiq ring mec 2 pipe 1 q 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
Mar 15 17:26:57 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Mar 15 17:26:57 akideck kernel: usb 2-1: reset SuperSpeed USB device number 2 using xhci_hcd
Mar 15 17:26:57 akideck kernel: usb 1-1.4: reset full-speed USB device number 13 using xhci_hcd
Mar 15 17:26:57 akideck kernel: usb 2-1.3: reset SuperSpeed USB device number 3 using xhci_hcd
Mar 15 17:26:57 akideck kernel: OOM killer enabled.
Mar 15 17:26:57 akideck kernel: Restarting tasks ... done.
Mar 15 17:26:57 akideck kernel: random: crng reseeded on system resumption
Mar 15 17:26:57 akideck kernel: usb 1-1.5: USB disconnect, device number 14
Mar 15 17:26:57 akideck kernel: PM: suspend exit
Mar 15 17:26:57 akideck systemd-logind[871]: Power key pressed short.
Mar 15 17:26:57 akideck wakehook[1483]: [wakehook] 1742084817.39085: Going to sleep? 0
Mar 15 17:26:57 akideck wakehook[1483]: [wakehook] 1742084817.39521: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (1/5)
Mar 15 17:26:57 akideck bluetoothd[803]: Controller resume with wake event 0x0
Mar 15 17:26:57 akideck systemd-resolved[556]: Clock change detected. Flushing caches.
Mar 15 17:26:57 akideck systemd-sleep[5984]: System returned from sleep operation 'suspend'.
Mar 15 17:26:57 akideck systemd[1]: user.slice: Unit now thawed.
Mar 15 17:26:57 akideck systemd[1]: user-1000.slice: Unit now thawed.
Mar 15 17:26:57 akideck systemd[1]: session-3.scope: Unit now thawed.
Mar 15 17:26:57 akideck systemd[1]: user@1000.service: Unit now thawed.
Mar 15 17:26:57 akideck systemd-sleep[5984]: Successfully thawed unit 'user.slice'.
Mar 15 17:26:57 akideck sddm-helper-start-x11user[4108]: "[dix] EventToCore: Not implemented yet \n"
Mar 15 17:26:57 akideck sddm-helper-start-x11user[4108]: "[dix] EventToCore: Not implemented yet \n"
Mar 15 17:26:57 akideck sddm-helper-start-x11user[4108]: "[dix] EventToCore: Not implemented yet \n[dix] EventToCore: Not implemented yet \n"
Mar 15 17:26:57 akideck sddm-helper-start-x11user[4108]: "[dix] EventToCore: Not implemented yet \n[dix] EventToCore: Not implemented yet \n"
Mar 15 17:26:57 akideck systemd[1]: systemd-suspend.service: Deactivated successfully.
Mar 15 17:26:57 akideck systemd[1]: Finished System Suspend.
Mar 15 17:26:57 akideck systemd[1]: Stopped target Sleep.
Mar 15 17:26:57 akideck systemd[1]: Reached target Suspend.
Mar 15 17:26:57 akideck systemd-logind[871]: Operation 'suspend' finished.
Mar 15 17:26:57 akideck systemd-resolved[556]: Closing all remaining TCP connections.
Mar 15 17:26:57 akideck systemd-resolved[556]: Resetting learnt feature levels on all servers.
Mar 15 17:26:57 akideck systemd[1]: Stopped target Suspend.
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.0409] manager: sleep: wake requested (sleeping: yes  enabled: yes)
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.0410] device (/net/connman/iwd/0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.0419] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 15 17:26:57 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:26:57 akideck kdeconnectd[4629]: 2025-03-15T17:26:57 default: Error sending UDP packet: QAbstractSocket::NetworkError
Mar 15 17:26:57 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:26:57 akideck steam[4857]: [2025-03-15 17:26:57] Error: Failed to determine download location for universe 1
Mar 15 17:26:57 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb2/2-1
Mar 15 17:26:57 akideck iwd[1201]: event: state, old: disconnected, new: autoconnect_quick
Mar 15 17:26:57 akideck kdeconnectd[4629]: 2025-03-15T17:26:57 kdeconnect.core: Failed to open any MDNS client sockets
Mar 15 17:26:57 akideck kdeconnectd[4629]: 2025-03-15T17:26:57 kdeconnect.core: Failed to open any MDNS server sockets
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.0926] manager: NetworkManager state is now DISCONNECTED
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.0929] device (/net/connman/iwd/0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
Mar 15 17:26:57 akideck systemd-logind[871]: The system will suspend now!
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.1134] manager: sleep: sleep requested (sleeping: no  enabled: yes)
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.1139] device (/net/connman/iwd/0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 15 17:26:57 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:26:57 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb2/2-1
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.1348] device (wlan0): state change: unavailable -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 15 17:26:57 akideck iwd[1201]: Could not register frame watch type 00d0: -114
Mar 15 17:26:57 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4
Mar 15 17:26:57 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4
Mar 15 17:26:57 akideck iwd[1201]: event: state, old: autoconnect_quick, new: autoconnect_full
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.2885] manager: NetworkManager state is now ASLEEP
Mar 15 17:26:57 akideck NetworkManager[1062]: <info>  [1742084817.2890] device (wlan0): new IWD device state is disconnected
Mar 15 17:26:57 akideck NetworkManager[1062]: <error> [1742084817.2896] device (wlan0): Station.GetOrderedNetworks failed: GDBus.Error:org.freedesktop.DBus.Error.NotFound: No matching method found
Mar 15 17:26:57 akideck NetworkManager[1062]: <error> [1742084817.2896] device (wlan0): Station.GetOrderedNetworks failed: GDBus.Error:org.freedesktop.DBus.Error.NotFound: No matching method found
Mar 15 17:26:57 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 15 17:26:57 akideck systemd[1]: Reached target Sleep.
Mar 15 17:26:57 akideck systemd[1]: Starting System Suspend...
Mar 15 17:26:57 akideck systemd[1]: session-3.scope: Unit now frozen-by-parent.
Mar 15 17:26:57 akideck systemd[1]: user.slice: Unit now frozen.
Mar 15 17:26:57 akideck systemd[1]: user-1000.slice: Unit now frozen-by-parent.
Mar 15 17:26:57 akideck systemd-sleep[6063]: Successfully froze unit 'user.slice'.
Mar 15 17:26:57 akideck systemd[1]: user@1000.service: Unit now frozen-by-parent.
Mar 15 17:26:57 akideck systemd-sleep[6063]: Performing sleep operation 'suspend'...
Mar 15 17:26:57 akideck kernel: PM: suspend entry (deep)
Mar 15 17:26:57 akideck kernel: usb 1-1.5: new high-speed USB device number 15 using xhci_hcd
Mar 15 17:26:57 akideck kernel: usb 1-1.5: New USB device found, idVendor=291a, idProduct=8346, bcdDevice= 0.01
Mar 15 17:26:57 akideck kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:26:57 akideck kernel: usb 1-1.5: Product: Anker USB-C Hub Device 
Mar 15 17:26:57 akideck kernel: usb 1-1.5: Manufacturer: Anker Innovations Limit
Mar 15 17:26:57 akideck kernel: usb 1-1.5: SerialNumber: 0000000000000001
Mar 15 17:27:10 akideck kernel: Filesystems sync: 0.876 seconds
Mar 15 17:27:10 akideck kernel: Freezing user space processes
Mar 15 17:27:10 akideck kernel: Freezing user space processes completed (elapsed 0.001 seconds)
Mar 15 17:27:10 akideck kernel: OOM killer disabled.
Mar 15 17:27:10 akideck kernel: Freezing remaining freezable tasks
Mar 15 17:27:10 akideck kernel: Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
Mar 15 17:27:10 akideck kernel: printk: Suspending console(s) (use no_console_suspend to debug)
Mar 15 17:27:10 akideck kernel: ACPI: EC: interrupt blocked
Mar 15 17:27:10 akideck kernel: ACPI: PM: Preparing to enter system sleep state S3
Mar 15 17:27:10 akideck kernel: ACPI: EC: event blocked
Mar 15 17:27:10 akideck kernel: ACPI: EC: EC stopped
Mar 15 17:27:10 akideck kernel: ACPI: PM: Saving platform NVS memory
Mar 15 17:27:10 akideck kernel: Disabling non-boot CPUs ...
Mar 15 17:27:10 akideck kernel: smpboot: CPU 7 is now offline
Mar 15 17:27:10 akideck kernel: smpboot: CPU 6 is now offline
Mar 15 17:27:10 akideck kernel: smpboot: CPU 5 is now offline
Mar 15 17:27:10 akideck kernel: smpboot: CPU 4 is now offline
Mar 15 17:27:10 akideck kernel: smpboot: CPU 3 is now offline
Mar 15 17:27:10 akideck kernel: smpboot: CPU 2 is now offline
Mar 15 17:27:10 akideck kernel: smpboot: CPU 1 is now offline
Mar 15 17:27:10 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP off
Mar 15 17:27:10 akideck kernel: ACPI: PM: Low-level resume complete
Mar 15 17:27:10 akideck kernel: ACPI: EC: EC started
Mar 15 17:27:10 akideck kernel: ACPI: PM: Restoring platform NVS memory
Mar 15 17:27:10 akideck kernel: LVT offset 0 assigned for vector 0x400
Mar 15 17:27:10 akideck kernel: Enabling non-boot CPUs ...
Mar 15 17:27:10 akideck kernel: smpboot: Booting Node 0 Processor 1 APIC 0x1
Mar 15 17:27:10 akideck kernel: ACPI: \_SB_.PLTF.C001: Found 3 idle states
Mar 15 17:27:10 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
Mar 15 17:27:10 akideck kernel: CPU1 is up
Mar 15 17:27:10 akideck kernel: smpboot: Booting Node 0 Processor 2 APIC 0x2
Mar 15 17:27:10 akideck kernel: ACPI: \_SB_.PLTF.C002: Found 3 idle states
Mar 15 17:27:10 akideck kernel: CPU2 is up
Mar 15 17:27:10 akideck kernel: smpboot: Booting Node 0 Processor 3 APIC 0x3
Mar 15 17:27:10 akideck kernel: ACPI: \_SB_.PLTF.C003: Found 3 idle states
Mar 15 17:27:10 akideck kernel: CPU3 is up
Mar 15 17:27:10 akideck kernel: smpboot: Booting Node 0 Processor 4 APIC 0x4
Mar 15 17:27:10 akideck kernel: ACPI: \_SB_.PLTF.C004: Found 3 idle states
Mar 15 17:27:10 akideck kernel: CPU4 is up
Mar 15 17:27:10 akideck kernel: smpboot: Booting Node 0 Processor 5 APIC 0x5
Mar 15 17:27:10 akideck kernel: ACPI: \_SB_.PLTF.C005: Found 3 idle states
Mar 15 17:27:10 akideck kernel: CPU5 is up
Mar 15 17:27:10 akideck kernel: smpboot: Booting Node 0 Processor 6 APIC 0x6
Mar 15 17:27:10 akideck kernel: ACPI: \_SB_.PLTF.C006: Found 3 idle states
Mar 15 17:27:10 akideck kernel: CPU6 is up
Mar 15 17:27:10 akideck kernel: smpboot: Booting Node 0 Processor 7 APIC 0x7
Mar 15 17:27:10 akideck kernel: ACPI: \_SB_.PLTF.C007: Found 3 idle states
Mar 15 17:27:10 akideck kernel: CPU7 is up
Mar 15 17:27:10 akideck kernel: ACPI: PM: Waking up from system sleep state S3
Mar 15 17:27:10 akideck kernel: ACPI: EC: interrupt unblocked
Mar 15 17:27:10 akideck kernel: mhi mhi0: Requested to power ON
Mar 15 17:27:10 akideck kernel: mhi mhi0: Power on setup success
Mar 15 17:27:10 akideck kernel: mhi mhi0: Wait for device to enter SBL or Mission mode
Mar 15 17:27:10 akideck kernel: ACPI: EC: event unblocked
Mar 15 17:27:10 akideck kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000F43FC00000).
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: PSP is resuming...
Mar 15 17:27:10 akideck kernel: max98388 i2c-ADS8388:00: Reset completed (retry:0)
Mar 15 17:27:10 akideck kernel: max98388 i2c-ADS8388:01: Reset completed (retry:0)
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: reserve 0xa00000 from 0xf43e000000 for PSP TMR
Mar 15 17:27:10 akideck kernel: ath11k_pci 0000:03:00.0: chip_id 0x12 chip_family 0xb board_id 0x309 soc_id 0x400c1211
Mar 15 17:27:10 akideck kernel: ath11k_pci 0000:03:00.0: fw_version 0x110e7fff fw_build_timestamp 2024-05-28 15:10 fw_build_id WLAN.HSP.1.1-03926.13-QCAHSPSWPL_V2_SILICONZ_CE-2.52297.6
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resuming...
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: dpm has been disabled
Mar 15 17:27:10 akideck kernel: nvme nvme0: 8/0/0 default/read/poll queues
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resumed successfully!
Mar 15 17:27:10 akideck kernel: [drm] DMUB hardware initialized: version=0x0300000A
Mar 15 17:27:10 akideck kernel: usb 3-3: reset full-speed USB device number 2 using xhci_hcd
Mar 15 17:27:10 akideck kernel: usb 1-1: reset high-speed USB device number 12 using xhci_hcd
Mar 15 17:27:10 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 15 17:27:10 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 15 17:27:10 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 15 17:27:10 akideck kernel: [drm] kiq ring mec 2 pipe 1 q 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
Mar 15 17:27:10 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Mar 15 17:27:10 akideck kernel: usb 2-1: reset SuperSpeed USB device number 2 using xhci_hcd
Mar 15 17:27:10 akideck kernel: usb 1-1.4: reset full-speed USB device number 13 using xhci_hcd
Mar 15 17:27:10 akideck kernel: usb 2-1.3: reset SuperSpeed USB device number 3 using xhci_hcd
Mar 15 17:27:10 akideck kernel: OOM killer enabled.
Mar 15 17:27:10 akideck kernel: Restarting tasks ... 
Mar 15 17:27:10 akideck kernel: usb 1-1.5: USB disconnect, device number 15
Mar 15 17:27:10 akideck kernel: done.
Mar 15 17:27:10 akideck kernel: random: crng reseeded on system resumption
Mar 15 17:27:10 akideck kernel: PM: suspend exit
Mar 15 17:27:10 akideck systemd-resolved[556]: Clock change detected. Flushing caches.
Mar 15 17:27:10 akideck bluetoothd[803]: Controller resume with wake event 0x0
Mar 15 17:27:10 akideck wakehook[1483]: [wakehook] 1742084830.21498: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (2/5)
Mar 15 17:27:10 akideck systemd-sleep[6063]: System returned from sleep operation 'suspend'.
Mar 15 17:27:10 akideck systemd[1]: user@1000.service: Unit now thawed.
Mar 15 17:27:10 akideck systemd[1]: user.slice: Unit now thawed.
Mar 15 17:27:10 akideck sddm-helper-start-x11user[4108]: "(EE) event0  - Power Button: client bug: event processing lagging behind by 3821ms, your system is too slow\n"
Mar 15 17:27:10 akideck systemd[1]: user-1000.slice: Unit now thawed.
Mar 15 17:27:10 akideck systemd[1]: session-3.scope: Unit now thawed.
Mar 15 17:27:10 akideck systemd-sleep[6063]: Successfully thawed unit 'user.slice'.
Mar 15 17:27:10 akideck sddm-helper-start-x11user[4108]: "(EE) event2  - Power Button: client bug: event processing lagging behind by 3806ms, your system is too slow\n(EE) event9  - Logitech K400: client bug: event processing lagging behind by 2221ms, your system is too slow\n"
Mar 15 17:27:10 akideck systemd[1]: systemd-suspend.service: Deactivated successfully.
Mar 15 17:27:10 akideck systemd[1]: Finished System Suspend.
Mar 15 17:27:10 akideck systemd[1]: Stopped target Sleep.
Mar 15 17:27:10 akideck systemd[1]: Reached target Suspend.
Mar 15 17:27:10 akideck systemd[1]: Stopped target Suspend.
Mar 15 17:27:10 akideck systemd-logind[871]: Operation 'suspend' finished.
Mar 15 17:27:10 akideck systemd-resolved[556]: Closing all remaining TCP connections.
Mar 15 17:27:10 akideck systemd-resolved[556]: Resetting learnt feature levels on all servers.
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.0465] manager: sleep: wake requested (sleeping: yes  enabled: yes)
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.0466] device (/net/connman/iwd/0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.0469] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 15 17:27:10 akideck sddm-helper-start-x11user[4108]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 15 17:27:10 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb2/2-1
Mar 15 17:27:10 akideck kdeconnectd[4629]: 2025-03-15T17:27:10 default: Error sending UDP packet: QAbstractSocket::NetworkError
Mar 15 17:27:10 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:27:10 akideck steam[4857]: [2025-03-15 17:27:10] Error: Failed to determine download location for universe 1
Mar 15 17:27:10 akideck iwd[1201]: event: state, old: disconnected, new: autoconnect_quick
Mar 15 17:27:10 akideck kdeconnectd[4629]: 2025-03-15T17:27:10 kdeconnect.core: Failed to open any MDNS client sockets
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.0951] manager: NetworkManager state is now DISCONNECTED
Mar 15 17:27:10 akideck kdeconnectd[4629]: 2025-03-15T17:27:10 kdeconnect.core: Failed to open any MDNS server sockets
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.0955] device (/net/connman/iwd/0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 5826 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5826.1739382549000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 5836 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5836.1739382549000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 5866 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5866.1739382550000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 5893 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5893.1739382550000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 5916 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5916.1739382551000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 5940 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5940.1739382552000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 5964 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5964.1739382552000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 5987 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5987.1739382553000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6010 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6010.1739382554000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6033 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6033.1739382555000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6056 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6056.1739382556000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6079 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6079.1739382557000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6102 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6102.1739382558000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6131 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6131.1739382559000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6154 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6154.1739382560000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6177 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6177.1739382561000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6200 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6200.1739382562000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6223 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6223.1739382563000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/app/extra/share/spotify/spotify" 6246 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6246.1739382565000000.zst"
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/home/deck/.local/share/Steam/ubuntu12_64/steamwebhelper" 4053 "/var/lib/systemd/coredump/core.steamwebhelper.1000.5f333d9cd93f47d3ba59d9dc50265cf1.4053.1739382772000000.zst"
Mar 15 17:27:10 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb2/2-1
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/home/deck/.local/share/Steam/ubuntu12_64/steamwebhelper" 5579 "/var/lib/systemd/coredump/core.steamwebhelper.1000.d46abbdedd9943d18d28ccf811cfa762.5579.1740354829000000.zst"
Mar 15 17:27:10 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:27:10 akideck drkonqi-coredump-processor[4388]: "/home/deck/.local/share/Steam/ubuntu12_32/steam" 9082 "/var/lib/systemd/coredump/core.steam.1000.d46abbdedd9943d18d28ccf811cfa762.9082.1740767285000000.zst"
Mar 15 17:27:10 akideck iwd[1201]: Could not register frame watch type 00d0: -114
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.1372] device (wlan0): new IWD device state is disconnected
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.1373] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', managed-type: 'full')
Mar 15 17:27:10 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4
Mar 15 17:27:10 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4
Mar 15 17:27:10 akideck iwd[1201]: event: connect-info, ssid: The New Lunar Republic, bss: e8:9c:25:49:01:88, signal: -25, load: 29/255
Mar 15 17:27:10 akideck iwd[1201]: event: state, old: autoconnect_quick, new: connecting (auto)
Mar 15 17:27:10 akideck kernel: usb 1-1.5: new high-speed USB device number 16 using xhci_hcd
Mar 15 17:27:10 akideck kernel: usb 1-1.5: New USB device found, idVendor=291a, idProduct=8346, bcdDevice= 0.01
Mar 15 17:27:10 akideck kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:27:10 akideck kernel: usb 1-1.5: Product: Anker USB-C Hub Device 
Mar 15 17:27:10 akideck kernel: usb 1-1.5: Manufacturer: Anker Innovations Limit
Mar 15 17:27:10 akideck kernel: usb 1-1.5: SerialNumber: 0000000000000001
Mar 15 17:27:10 akideck kernel: wlan0: authenticate with e8:9c:25:49:01:88 (local address=e8:8d:a6:77:9a:8c)
Mar 15 17:27:10 akideck kernel: wlan0: send auth to e8:9c:25:49:01:88 (try 1/3)
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.9386] device (wlan0): new IWD device state is connecting
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.9393] device (wlan0): Activation: starting connection 'The New Lunar Republic' (bdd53fc7-001f-41f5-8338-3dcbce226f2c)
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.9401] device (wlan0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.9404] manager: NetworkManager state is now CONNECTING
Mar 15 17:27:10 akideck NetworkManager[1062]: <info>  [1742084830.9406] device (wlan0): state change: prepare -> config (reason 'none', managed-type: 'full')
Mar 15 17:27:10 akideck kernel: wlan0: authenticate with e8:9c:25:49:01:88 (local address=e8:8d:a6:77:9a:8c)
Mar 15 17:27:10 akideck kernel: wlan0: send auth to e8:9c:25:49:01:88 (try 1/3)
Mar 15 17:27:11 akideck kernel: wlan0: authenticated
Mar 15 17:27:11 akideck kernel: wlan0: associate with e8:9c:25:49:01:88 (try 1/3)
Mar 15 17:27:11 akideck wakehook[1483]: [wakehook] 1742084831.21661: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (3/5)
Mar 15 17:27:11 akideck kernel: wlan0: RX AssocResp from e8:9c:25:49:01:88 (capab=0x1011 status=0 aid=17)
Mar 15 17:27:11 akideck kernel: ath11k_pci 0000:03:00.0: mac0-5 cap 9-0-0-8a-40-0
Mar 15 17:27:11 akideck kernel: ath11k_pci 0000:03:00.0: phy0-5 cap c-33-c-80-fd-9
Mar 15 17:27:11 akideck kernel: ath11k_pci 0000:03:00.0: phy6-10 cap 80-8-0-0-0
Mar 15 17:27:11 akideck kernel: ath11k_pci 0000:03:00.0: WMI_VDEV_PARAM_SET_HEMU_MODE 3 0x35
Mar 15 17:27:11 akideck kernel: wlan0: associated
Mar 15 17:27:11 akideck kernel: wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by e8:9c:25:49:01:88
Mar 15 17:27:11 akideck iwd[1201]: event: state, old: connecting (auto), new: connected
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.1102] device (wlan0): new IWD device state is connected
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.1212] device (wlan0): state change: config -> ip-config (reason 'none', managed-type: 'full')
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.1228] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.1342] dhcp4 (wlan0): state changed new lease, address=192.168.0.112, acd pending
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.3427] dhcp4 (wlan0): state changed new lease, address=192.168.0.112
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.3433] policy: set 'The New Lunar Republic' (wlan0) as default for IPv4 routing and DNS
Mar 15 17:27:11 akideck systemd-resolved[556]: wlan0: Bus client set search domain list to: lunarrepublic
Mar 15 17:27:11 akideck systemd-resolved[556]: wlan0: Bus client set default route setting: yes
Mar 15 17:27:11 akideck systemd-resolved[556]: wlan0: Bus client set DNS server list to: 192.168.0.1
Mar 15 17:27:11 akideck avahi-daemon[802]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Mar 15 17:27:11 akideck avahi-daemon[802]: New relevant interface wlan0.IPv4 for mDNS.
Mar 15 17:27:11 akideck avahi-daemon[802]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Mar 15 17:27:11 akideck systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.3738] device (wlan0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
Mar 15 17:27:11 akideck systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.4248] device (wlan0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.4250] device (wlan0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.4255] manager: NetworkManager state is now CONNECTED_SITE
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.4258] device (wlan0): Activation: successful, device activated.
Mar 15 17:27:11 akideck steam[4857]: [2025-03-15 17:27:11] Error: Failed to determine download location for universe 1
Mar 15 17:27:11 akideck steam[4857]: [2025-03-15 17:27:11] Background update loop checking for update. . .
Mar 15 17:27:11 akideck steam[4857]: [2025-03-15 17:27:11] Checking for available updates...
Mar 15 17:27:11 akideck steam[4857]: [2025-03-15 17:27:11] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 15 17:27:11 akideck steam[4857]: [2025-03-15 17:27:11] Manifest download: send request
Mar 15 17:27:11 akideck kernel: usb 1-1: USB disconnect, device number 12
Mar 15 17:27:11 akideck kernel: usb 1-1.4: USB disconnect, device number 13
Mar 15 17:27:11 akideck kernel: usb 1-1.5: USB disconnect, device number 16
Mar 15 17:27:11 akideck steam[4857]: [2025-03-15 17:27:11] Manifest download: waiting for download to finish
Mar 15 17:27:11 akideck NetworkManager[1062]: <info>  [1742084831.7769] manager: NetworkManager state is now CONNECTED_GLOBAL
Mar 15 17:27:11 akideck kdeconnectd[4629]: 2025-03-15T17:27:11 kdeconnect.core: Failed to send mDNS query: Cannot assign requested address
Mar 15 17:27:11 akideck sddm-helper-start-x11user[4108]: "(II) event9  - Logitech K400: device removed\n"
Mar 15 17:27:11 akideck sddm-helper-start-x11user[4108]: "(II) config/udev: removing device Logitech K400\n(**) Option \"fd\" \"32\"\n"
Mar 15 17:27:11 akideck sddm-helper-start-x11user[4108]: "(II)"
Mar 15 17:27:11 akideck sddm-helper-start-x11user[4108]: " UnloadModule: \"libinput\"\n(II) systemd-logind: not releasing fd for 13:73, still in use\n(II) config/udev: removing device Logitech K400\n"
Mar 15 17:27:11 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\""
Mar 15 17:27:11 akideck sddm-helper-start-x11user[4108]: " \"32\"\n"
Mar 15 17:27:11 akideck sddm-helper-start-x11user[4108]: "(II)"
Mar 15 17:27:11 akideck sddm-helper-start-x11user[4108]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:73\n"
Mar 15 17:27:12 akideck wakehook[1483]: [wakehook] 1742084832.21893: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (4/5)
Mar 15 17:27:12 akideck kernel: usb 1-1: new high-speed USB device number 17 using xhci_hcd
Mar 15 17:27:12 akideck steam[4857]: [2025-03-15 17:27:12] Manifest download: finished
Mar 15 17:27:12 akideck steam[4857]: [2025-03-15 17:27:12] Download skipped: /steam_client_steamdeck_publicbeta_ubuntu12 version 1741737356, installed version 1741737356, existing pending version 0
Mar 15 17:27:12 akideck steam[4857]: [2025-03-15 17:27:12] Nothing to do
Mar 15 17:27:12 akideck kernel: usb 1-1: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= a.04
Mar 15 17:27:12 akideck kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:27:12 akideck kernel: usb 1-1: Product: USB2.0 Hub             
Mar 15 17:27:12 akideck kernel: usb 1-1: Manufacturer: VIA Labs, Inc.         
Mar 15 17:27:12 akideck kernel: hub 1-1:1.0: USB hub found
Mar 15 17:27:12 akideck kernel: hub 1-1:1.0: 5 ports detected
Mar 15 17:27:12 akideck kernel: usb 1-1: USB disconnect, device number 17
Mar 15 17:27:12 akideck kernel: usb 1-1: new high-speed USB device number 18 using xhci_hcd
Mar 15 17:27:13 akideck wakehook[1483]: [wakehook] 1742084833.22154: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (5/5)
Mar 15 17:27:13 akideck kernel: usb 1-1: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= a.04
Mar 15 17:27:13 akideck kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:27:13 akideck kernel: usb 1-1: Product: USB2.0 Hub             
Mar 15 17:27:13 akideck kernel: usb 1-1: Manufacturer: VIA Labs, Inc.         
Mar 15 17:27:13 akideck kernel: hub 1-1:1.0: USB hub found
Mar 15 17:27:13 akideck kernel: hub 1-1:1.0: 5 ports detected
Mar 15 17:27:13 akideck avahi-daemon[802]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::ea8d:a6ff:fe77:9a8c.
Mar 15 17:27:13 akideck avahi-daemon[802]: New relevant interface wlan0.IPv6 for mDNS.
Mar 15 17:27:13 akideck avahi-daemon[802]: Registering new address record for fe80::ea8d:a6ff:fe77:9a8c on wlan0.*.
Mar 15 17:27:13 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:27:13 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1
Mar 15 17:27:13 akideck kernel: usb 1-1.4: new full-speed USB device number 19 using xhci_hcd
Mar 15 17:27:14 akideck wakehook[1483]: [wakehook] 1742084834.22234: Failed to call org.kde.plasma.remotecontrollers.CEC.powerOnDevices: -113 No route to host
Mar 15 17:27:14 akideck wakehook[1483]: [wakehook] 1742084834.22283: Going to sleep? 1
Mar 15 17:27:14 akideck wakehook[1483]: [wakehook] 1742084834.22293: Going to sleep? 0
Mar 15 17:27:14 akideck wakehook[1483]: [wakehook] 1742084834.22410: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (1/5)
Mar 15 17:27:14 akideck kernel: usb 1-1.4: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10
Mar 15 17:27:14 akideck kernel: usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 15 17:27:14 akideck kernel: usb 1-1.4: Product: USB Receiver
Mar 15 17:27:14 akideck kernel: usb 1-1.4: Manufacturer: Logitech
Mar 15 17:27:14 akideck kernel: logitech-djreceiver 0003:046D:C52B.0018: hiddev97,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:04:00.3-1.4/input2
Mar 15 17:27:14 akideck kernel: input: Logitech K400 as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0018/0003:046D:4024.0019/input/input43
Mar 15 17:27:14 akideck kernel: usb 1-1.5: new high-speed USB device number 20 using xhci_hcd
Mar 15 17:27:14 akideck kernel: logitech-hidpp-device 0003:046D:4024.0019: input,hidraw5: USB HID v1.11 Keyboard [Logitech K400] on usb-0000:04:00.3-1.4/input2:1
Mar 15 17:27:20 akideck kernel: usb 1-1.5: New USB device found, idVendor=291a, idProduct=8346, bcdDevice= 0.01
Mar 15 17:27:20 akideck kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 15 17:27:20 akideck kernel: usb 1-1.5: Product: Anker USB-C Hub Device 
Mar 15 17:27:20 akideck kernel: usb 1-1.5: Manufacturer: Anker Innovations Limit
Mar 15 17:27:20 akideck kernel: usb 1-1.5: SerialNumber: 0000000000000001
Mar 15 17:27:20 akideck kernel: logitech-hidpp-device 0003:046D:4024.0019: HID++ 2.0 device connected.
Mar 15 17:27:20 akideck wakehook[1483]: [wakehook] 1742084835.22615: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (2/5)
Mar 15 17:27:20 akideck wakehook[1483]: [wakehook] 1742084836.22862: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (3/5)
Mar 15 17:27:20 akideck wakehook[1483]: [wakehook] 1742084837.23138: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (4/5)
Mar 15 17:27:20 akideck wakehook[1483]: [wakehook] 1742084838.23476: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (5/5)
Mar 15 17:27:20 akideck wakehook[1483]: [wakehook] 1742084839.23590: Failed to call org.kde.plasma.remotecontrollers.CEC.powerOnDevices: -113 No route to host
Mar 15 17:27:14 akideck mtp-probe[6268]: checking bus 1, device 19: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:27:14 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4
Mar 15 17:27:14 akideck mtp-probe[6268]: bus: 1, device: 19 was not an MTP device
Mar 15 17:27:15 akideck systemd[1202]: Started Return to Gaming Mode.
Mar 15 17:27:14 akideck mtp-probe[6307]: checking bus 1, device 19: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4"
Mar 15 17:27:15 akideck systemd[1202]: Created slice Slice /app/dbus-:1.2-org.kde.Shutdown.
Mar 15 17:27:14 akideck mtp-probe[6307]: bus: 1, device: 19 was not an MTP device
Mar 15 17:27:15 akideck systemd[1202]: Started dbus-:1.2-org.kde.Shutdown@0.service.
Mar 15 17:27:20 akideck upowerd[1979]: treating change event as add on /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0018/0003:046D:4024.0019/power_supply/hidpp_battery_2
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) config/udev: Adding input device Logitech K400 (/dev/input/mouse3)\n(**) Logitech K400: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Logitech K400'\n(**) Logitech K400: always reports core events\n(**) Option \"Device\" \"/dev/input/mouse3\"\n"
Mar 15 17:27:20 akideck systemd-logind[871]: Watching system buttons on /dev/input/event9 (Logitech K400)
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) mouse3  - not using input device '/dev/input/mouse3'.\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(EE) libinput: Logitech K400: Failed to create a device for /dev/input/mouse3\n(EE) PreInit returned 2 for \"Logitech K400\"\n(II) UnloadModule: \"libinput\"\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) config/udev: Adding input device Logitech K400 (/dev/input/event9)\n(**) Logitech K400: Applying InputClass \"libinput pointer catchall\"\n(**) Logitech K400: Applying InputClass \"libinput keyboard catchall\"\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Logitech K400: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Logitech K400'\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) systemd-logind: got fd for /dev/input/event9 13:73 fd 85 paused 0\n(**) Logitech K400: always reports core events\n(**) Option \"Device\" \"/dev/input/event9\"\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) event9  - Logitech K400: is tagged by udev as: Keyboard Mouse\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) event9  - Logitech K400: device is a pointer\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) event9  - Logitech K400: device is a keyboard\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) event9  - Logitech K400: device removed\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Option \"AccelSpeed\""
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: " \"0\"\n(**) Option \"AccelProfile\""
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: " \"flat\"\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) libinput: Logitech K400: needs a virtual subdevice\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Option \"config_info\""
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: " \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0018/0003:046D:4024.0019/input/input43/event9\"\n(II) XINPUT: Adding extended input device \"Logitech K400\" (type: MOUSE, id 9)\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Option \"AccelerationScheme\" \"none\"\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Logitech K400: (accel) selected scheme none/0\n(**) Logitech K400: (accel) acceleration factor: 2.000\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Logitech K400: (accel) acceleration threshold: 4\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) event9  - Logitech K400: is tagged by udev as: Keyboard Mouse\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) event9  - Logitech K400: device is a pointer\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) event9  - Logitech K400: device is a keyboard\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Logitech K400: Applying InputClass \"libinput pointer catchall\"\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Logitech K400: Applying InputClass \"libinput keyboard catchall\"\n(**) Logitech K400: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Logitech K400'\n(II) systemd-logind: returning pre-existing fd for /dev/input/event9 13:73\n(**) Logitech K400: always reports core events\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Option \"Device\" \"/dev/input/event9\"\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) libinput: Logitech K400: is a virtual subdevice\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Option \"AccelSpeed\" \"0\"\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Option \"AccelProfile\" \"flat\"\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Logitech K400: Step value 0 was provided, libinput Fallback acceleration function is used.\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(**) Option \"config_info\" \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-1/1-1.4/1-1.4:1.2/0003:046D:C52B.0018/0003:046D:4024.0019/input/input43/event9\""
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "\n(II) XINPUT: Adding extended input device \"Logitech K400\" (type: KEYBOARD, id 16)\n"
Mar 15 17:27:20 akideck steam[4857]: Removing HIDAPI device 'Steam Deck' VID 0x28de, PID 0x1205, bluetooth 0, version 768, serial NONE, interface 2, interface_class 0, interface_subclass 0, interface_protocol 0, usage page 0xffff, usage 0x0001, path = /dev/hidraw2, driver = SDL_JOYSTICK_HIDAPI_STEAMDECK (ENABLED)
Mar 15 17:27:20 akideck steam[4857]: [2025-03-15 17:27:20] Shutdown
Mar 15 17:27:20 akideck kernel: input: Steam Deck as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input44
Mar 15 17:27:20 akideck kernel: input: Steam Deck Motion Sensors as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input45
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) config/udev: Adding input device Steam Deck Motion Sensors (/dev/input/js1)\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) config/udev: Adding input device Steam Deck (/dev/input/js0)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) config/udev: Adding input device Steam Deck (/dev/input/event8)\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) config/udev: Adding input device Steam Deck Motion Sensors (/dev/input/event17)\n"
Mar 15 17:27:20 akideck sddm-helper-start-x11user[4108]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 15 17:27:21 akideck kcminit[6401]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_mouse.so"
Mar 15 17:27:21 akideck kcminit[6401]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_touchpad.so"
Mar 15 17:27:21 akideck kcminit[6401]: kcm_touchpad: Using X11 backend
Mar 15 17:27:21 akideck systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Mar 15 17:27:22 akideck kded6[4240]: Service  ":1.90" unregistered
Mar 15 17:27:22 akideck systemd[1202]: app-steam@autostart.service: Consumed 1min 1.025s CPU time, 2.3G memory peak.
Mar 15 17:27:22 akideck polkit-kde-authentication-agent-1[4391]: Destroying listener
Mar 15 17:27:22 akideck polkit-kde-authentication-agent-1[4391]: Removing listener  PolkitQt1::Agent::Listener(0x561e589401d0)
Mar 15 17:27:22 akideck plasmashell[4325]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml:136: TypeError: Cannot read property 'screenGeometry' of null
Mar 15 17:27:22 akideck plasmashell[4325]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml:250: TypeError: Cannot read property 'plasmoid' of undefined
Mar 15 17:27:22 akideck systemd[1202]: plasma-plasmashell.service: Consumed 5.224s CPU time, 278.6M memory peak.
Mar 15 17:27:22 akideck systemd[1202]: Stopped target plasma-workspace-x11.target.
Mar 15 17:27:22 akideck systemd[1202]: Stopped target KDE Plasma Workspace.
Mar 15 17:27:22 akideck systemd[1202]: Stopped target Startup of XDG autostart applications.
Mar 15 17:27:22 akideck systemd[1202]: Stopping IBus...
Mar 15 17:27:22 akideck systemd[1202]: Stopping Accessibility services bus...
Mar 15 17:27:22 akideck dbus-broker[4272]: Dispatched 460 messages @ 6(±6)μs / message.
Mar 15 17:27:22 akideck systemd[1202]: Stopping Consume pending crashes using DrKonqi...
Mar 15 17:27:22 akideck systemd[1202]: Stopping KRunner provider for baloo file indexer...
Mar 15 17:27:22 akideck systemd[1202]: Stopping KAccess...
Mar 15 17:27:22 akideck systemd[1202]: Stopping KDE Global Shortcuts Server...
Mar 15 17:27:22 akideck systemd[1202]: Stopping KScreen...
Mar 15 17:27:22 akideck systemd[1202]: Stopping KDE Window Manager...
Mar 15 17:27:22 akideck systemd[1202]: Stopping Powerdevil...
Mar 15 17:27:22 akideck systemd[1202]: Stopping Xdg Desktop Portal For KDE...
Mar 15 17:27:22 akideck systemd[1202]: Stopping Portal service...
Mar 15 17:27:22 akideck systemd[1202]: Stopping flatpak document portal service...
Mar 15 17:27:22 akideck systemd[1202]: Stopping sandboxed app permission store...
Mar 15 17:27:22 akideck systemd[1202]: Stopping Baloo File Indexer Daemon...
Mar 15 17:27:22 akideck systemd[1]: run-user-1000-doc.mount: Deactivated successfully.
Mar 15 17:27:22 akideck systemd[1202]: Stopped sandboxed app permission store.
Mar 15 17:27:22 akideck systemd[1202]: Stopped Accessibility services bus.
Mar 15 17:27:22 akideck systemd[1202]: Stopped Consume pending crashes using DrKonqi.
Mar 15 17:27:22 akideck systemd[1202]: Stopped KAccess.
Mar 15 17:27:22 akideck systemd[1202]: Stopped Xdg Desktop Portal For KDE.
Mar 15 17:27:22 akideck systemd[1202]: Stopped Portal service.
Mar 15 17:27:22 akideck systemd[1202]: Stopped KScreen.
Mar 15 17:27:22 akideck systemd[1202]: Stopped IBus.
Mar 15 17:27:22 akideck systemd[1202]: app-ibus@autostart.service: Consumed 2.142s CPU time, 33M memory peak.
Mar 15 17:27:22 akideck systemd[1202]: Stopped KDE Global Shortcuts Server.
Mar 15 17:27:22 akideck systemd[1202]: Stopped Powerdevil.
Mar 15 17:27:22 akideck systemd[1202]: Stopped KRunner provider for baloo file indexer.
Mar 15 17:27:22 akideck systemd[1202]: Stopped flatpak document portal service.
Mar 15 17:27:22 akideck systemd[1202]: Stopped target Current graphical user session.
Mar 15 17:27:22 akideck systemd[1202]: Stopped target KDE Plasma Workspace Core.
Mar 15 17:27:22 akideck systemd[1202]: Stopping KActivityManager Activity manager Service...
Mar 15 17:27:22 akideck systemd[1202]: Stopping KDE Daemon 6...
Mar 15 17:27:22 akideck systemd[1202]: Stopping KDE Session Management Server...
Mar 15 17:27:22 akideck systemd[1202]: Stopped target Session services which should run early before the graphical session is brought up.
Mar 15 17:27:22 akideck systemd[1202]: Stopped Baloo File Indexer Daemon.
Mar 15 17:27:22 akideck systemd[1202]: Stopped KDE Session Management Server.
Mar 15 17:27:22 akideck systemd[1202]: Stopped KActivityManager Activity manager Service.
Mar 15 17:27:22 akideck systemd[1202]: Stopped KDE Daemon 6.
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: quitting helper-start-x11
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: Stopping server...
Mar 15 17:27:22 akideck at-spi2-registryd[4277]: X connection to :0 broken (explicit kill or server shutdown).
Mar 15 17:27:22 akideck systemd[1202]: dbus-:1.56-org.a11y.atspi.Registry@0.service: Main process exited, code=exited, status=1/FAILURE
Mar 15 17:27:22 akideck systemd[1202]: dbus-:1.56-org.a11y.atspi.Registry@0.service: Failed with result 'exit-code'.
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\""
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: " \"27\"\n(II) event2  - Power Button: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\" \"30\"\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II) event3  - Video Bus: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\" \"31\""
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "\n(II) event0  - Power Button: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\" \"33\""
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "\n(II) event5  - Valve Software Steam Controller: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\" \"34\"\n(II) event4  - Valve Software Steam Controller: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\" \"35\"\n(II) event16 - sof-nau8821-max Headset Jack: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\" \"36\""
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "\n(II) event14 - FTS3528:00 2808:1015: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\" \"37\""
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\" \"39\""
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "\n(II) event7  - AT Translated Set 2 keyboard: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(**) Option \"fd\" \"85\"\n(**) Option \"fd\" \"85\"\n(II) event9  - Logitech K400: device removed\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II)"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: " UnloadModule: \"libinput\"\n(II) systemd-logind: not releasing fd for 13:73, still in use\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II) UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:73\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II) "
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:71\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II)"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:79\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II)"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:78\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II)"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:80\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II) UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:68\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II) "
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:69\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II) "
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:64\n"
Mar 15 17:27:22 akideck systemd[1202]: plasma-kwin_x11.service: Main process exited, code=exited, status=15/n/a
Mar 15 17:27:22 akideck systemd[1202]: plasma-kwin_x11.service: Failed with result 'exit-code'.
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II)"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:67\n"
Mar 15 17:27:22 akideck systemd[1202]: Stopped KDE Window Manager.
Mar 15 17:27:22 akideck systemd[1202]: plasma-kwin_x11.service: Consumed 2.909s CPU time, 104M memory peak.
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II)"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:66\n"
Mar 15 17:27:22 akideck sddm-helper-start-x11user[4108]: "(II) Server terminated successfully (0). Closing log file.\n"
Mar 15 17:27:22 akideck systemd[1202]: xdg-desktop-portal-gtk.service: Main process exited, code=exited, status=1/FAILURE
Mar 15 17:27:22 akideck systemd[1202]: xdg-desktop-portal-gtk.service: Failed with result 'exit-code'.
Mar 15 17:27:23 akideck sddm-helper-start-x11user[4108]: Running display stop script: /usr/bin/gamescope-wayland-teardown-workaround
Mar 15 17:27:23 akideck sddm-helper[4101]: [PAM] Closing session
Mar 15 17:27:23 akideck sddm-helper[4101]: pam_unix(sddm-autologin:session): session closed for user deck
Mar 15 17:27:23 akideck sddm-helper[4101]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: pam_sm_close_session
Mar 15 17:27:23 akideck sddm-helper[4101]: pam_kwallet5(sddm-autologin:setcred): pam_kwallet5: pam_sm_setcred
Mar 15 17:27:23 akideck sddm-helper[4101]: [PAM] Ended.
Mar 15 17:27:23 akideck sddm[1091]: Auth: sddm-helper exited successfully
Mar 15 17:27:23 akideck systemd[1]: session-3.scope: Deactivated successfully.
Mar 15 17:27:23 akideck sddm[1091]: Removing display SDDM::Display(0x55d72425f1f0) ...
Mar 15 17:27:23 akideck systemd[1]: session-3.scope: Consumed 5.538s CPU time, 135.2M memory peak.
Mar 15 17:27:23 akideck sddm[1091]: Adding new display...
Mar 15 17:27:23 akideck sddm[1091]: Loaded empty theme configuration
Mar 15 17:27:23 akideck systemd-logind[871]: Removed session 3.
Mar 15 17:27:23 akideck sddm[1091]: Using VT 1
Mar 15 17:27:23 akideck sddm[1091]: Display server started.
Mar 15 17:27:23 akideck sddm[1091]: Reading from "/usr/local/share/wayland-sessions/gamescope-wayland.desktop"
Mar 15 17:27:23 akideck sddm[1091]: Reading from "/usr/share/wayland-sessions/gamescope-wayland.desktop"
Mar 15 17:27:23 akideck wireplumber[1450]: wplua: [string "alsa.lua"]:448: table index is nil
                                           stack traceback:
                                                   [string "alsa.lua"]:448: in function <[string "alsa.lua"]:434>
Mar 15 17:27:23 akideck sddm[1091]: Session "/usr/share/wayland-sessions/gamescope-wayland.desktop" selected, command: "start-gamescope-session" for VT 1
Mar 15 17:27:23 akideck sddm-helper[6490]: [PAM] Starting...
Mar 15 17:27:23 akideck sddm-helper[6490]: [PAM] Authenticating...
Mar 15 17:27:23 akideck sddm-helper[6490]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: pam_sm_authenticate
Mar 15 17:27:23 akideck sddm-helper[6490]: [PAM] Preparing to converse...
Mar 15 17:27:23 akideck sddm-helper[6490]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Couldn't get password (it is empty)
Mar 15 17:27:23 akideck sddm-helper[6490]: [PAM] Conversation with 1 messages
Mar 15 17:27:23 akideck sddm-helper[6490]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Empty or missing password, doing nothing
Mar 15 17:27:23 akideck sddm-helper[6490]: [PAM] returning.
Mar 15 17:27:23 akideck sddm[1091]: Authentication for user  "deck"  successful
Mar 15 17:27:23 akideck sddm-helper[6490]: pam_kwallet5(sddm-autologin:setcred): pam_kwallet5: pam_sm_setcred
Mar 15 17:27:23 akideck sddm-helper[6490]: pam_unix(sddm-autologin:session): session opened for user deck(uid=1000) by deck(uid=0)
Mar 15 17:27:23 akideck systemd-logind[871]: New session 4 of user deck.
Mar 15 17:27:23 akideck systemd[1]: Started Session 4 of User deck.
Mar 15 17:27:23 akideck sddm-helper[6490]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: pam_sm_open_session
Mar 15 17:27:23 akideck sddm-helper[6490]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: open_session called without kwallet5_key
Mar 15 17:27:23 akideck sddm-helper[6490]: Starting Wayland user session: "/usr/share/sddm/scripts/wayland-session" "start-gamescope-session"
Mar 15 17:27:23 akideck sddm-helper[6496]: Jumping to VT 1
Mar 15 17:27:23 akideck sddm-helper[6496]: VT mode fixed
Mar 15 17:27:23 akideck sddm[1091]: Session started true
Mar 15 17:27:23 akideck systemd[1202]: Expecting device /dev/cec0...
Mar 15 17:27:23 akideck systemd[1202]: Reached target Session services which should run early before the graphical session is brought up.
Mar 15 17:27:23 akideck systemd[1202]: Starting Gamescope Session...
Mar 15 17:27:23 akideck systemd[1202]: Started Power Button daemon for SteamOS.
Mar 15 17:27:23 akideck gamescope-session[6522]: Making Gamescope Mode Save file at "/home/deck/.config/gamescope/modes.cfg"
Mar 15 17:27:23 akideck gamescope-session[6522]: Making Gamescope patched edid at "/home/deck/.config/gamescope/edid.bin"
Mar 15 17:27:23 akideck gamescope-session[6522]: Removing file: /home/deck/.local/share/Steam/config/uioverrides/movies/*
Mar 15 17:27:23 akideck gamescope-session[6540]: rm: cannot remove '/home/deck/.local/share/Steam/config/uioverrides/movies/*': No such file or directory
Mar 15 17:27:23 akideck gamescope-session[6541]: rm: cannot remove '/home/deck/.local/share/Steam/config/uioverrides/movies/*.installed': No such file or directory
Mar 15 17:27:23 akideck gamescope-session[6522]: Claimed global gamescope stats session at "/run/user/1000/gamescope-stats"
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  console: gamescope version 3.16.2 (gcc 14.2.1)
Mar 15 17:27:23 akideck gamescope-session[6522]: Tracing is enabled
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts'
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts/00-gamescope'
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts/00-gamescope/common'
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/common/inspect.lua' (id: 0)
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/common/modegen.lua' (id: 1)
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/common/util.lua' (id: 2)
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts/00-gamescope/displays'
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/asus.rogally.lcd.lua' (id: 3)
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/deckhd.steamdeck.deckhd-lcd.lua' (id: 4)
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/valve.steamdeck.lcd.lua' (id: 5)
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/valve.steamdeck.oled.lua' (id: 6)
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/etc/gamescope/scripts'
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Warn]  scriptmgr: Directory '/etc/gamescope/scripts' does not exist
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/home/deck/.config/gamescope/scripts'
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Warn]  scriptmgr: Directory '/home/deck/.config/gamescope/scripts' does not exist
Mar 15 17:27:23 akideck gamescope-session[6522]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan: selecting physical device 'AMD Custom GPU 0932 (RADV VANGOGH)': queue family 1 (general queue family 0)
Mar 15 17:27:23 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan: physical device supports DRM format modifiers
Mar 15 17:27:23 akideck gamescope-session[6522]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: [backend/headless/backend.c:67] Creating headless backend
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: [libseat] [libseat/backend/seatd.c:64] Could not connect to socket /run/seatd.sock: No such file or directory
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: [libseat] [libseat/libseat.c:76] Backend 'seatd' failed to open seat, skipping
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: [libseat] [libseat/libseat.c:73] Seat opened with backend 'logind'
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: [backend/session/session.c:108] Successfully loaded libseat session
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: opening DRM node '/dev/dri/card0'
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Error] drm: Immediate flips disabled from environment
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: Connector eDP-1 -> VLV - ANX7530 U
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: Got known display: steamdeck_oled_boe (Steam Deck OLED (BOE))
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: EDID with colorimetry detected. Using it
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: r 0.684570 0.314453
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: g 0.245117 0.714844
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: b 0.137695 0.049805
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: w 0.312500 0.329102
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: Connector eDP-1 -> VLV - ANX7530 U
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: Got known display: steamdeck_oled_boe (Steam Deck OLED (BOE))
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: EDID with colorimetry detected. Using it
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: r 0.684570 0.314453
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: g 0.245117 0.714844
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: b 0.137695 0.049805
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: w 0.312500 0.329102
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: Connectors:
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm:   DP-1 (disconnected)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm:   eDP-1 (connected)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: selecting connector eDP-1
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  drm: selecting mode 800x1280@90Hz
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan: supported DRM formats for sampling usage:
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   AR24 (0x34325241)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   XR24 (0x34325258)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   AB24 (0x34324241)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   XB24 (0x34324258)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   RG16 (0x36314752)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   NV12 (0x3231564E)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   AB4H (0x48344241)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   XB4H (0x48344258)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   AB48 (0x38344241)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   XB48 (0x38344258)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   AB30 (0x30334241)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   XB30 (0x30334258)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   AR30 (0x30335241)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vulkan:   XR30 (0x30335258)
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: Using explicit sync when available
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: Running compositor on wayland display 'gamescope-0'
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: [backend/headless/backend.c:17] Starting headless backend
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: Successfully initialized libei for input emulation!
Mar 15 17:27:24 akideck gamescope-session[6569]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :0
Mar 15 17:27:24 akideck gamescope-session[6571]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :1
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  pipewire: stream state changed: connecting
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  pipewire: stream state changed: paused
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  pipewire: stream available on node ID: 72
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  xwm: Embedded, no cursor set. Using left_ptr by default.
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  xwm: Embedded, no cursor set. Using left_ptr by default.
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  vblank: Using timerfd.
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  edid: Patching dims 10x16 -> 16x10
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  edid: Patching res 800x1280 -> 1280x800
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  edid: [edid] Patching HDR static metadata:
Mar 15 17:27:24 akideck gamescope-session[6522]:     - Max peak luminance = 1000 nits
Mar 15 17:27:24 akideck gamescope-session[6522]:     - Max frame average luminance = 800 nits
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  edid: Patching existing HDR Metadata with our own!
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  edid: CTA Checksum valid? Y
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  edid: BASE Checksum valid? Y
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  edid: Wrote new edid to: /home/deck/.config/gamescope/edid.bin
Mar 15 17:27:24 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: Updating mode for xwayland server #0: 1280x800@90
Mar 15 17:27:24 akideck systemd[1202]: Started Gamescope Session.
Mar 15 17:27:24 akideck systemd[1202]: Reached target Current graphical user session.
Mar 15 17:27:24 akideck systemd[1202]: Starting galileo mura setup...
Mar 15 17:27:24 akideck systemd[1202]: Starting mangoapp...
Mar 15 17:27:24 akideck systemd[1202]: Starting Xbindkeys for Gamescope session...
Mar 15 17:27:24 akideck systemd[1202]: Starting Wrapper for Ibus...
Mar 15 17:27:24 akideck systemd[1202]: Starting Steam Launcher...
Mar 15 17:27:24 akideck systemd[1202]: Started Steam Notification Daemon.
Mar 15 17:27:24 akideck systemd[1202]: Started Xbindkeys for Gamescope session.
Mar 15 17:27:24 akideck systemd[1202]: Started mangoapp.
Mar 15 17:27:24 akideck systemd[1202]: Started Steam Launcher.
Mar 15 17:27:24 akideck systemd[1202]: Starting Steam Short Session Tracker...
Mar 15 17:27:24 akideck steam-short-session-tracker[6616]: /usr/lib/steamos/steam-short-session-tracker: line 9: /tmp/steamos-short-session-tracker: No such file or directory
Mar 15 17:27:24 akideck systemd[1202]: Finished Steam Short Session Tracker.
Mar 15 17:27:24 akideck systemd[1202]: Started Wrapper for Ibus.
Mar 15 17:27:24 akideck systemd[1202]: Started dbus-:1.2-org.freedesktop.portal.IBus@2.service.
Mar 15 17:27:24 akideck steam-runtime-steam-remote[6647]: steam-runtime-steam-remote: Steam is not running: No such device or address
Mar 15 17:27:24 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start timed out.
Mar 15 17:27:24 akideck systemd[1202]: Timed out starting plasma-remotecontrollers.service.
Mar 15 17:27:24 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start failed with result 'timeout'.
Mar 15 17:27:24 akideck systemd[1202]: Unnecessary job was removed for /dev/cec0.
Mar 15 17:27:24 akideck sshd-session[6630]: Accepted publickey for deck from 192.168.0.75 port 33438 ssh2: RSA SHA256:es4qkC8QkRqI9BzWTomXJikHlJvA6hI6XefpnHkJkA0
Mar 15 17:27:24 akideck mangoapp[6603]: [2025-03-15 17:27:24.761] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 15 17:27:24 akideck sshd-session[6630]: pam_unix(sshd:session): session opened for user deck(uid=1000) by deck(uid=0)
Mar 15 17:27:24 akideck systemd-logind[871]: New session 5 of user deck.
Mar 15 17:27:24 akideck systemd[1]: Started Session 5 of User deck.
Mar 15 17:27:24 akideck mangoapp[6603]: [2025-03-15 17:27:24.814] [MANGOHUD] [error] [cpu.cpp:536] Could not find cpu temp sensor location
Mar 15 17:27:25 akideck wireplumber[1450]: spa.alsa: Failed to enable UCM device Speaker
Mar 15 17:27:25 akideck steam-launcher[6606]: steam.sh[6606]: Running Steam on steamos rolling 64-bit
Mar 15 17:27:25 akideck steam-launcher[6606]: steam.sh[6606]: STEAM_RUNTIME is enabled automatically
Mar 15 17:27:25 akideck steam-launcher[6733]: setup.sh[6733]: Steam runtime environment up-to-date!
Mar 15 17:27:25 akideck galileo-mura-setup[6602]: [galileo-mura] Not using mura correction for this unit as it is not SDC.
Mar 15 17:27:25 akideck systemd[1202]: galileo-mura-setup.service: Main process exited, code=exited, status=1/FAILURE
Mar 15 17:27:25 akideck systemd[1202]: galileo-mura-setup.service: Failed with result 'exit-code'.
Mar 15 17:27:25 akideck systemd[1202]: Failed to start galileo mura setup.
Mar 15 17:27:25 akideck systemd[1202]: galileo-mura-setup.service: Consumed 1.004s CPU time, 5M memory peak.
Mar 15 17:27:25 akideck systemd[1202]: Reached target Gamescope Session.
Mar 15 17:27:25 akideck steam[6779]: steam.sh[6606]: Using supervisor /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 15 17:27:25 akideck steam[6779]: steam.sh[6606]: Steam client's requirements are satisfied
Mar 15 17:27:25 akideck steam[6779]: CProcessEnvironmentManager is ready, 6 preallocated environment variables.
Mar 15 17:27:25 akideck steam[6779]: [2025-03-15 17:27:25] Startup - updater built Mar 11 2025 20:39:15
Mar 15 17:27:25 akideck steam[6779]: [2025-03-15 17:27:25] Startup - Steam Client launched with: '/home/deck/.local/share/Steam/ubuntu12_32/steam' '-srt-logger-opened' '-steamdeck' '-steamos3' '-steampal' '-steamdeck' '-gamepadui'
Mar 15 17:27:25 akideck steam[6779]: [2025-03-15 17:27:25] Opted in to client beta 'steamdeck_publicbeta' via beta file
Mar 15 17:27:25 akideck steam[6779]: You are in the 'steamdeck_publicbeta' client beta.
Mar 15 17:27:25 akideck steam[6779]: 03/15 17:27:25 minidumps folder is set to /tmp/dumps
Mar 15 17:27:25 akideck steam[6779]: 03/15 17:27:25 Init: Installing breakpad exception handler for appid(steam)/version(1741737356)/tid(6800)
Mar 15 17:27:26 akideck steam[6779]: [2025-03-15 17:27:26] Loading cached metrics from disk (/home/deck/.local/share/Steam/package/steam_client_metrics.bin)
Mar 15 17:27:26 akideck steam[6779]: [2025-03-15 17:27:26] Using the following download hosts for Public, Realm steamglobal
Mar 15 17:27:26 akideck steam[6779]: [2025-03-15 17:27:26] 1. https://client-update.fastly.steamstatic.com, /, Realm 'steamglobal', weight was 900, source = 'update_hosts_cached.vdf'
Mar 15 17:27:26 akideck steam[6779]: [2025-03-15 17:27:26] 2. https://client-update.akamai.steamstatic.com, /, Realm 'steamglobal', weight was 100, source = 'update_hosts_cached.vdf'
Mar 15 17:27:26 akideck steam[6779]: [2025-03-15 17:27:26] 3. https://client-update.steamstatic.com, /, Realm 'steamglobal', weight was 1, source = 'baked in'
Mar 15 17:27:26 akideck steam[6779]: [2025-03-15 17:27:26] Verifying installation...
Mar 15 17:27:26 akideck steam[6779]: [2025-03-15 17:27:26] Verifying file sizes only
Mar 15 17:27:26 akideck steam[6779]: [2025-03-15 17:27:26] Verification complete
Mar 15 17:27:26 akideck gamescope-session[6522]: [gamescope] [Warn]  xwm: got the same buffer committed twice, ignoring.
Mar 15 17:27:26 akideck gamescope-session[6813]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:27:26 akideck gamescope-session[6813]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:27:26 akideck gamescope-session[6813]: >                   X11 cannot support keycodes above 255.
Mar 15 17:27:26 akideck gamescope-session[6814]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 15 17:27:26 akideck gamescope-session[6814]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 15 17:27:26 akideck gamescope-session[6814]: >                   X11 cannot support keycodes above 255.
Mar 15 17:27:26 akideck gamescope-session[6813]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:27:26 akideck gamescope-session[6813]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:27:26 akideck gamescope-session[6813]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:27:26 akideck gamescope-session[6814]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 15 17:27:26 akideck gamescope-session[6814]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 15 17:27:26 akideck gamescope-session[6814]: Errors from xkbcomp are not fatal to the X server
Mar 15 17:27:26 akideck steam[6779]: UpdateUI: showing logo
Mar 15 17:27:26 akideck steam[6779]: Steam logging initialized: directory: /home/deck/.local/share/Steam/logs
Mar 15 17:27:26 akideck steam[6779]: XRRGetOutputInfo Workaround: initialized with override: 1 real: 0xf76d4370
Mar 15 17:27:26 akideck steam[6779]: XRRGetCrtcInfo Workaround: initialized with override: 1 real: 0xf76d2cc0
Mar 15 17:27:26 akideck systemd[1202]: Starting Portal service...
Mar 15 17:27:26 akideck systemd[1202]: Starting flatpak document portal service...
Mar 15 17:27:27 akideck systemd[1202]: Starting sandboxed app permission store...
Mar 15 17:27:27 akideck systemd[1202]: Started sandboxed app permission store.
Mar 15 17:27:27 akideck systemd[1202]: Started flatpak document portal service.
Mar 15 17:27:27 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 17:27:27 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 17:27:27 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 15 17:27:27 akideck xdg-desktop-por[6832]: No skeleton to export
Mar 15 17:27:27 akideck systemd[1202]: Started Portal service.
Mar 15 17:27:27 akideck steam[6779]: 03/15 17:27:27 minidumps folder is set to /tmp/dumps
Mar 15 17:27:27 akideck steam[6779]: 03/15 17:27:27 Init: Installing breakpad exception handler for appid(steamsysinfo)/version(1741737356)/tid(6854)
Mar 15 17:27:27 akideck steam[6779]: Running query: 1 - GpuTopology
Mar 15 17:27:27 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 15 17:27:27 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 17:27:27 akideck steam[6779]: Response: gpu_topology {
Mar 15 17:27:27 akideck steam[6779]:   gpus {
Mar 15 17:27:27 akideck steam[6779]:     id: 1
Mar 15 17:27:27 akideck steam[6779]:     name: "AMD Custom GPU 0932 (RADV VANGOGH)"
Mar 15 17:27:27 akideck steam[6779]:     vram_size_bytes: 6397714432
Mar 15 17:27:27 akideck steam[6779]:     driver_id: k_EGpuDriverId_MesaRadv
Mar 15 17:27:27 akideck steam[6779]:     driver_version_major: 24
Mar 15 17:27:27 akideck steam[6779]:     driver_version_minor: 2
Mar 15 17:27:27 akideck steam[6779]:     driver_version_patch: 99
Mar 15 17:27:27 akideck steam[6779]:   }
Mar 15 17:27:27 akideck steam[6779]:   default_gpu_id: 1
Mar 15 17:27:27 akideck steam[6779]: }
Mar 15 17:27:27 akideck steam[6779]: Exit code: 0
Mar 15 17:27:27 akideck steam[6779]: Saving response to: /tmp/steamnOfNPg - 58 bytes
Mar 15 17:27:27 akideck steamwebhelper[6878]: steamwebhelper.sh[6869]: Using supervisor /home/deck/.steam/root/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 15 17:27:27 akideck steamwebhelper[6878]: steamwebhelper.sh[6869]: Starting steamwebhelper under bootstrap sniper steam runtime via /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper.sh
Mar 15 17:27:27 akideck steamwebhelper[6878]: steamwebhelper.sh[6869]: CEF sandbox already disabled
Mar 15 17:27:27 akideck steamwebhelper[6878]: steamwebhelper.sh[6869]: Starting steamwebhelper with Sniper steam runtime at /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper/_v2-entry-point
Mar 15 17:27:28 akideck rtkit-daemon[1455]: Recovering from system lockup, not allowing further RT threads.
Mar 15 17:27:28 akideck rtkit-daemon[1455]: Recovering from system lockup, not allowing further RT threads.
Mar 15 17:27:28 akideck pkexec[6950]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:28 akideck pkexec[6950]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-priv-write /dev/drm_dp_aux0 ]
Mar 15 17:27:28 akideck p-steamos-priv-write[6959]: checking: /dev/drm_dp_aux0
Mar 15 17:27:28 akideck pkexec[6964]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:28 akideck pkexec[6964]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 2]
Mar 15 17:27:28 akideck pkexec[6973]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:28 akideck pkexec[6973]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 4]
Mar 15 17:27:28 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 6987, but reception is disabled
Mar 15 17:27:28 akideck pkexec[6992]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:28 akideck pkexec[6992]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-fan-control --enable]
Mar 15 17:27:28 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 15 17:27:28 akideck gpu-trace[805]: 127.0.0.1 - - [15/Mar/2025 17:27:28] "POST / HTTP/1.1" 200 -
Mar 15 17:27:28 akideck steamwebhelper[6878]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 15 17:27:28 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 15 17:27:28 akideck gpu-trace[805]: 127.0.0.1 - - [15/Mar/2025 17:27:28] "POST / HTTP/1.1" 200 -
Mar 15 17:27:28 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 15 17:27:28 akideck gpu-trace[805]: 127.0.0.1 - - [15/Mar/2025 17:27:28] "POST / HTTP/1.1" 200 -
Mar 15 17:27:28 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 15 17:27:28 akideck gpu-trace[805]: 127.0.0.1 - - [15/Mar/2025 17:27:28] "POST / HTTP/1.1" 200 -
Mar 15 17:27:28 akideck sudo[6858]:     deck : TTY=pts/0 ; PWD=/home/deck ; USER=root ; COMMAND=/usr/bin/dmesg
Mar 15 17:27:28 akideck sudo[6858]: pam_unix(sudo:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:28 akideck mangoapp[6603]: [2025-03-15 17:27:28.824] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 15 17:27:28 akideck mangoapp[6603]: [2025-03-15 17:27:28.824] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 15 17:27:28 akideck steam[6779]: Steam Runtime Launch Service: starting steam-runtime-launcher-service
Mar 15 17:27:28 akideck steam[6779]: Steam Runtime Launch Service: steam-runtime-launcher-service is running pid 7060
Mar 15 17:27:28 akideck sudo[6858]: pam_unix(sudo:session): session closed for user root
Mar 15 17:27:28 akideck mangoapp[6603]: [2025-03-15 17:27:28.837] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 15 17:27:28 akideck mangoapp[6603]: [2025-03-15 17:27:28.837] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 15 17:27:28 akideck mangoapp[6603]: [2025-03-15 17:27:28.837] [MANGOHUD] [error] [overlay_params.cpp:114] Couldn't create socket pipe at 'mangohud'
Mar 15 17:27:28 akideck mangoapp[6603]: [2025-03-15 17:27:28.837] [MANGOHUD] [error] [overlay_params.cpp:115] ERROR: 'Address already in use'
Mar 15 17:27:28 akideck steam[6779]: bus_name=com.steampowered.PressureVessel.LaunchAlongsideSteam
Mar 15 17:27:28 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: Updating mode for xwayland server #0: 1280x800@90
Mar 15 17:27:28 akideck steamwebhelper[6878]: exec ./steamwebhelper -nocrashdialog -lang=en_US -cachedir=/home/deck/.local/share/Steam/config/htmlcache -steampid=6800 -buildid=1741737356 -steamid=0 -logdir=/home/deck/.local/share/Steam/logs -uimode=4 -startcount=0 -gamepadui -steamdeck -steamos3 -steamuniverse=Public -realm=Global -clientui=/home/deck/.local/share/Steam/clientui -steampath=/home/deck/.local/share/Steam/ubuntu12_32/steam -launcher=0 -no-restart-on-ui-mode-change --valve-enable-site-isolation --enable-smooth-scrolling --no-sandbox --password-store=basic --log-file=/home/deck/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --enable-features=PlatformHEVCDecoderSupport --disable-features=SpareRendererForSitePerProcess,DcheckIsFatal,ValveFFmpegAllowLowDelayHEVC
Mar 15 17:27:28 akideck gamescope-session[6522]: radv: Updated the per-vertex VRS rate to '0'.
Mar 15 17:27:29 akideck mangoapp[6603]: [2025-03-15 17:27:29.019] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 15 17:27:29 akideck mangoapp[6603]: [2025-03-15 17:27:29.019] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 15 17:27:29 akideck mangoapp[6603]: [2025-03-15 17:27:29.019] [MANGOHUD] [error] [overlay_params.cpp:114] Couldn't create socket pipe at 'mangohud'
Mar 15 17:27:29 akideck mangoapp[6603]: [2025-03-15 17:27:29.019] [MANGOHUD] [error] [overlay_params.cpp:115] ERROR: 'Address already in use'
Mar 15 17:27:29 akideck pkexec[7246]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:29 akideck pkexec[7246]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-devkit-mode --enable]
Mar 15 17:27:29 akideck systemd[1]: Reload requested from client PID 7256 ('systemctl') (unit user@1000.service)...
Mar 15 17:27:29 akideck systemd[1]: Reloading...
Mar 15 17:27:29 akideck steam[6779]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/entry:70: error: unexpected identifier 'direction', expected character '}'
Mar 15 17:27:29 akideck steam[6779]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/styles:36: error: invalid string constant "combobox_entry", expected valid string constant
Mar 15 17:27:29 akideck systemd[1202]: Reload requested from client PID 7290 ('systemctl') (unit steam-launcher.service)...
Mar 15 17:27:29 akideck systemd[1202]: Reloading...
Mar 15 17:27:30 akideck systemd[1202]: Reloading finished in 312 ms.
Mar 15 17:27:30 akideck systemd[1202]: Expecting device /dev/cec0...
Mar 15 17:27:30 akideck systemd[1]: Reloading finished in 433 ms.
Mar 15 17:27:30 akideck systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Mar 15 17:27:30 akideck systemd[1]: Reload requested from client PID 7394 ('systemctl') (unit user@1000.service)...
Mar 15 17:27:30 akideck systemd[1]: Reloading...
Mar 15 17:27:30 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 15 17:27:30 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 17:27:30 akideck steam[6779]: [Gamescope WSI] Application info:
Mar 15 17:27:30 akideck steam[6779]:   pApplicationName: hellovr_vulkan
Mar 15 17:27:30 akideck steam[6779]:   applicationVersion: 1
Mar 15 17:27:30 akideck steam[6779]:   pEngineName: (null)
Mar 15 17:27:30 akideck steam[6779]:   engineVersion: 1
Mar 15 17:27:30 akideck steam[6779]:   apiVersion: 4194304
Mar 15 17:27:30 akideck steam[6779]: [Gamescope WSI] Executable name: vulkandriverquery
Mar 15 17:27:30 akideck steam[6779]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 15 17:27:30 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 15 17:27:30 akideck kernel: input: Microsoft X-Box 360 pad 0 as /devices/virtual/input/input46
Mar 15 17:27:30 akideck systemd[1]: Reloading finished in 389 ms.
Mar 15 17:27:30 akideck systemd[1]: Starting Time & Date Service...
Mar 15 17:27:30 akideck systemd[1]: Started Time & Date Service.
Mar 15 17:27:30 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 7496, but reception is disabled
Mar 15 17:27:30 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 15 17:27:30 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 15 17:27:30 akideck steam[6779]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 15 17:27:31 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start timed out.
Mar 15 17:27:31 akideck systemd[1202]: Timed out starting plasma-remotecontrollers.service.
Mar 15 17:27:31 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start failed with result 'timeout'.
Mar 15 17:27:31 akideck systemd[1202]: Unnecessary job was removed for /dev/cec0.
Mar 15 17:27:31 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 7389, but reception is disabled
Mar 15 17:27:31 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 7389, but reception is disabled
Mar 15 17:27:32 akideck steam[6779]: Desktop state changed: desktop: { pos:    0,   0 size: 1280, 800 } primary: { pos:    0,   0 size: 1280, 800 }
Mar 15 17:27:32 akideck steam[6779]: Caching cursor image for left_ptr, size 256x256, serial 2, cache size = 0
Mar 15 17:27:32 akideck steam[6779]: Caching cursor image for left_ptr, size 256x256, serial 2, cache size = 0
Mar 15 17:27:32 akideck steam[6779]: CDesktopCapturePipeWire: Opening DRM render node /dev/dri/renderD128
Mar 15 17:27:32 akideck steam[6779]: CDesktopCapturePipeWire: setting stream node path: gamescope
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/01%20Exposing%20Hostile.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/02%20Valve%20Alyx.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/03%20Coetaneous%20Entanglement.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/04%20Construction%20Strider.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/05%20Engage%20Quell%20Inquire.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/06%20Insubordinate%20Relocation.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/07%20City%2017%20Strider.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/08%20Thirty%20Seven%20After%20Six.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/09%20From%20Here%20to%20There%20in%20Under%20a%20Second.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/10%20Quaranta%20Giorni.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/11%20Xombies.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/12%20Only%20One.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/13%20Matter%20of%20Perspective.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/14%20Severed%20from%20the%20Vortessence.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/15%20Is%20Or%20Will%20Be.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/16%20What%20Did%20it%20Taste%20Like.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/17%20I%20Love%20This%20Gun.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/18%20Extra%20Dimensional%20Darkness.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/19%20Quantum%20Cubicles.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/20%20Infestation%20Control.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/21%20Deployed%20and%20Designated%20to%20Prosecute.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/22%20B3PbIBONACHOCTb.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/23%20Anti-Citizen.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/24%20Tri-Vector%20Pre-Reverberation.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/25%20Harsh%20Industrial%20Train%20Crash.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/26%20The%20Advisors.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/27%20Prisoner%20Pod.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/28-Charger.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/29-Scanning%20Hostile%20Biodats.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/30-Substation.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/31-Alien%20Flora.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/32-Alien%20Fauna.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/33-Requiem%20Vortessence.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/34-Lightning%20Dog.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/35-Arachnophobia.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/36-Rabid%20Lightning.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/37-Extract.%20Resonate.%20Isolate.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/38-Level-5%20Anti-Civil%20Activities.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/39-Vortessence%20Lux.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/40-Hacking.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/41-Outbreak%20is%20Uncontained.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/42-Processing%20Tripmines.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/43-Xenfestation%20Control.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/44-Sunset%20Vault.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/45-Ear%20Like%20Mozart.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/46-Jeff.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/47-Elevatormuzik.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/48-Trash%20Compactor%20Waltz.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/49-Quantum%20Antlion%20Tunnel.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/50-Cats.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/51-Beasts%20of%20Prey.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/52-Insects%20and%20Reptiles.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/53-The%20Last%20Substation.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/54-Trans%20Human%20Crossfire.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/55-Let%20Me%20Talk%20to%20Your%20Super-Advisor.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/56-Terin%20%236.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/57-Infestation%20Ambience.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/58-A%20Gentle%20Docking.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/59-Overload%20Protocol.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/60-Cauterizer.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/61-P1.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/62-Gravity%20Perforation%20Detail.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/63-Reality%20Disruption%20Pulse.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/64-Icosahedron.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/65-Supersymmetry%20Dilation.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/66-Stringularity.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/67-Ekpyrosis.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/68-Alice%20Matter.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/69-Gravity%20Grenade%20Conflict.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/70-Superimposition.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/71-Consequences.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck steam[6779]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/72-HIRE.flac
Mar 15 17:27:32 akideck steam[6779]: TagLib: FileRef::tag() - Called without a valid file.
Mar 15 17:27:32 akideck systemd[1202]: Reload requested from client PID 7537 ('systemctl') (unit steam-launcher.service)...
Mar 15 17:27:32 akideck systemd[1202]: Reloading...
Mar 15 17:27:32 akideck pkexec[7555]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:32 akideck pkexec[7555]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/jupiter-initial-firmware-update check]
Mar 15 17:27:32 akideck systemd[1202]: Reloading finished in 429 ms.
Mar 15 17:27:33 akideck systemd[1202]: Starting Accessibility services bus...
Mar 15 17:27:33 akideck systemd[1202]: Started Accessibility services bus.
Mar 15 17:27:33 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 7619, but reception is disabled
Mar 15 17:27:33 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 7623, but reception is disabled
Mar 15 17:27:33 akideck pkexec[7627]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:33 akideck pkexec[7627]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 17:27:33 akideck pkexec[7647]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:33 akideck pkexec[7647]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 17:27:33 akideck pkexec[7666]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:33 akideck pkexec[7666]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 17:27:34 akideck pkexec[7689]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:34 akideck pkexec[7689]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 17:27:34 akideck pkexec[7716]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:34 akideck pkexec[7716]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 15 17:27:38 akideck pkexec[7728]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:27:38 akideck pkexec[7728]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-dock-updater --check]
Mar 15 17:27:40 akideck systemd[1]: systemd-localed.service: Deactivated successfully.
Mar 15 17:28:03 akideck systemd[1]: systemd-timedated.service: Deactivated successfully.
Mar 15 17:28:30 akideck systemd[1]: Unmounting /efi...
Mar 15 17:28:30 akideck systemd[1]: efi.mount: Deactivated successfully.
Mar 15 17:28:30 akideck systemd[1]: Unmounted /efi.
Mar 15 17:29:28 akideck steam[6779]: [2025-03-15 17:29:28] Background update loop checking for update. . .
Mar 15 17:29:28 akideck steam[6779]: [2025-03-15 17:29:28] Checking for available updates...
Mar 15 17:29:28 akideck steam[6779]: [2025-03-15 17:29:28] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 15 17:29:28 akideck steam[6779]: [2025-03-15 17:29:28] Manifest download: send request
Mar 15 17:29:29 akideck steam[6779]: [2025-03-15 17:29:29] Manifest download: waiting for download to finish
Mar 15 17:29:29 akideck steam[6779]: [2025-03-15 17:29:29] Manifest download: finished
Mar 15 17:29:29 akideck steam[6779]: [2025-03-15 17:29:29] Download skipped: /steam_client_steamdeck_publicbeta_ubuntu12 version 1741737356, installed version 1741737356, existing pending version 0
Mar 15 17:29:29 akideck steam[6779]: [2025-03-15 17:29:29] Nothing to do
Mar 15 17:29:29 akideck pkexec[7763]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:29:29 akideck pkexec[7763]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --supports-duplicate-detection]
Mar 15 17:29:29 akideck pkexec[7775]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:29:29 akideck pkexec[7775]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --enable-duplicate-detection check]
Mar 15 17:29:30 akideck pkexec[7793]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 15 17:29:30 akideck pkexec[7793]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-biosupdate check]
Mar 15 17:29:30 akideck steam[6779]: Checking for BIOS updates
Mar 15 17:29:30 akideck steam[6779]: BIOS version: F7G0112
Mar 15 17:29:30 akideck steam[6779]: Desired version: <none>
Mar 15 17:29:30 akideck steam[6779]: No updates configured for this bios
Mar 15 17:36:57 akideck systemd-logind[871]: The system will suspend now!
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.6208] manager: sleep: sleep requested (sleeping: no  enabled: yes)
Mar 15 17:36:57 akideck wakehook[1483]: [wakehook] 1742085417.620772: Going to sleep? 1
Mar 15 17:36:57 akideck kernel: wlan0: deauthenticating from e8:9c:25:49:01:88 by local choice (Reason: 3=DEAUTH_LEAVING)
Mar 15 17:36:57 akideck steam[6779]: method return time=1742085417.620782 sender=:1.7 -> destination=:1.178 serial=512 reply_serial=2
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.6209] device (/net/connman/iwd/0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 15 17:36:57 akideck iwd[1201]: event: state, old: connected, new: disconnecting
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.6212] manager: NetworkManager state is now ASLEEP
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.6214] device (wlan0): state change: activated -> deactivating (reason 'sleeping', managed-type: 'full')
Mar 15 17:36:57 akideck systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 15 17:36:57 akideck systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 15 17:36:57 akideck iwd[1201]: event: state, old: disconnecting, new: disconnected
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.8833] device (wlan0): new IWD device state is disconnecting
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.8835] device (wlan0): new IWD device state is disconnected
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.8835] device (wlan0): state change: deactivating -> disconnected (reason 'sleeping', managed-type: 'full')
Mar 15 17:36:57 akideck avahi-daemon[802]: Withdrawing address record for fe80::ea8d:a6ff:fe77:9a8c on wlan0.
Mar 15 17:36:57 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::ea8d:a6ff:fe77:9a8c.
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.8841] dhcp4 (wlan0): canceled DHCP transaction
Mar 15 17:36:57 akideck avahi-daemon[802]: Interface wlan0.IPv6 no longer relevant for mDNS.
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.8841] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.8841] dhcp4 (wlan0): state changed no lease
Mar 15 17:36:57 akideck systemd-resolved[556]: wlan0: Bus client reset search domain list.
Mar 15 17:36:57 akideck systemd-resolved[556]: wlan0: Bus client set default route setting: no
Mar 15 17:36:57 akideck systemd-resolved[556]: wlan0: Bus client reset DNS server list.
Mar 15 17:36:57 akideck avahi-daemon[802]: Withdrawing address record for 192.168.0.112 on wlan0.
Mar 15 17:36:57 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Mar 15 17:36:57 akideck avahi-daemon[802]: Interface wlan0.IPv4 no longer relevant for mDNS.
Mar 15 17:36:57 akideck NetworkManager[1062]: <info>  [1742085417.9743] device (wlan0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 15 17:36:58 akideck systemd[1]: Reached target Sleep.
Mar 15 17:36:58 akideck systemd[1]: Starting System Suspend...
Mar 15 17:36:58 akideck systemd[1]: user.slice: Unit now frozen.
Mar 15 17:36:58 akideck systemd-sleep[7855]: Successfully froze unit 'user.slice'.
Mar 15 17:36:58 akideck systemd[1]: user-1000.slice: Unit now frozen-by-parent.
Mar 15 17:36:58 akideck systemd[1]: session-5.scope: Unit now frozen-by-parent.
Mar 15 17:36:58 akideck systemd[1]: session-4.scope: Unit now frozen-by-parent.
Mar 15 17:36:58 akideck systemd[1]: user@1000.service: Unit now frozen-by-parent.
Mar 15 17:36:58 akideck systemd-sleep[7855]: Performing sleep operation 'suspend'...
Mar 15 17:36:58 akideck kernel: PM: suspend entry (deep)
Mar 15 17:36:58 akideck kernel: Filesystems sync: 0.009 seconds
Mar 16 16:53:06 akideck kernel: Freezing user space processes
Mar 16 16:53:06 akideck kernel: Freezing user space processes completed (elapsed 0.001 seconds)
Mar 16 16:53:06 akideck kernel: OOM killer disabled.
Mar 16 16:53:06 akideck kernel: Freezing remaining freezable tasks
Mar 16 16:53:06 akideck kernel: Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
Mar 16 16:53:06 akideck kernel: printk: Suspending console(s) (use no_console_suspend to debug)
Mar 16 16:53:06 akideck kernel: ACPI: EC: interrupt blocked
Mar 16 16:53:06 akideck kernel: ACPI: PM: Preparing to enter system sleep state S3
Mar 16 16:53:06 akideck kernel: ACPI: EC: event blocked
Mar 16 16:53:06 akideck kernel: ACPI: EC: EC stopped
Mar 16 16:53:06 akideck kernel: ACPI: PM: Saving platform NVS memory
Mar 16 16:53:06 akideck kernel: Disabling non-boot CPUs ...
Mar 16 16:53:06 akideck kernel: smpboot: CPU 7 is now offline
Mar 16 16:53:06 akideck kernel: smpboot: CPU 6 is now offline
Mar 16 16:53:06 akideck kernel: smpboot: CPU 5 is now offline
Mar 16 16:53:06 akideck kernel: smpboot: CPU 4 is now offline
Mar 16 16:53:06 akideck kernel: smpboot: CPU 3 is now offline
Mar 16 16:53:06 akideck kernel: smpboot: CPU 2 is now offline
Mar 16 16:53:06 akideck kernel: smpboot: CPU 1 is now offline
Mar 16 16:53:06 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP off
Mar 16 16:53:06 akideck kernel: ACPI: PM: Low-level resume complete
Mar 16 16:53:06 akideck kernel: ACPI: EC: EC started
Mar 16 16:53:06 akideck kernel: ACPI: PM: Restoring platform NVS memory
Mar 16 16:53:06 akideck kernel: LVT offset 0 assigned for vector 0x400
Mar 16 16:53:06 akideck kernel: Enabling non-boot CPUs ...
Mar 16 16:53:06 akideck kernel: smpboot: Booting Node 0 Processor 1 APIC 0x1
Mar 16 16:53:06 akideck kernel: ACPI: \_SB_.PLTF.C001: Found 3 idle states
Mar 16 16:53:06 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
Mar 16 16:53:06 akideck kernel: CPU1 is up
Mar 16 16:53:06 akideck kernel: smpboot: Booting Node 0 Processor 2 APIC 0x2
Mar 16 16:53:06 akideck kernel: ACPI: \_SB_.PLTF.C002: Found 3 idle states
Mar 16 16:53:06 akideck kernel: CPU2 is up
Mar 16 16:53:06 akideck kernel: smpboot: Booting Node 0 Processor 3 APIC 0x3
Mar 16 16:53:06 akideck kernel: ACPI: \_SB_.PLTF.C003: Found 3 idle states
Mar 16 16:53:06 akideck kernel: CPU3 is up
Mar 16 16:53:06 akideck kernel: smpboot: Booting Node 0 Processor 4 APIC 0x4
Mar 16 16:53:06 akideck kernel: ACPI: \_SB_.PLTF.C004: Found 3 idle states
Mar 16 16:53:06 akideck kernel: CPU4 is up
Mar 16 16:53:06 akideck kernel: smpboot: Booting Node 0 Processor 5 APIC 0x5
Mar 16 16:53:06 akideck kernel: ACPI: \_SB_.PLTF.C005: Found 3 idle states
Mar 16 16:53:06 akideck kernel: CPU5 is up
Mar 16 16:53:06 akideck kernel: smpboot: Booting Node 0 Processor 6 APIC 0x6
Mar 16 16:53:06 akideck kernel: ACPI: \_SB_.PLTF.C006: Found 3 idle states
Mar 16 16:53:06 akideck kernel: CPU6 is up
Mar 16 16:53:06 akideck kernel: smpboot: Booting Node 0 Processor 7 APIC 0x7
Mar 16 16:53:06 akideck kernel: ACPI: \_SB_.PLTF.C007: Found 3 idle states
Mar 16 16:53:06 akideck kernel: CPU7 is up
Mar 16 16:53:06 akideck kernel: ACPI: PM: Waking up from system sleep state S3
Mar 16 16:53:06 akideck kernel: ACPI: EC: interrupt unblocked
Mar 16 16:53:06 akideck kernel: mhi mhi0: Requested to power ON
Mar 16 16:53:06 akideck kernel: mhi mhi0: Power on setup success
Mar 16 16:53:06 akideck kernel: mhi mhi0: Wait for device to enter SBL or Mission mode
Mar 16 16:53:06 akideck kernel: ACPI: EC: event unblocked
Mar 16 16:53:06 akideck kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000F43FC00000).
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: PSP is resuming...
Mar 16 16:53:06 akideck kernel: max98388 i2c-ADS8388:01: Reset completed (retry:0)
Mar 16 16:53:06 akideck kernel: max98388 i2c-ADS8388:00: Reset completed (retry:0)
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: reserve 0xa00000 from 0xf43e000000 for PSP TMR
Mar 16 16:53:06 akideck kernel: ath11k_pci 0000:03:00.0: chip_id 0x12 chip_family 0xb board_id 0x309 soc_id 0x400c1211
Mar 16 16:53:06 akideck kernel: ath11k_pci 0000:03:00.0: fw_version 0x110e7fff fw_build_timestamp 2024-05-28 15:10 fw_build_id WLAN.HSP.1.1-03926.13-QCAHSPSWPL_V2_SILICONZ_CE-2.52297.6
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resuming...
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: dpm has been disabled
Mar 16 16:53:06 akideck kernel: nvme nvme0: 8/0/0 default/read/poll queues
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resumed successfully!
Mar 16 16:53:06 akideck kernel: [drm] DMUB hardware initialized: version=0x0300000A
Mar 16 16:53:06 akideck kernel: usb 3-3: reset full-speed USB device number 2 using xhci_hcd
Mar 16 16:53:06 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 16 16:53:06 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 16 16:53:06 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 16 16:53:06 akideck kernel: [drm] kiq ring mec 2 pipe 1 q 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
Mar 16 16:53:06 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Mar 16 16:53:06 akideck kernel: OOM killer enabled.
Mar 16 16:53:06 akideck kernel: Restarting tasks ... 
Mar 16 16:53:06 akideck kernel: usb 1-1: USB disconnect, device number 18
Mar 16 16:53:06 akideck kernel: usb 1-1.4: USB disconnect, device number 19
Mar 16 16:53:06 akideck kernel: usb 2-1: USB disconnect, device number 2
Mar 16 16:53:06 akideck kernel: usb 2-1.3: USB disconnect, device number 3
Mar 16 16:53:06 akideck kernel: done.
Mar 16 16:53:06 akideck kernel: random: crng reseeded on system resumption
Mar 16 16:53:06 akideck kernel: PM: suspend exit
Mar 16 16:53:06 akideck kernel: usb 1-1.5: USB disconnect, device number 20
Mar 16 16:53:06 akideck systemd-resolved[556]: Clock change detected. Flushing caches.
Mar 16 16:53:06 akideck bluetoothd[803]: Controller resume with wake event 0x0
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Background update loop checking for update. . .
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Manifest download: send request
Mar 16 16:53:06 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: Got change event for KMS device
Mar 16 16:53:06 akideck gamescope-session[6522]: [gamescope] [Info]  drm: Connector eDP-1 -> VLV - ANX7530 U
Mar 16 16:53:06 akideck gamescope-session[6522]: [gamescope] [Info]  drm: Got known display: steamdeck_oled_boe (Steam Deck OLED (BOE))
Mar 16 16:53:06 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: EDID with colorimetry detected. Using it
Mar 16 16:53:06 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: r 0.684570 0.314453
Mar 16 16:53:06 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: g 0.245117 0.714844
Mar 16 16:53:06 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: b 0.137695 0.049805
Mar 16 16:53:06 akideck gamescope-session[6522]: [gamescope] [Info]  drm: [colorimetry]: w 0.312500 0.329102
Mar 16 16:53:06 akideck iwd[1201]: event: state, old: disconnected, new: autoconnect_quick
Mar 16 16:53:06 akideck iwd[1201]: Could not register frame watch type 00d0: -114
Mar 16 16:53:06 akideck wakehook[1483]: [wakehook] 1742169186.79958: Going to sleep? 0
Mar 16 16:53:06 akideck wakehook[1483]: [wakehook] 1742169186.80514: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (1/5)
Mar 16 16:53:06 akideck systemd-resolved[556]: Switching to fallback DNS server 1.1.1.1#cloudflare-dns.com.
Mar 16 16:53:06 akideck gamescope-session[7934]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:53:06 akideck gamescope-session[7934]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:53:06 akideck gamescope-session[7934]: >                   X11 cannot support keycodes above 255.
Mar 16 16:53:06 akideck gamescope-session[7934]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:53:06 akideck gamescope-session[7934]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:53:06 akideck gamescope-session[7934]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:53:06 akideck systemd-sleep[7855]: System returned from sleep operation 'suspend'.
Mar 16 16:53:06 akideck gamescope-session[7935]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:53:06 akideck gamescope-session[7935]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:53:06 akideck gamescope-session[7935]: >                   X11 cannot support keycodes above 255.
Mar 16 16:53:06 akideck gamescope-session[7935]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:53:06 akideck gamescope-session[7935]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:53:06 akideck gamescope-session[7935]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:53:06 akideck systemd[1]: Starting Update manpage database...
Mar 16 16:53:06 akideck gamescope-session[7936]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:53:06 akideck gamescope-session[7936]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:53:06 akideck gamescope-session[7936]: >                   X11 cannot support keycodes above 255.
Mar 16 16:53:06 akideck gamescope-session[7936]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:53:06 akideck gamescope-session[7936]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:53:06 akideck gamescope-session[7936]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:53:06 akideck systemd[1]: Started Verify integrity of password and group files.
Mar 16 16:53:06 akideck gamescope-session[7938]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:53:06 akideck gamescope-session[7938]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:53:06 akideck gamescope-session[7938]: >                   X11 cannot support keycodes above 255.
Mar 16 16:53:06 akideck gamescope-session[7938]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:53:06 akideck gamescope-session[7938]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:53:06 akideck gamescope-session[7938]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:53:06 akideck systemd[1]: user@1000.service: Unit now thawed.
Mar 16 16:53:06 akideck systemd[1]: session-4.scope: Unit now thawed.
Mar 16 16:53:06 akideck systemd[1]: session-5.scope: Unit now thawed.
Mar 16 16:53:06 akideck systemd[1]: user-1000.slice: Unit now thawed.
Mar 16 16:53:06 akideck systemd[1]: user.slice: Unit now thawed.
Mar 16 16:53:06 akideck systemd-sleep[7855]: Successfully thawed unit 'user.slice'.
Mar 16 16:53:06 akideck systemd[1]: systemd-suspend.service: Deactivated successfully.
Mar 16 16:53:06 akideck systemd[1]: Finished System Suspend.
Mar 16 16:53:06 akideck systemd[1]: Stopped target Sleep.
Mar 16 16:53:06 akideck systemd[1]: Reached target Suspend.
Mar 16 16:53:06 akideck systemd-logind[871]: Operation 'suspend' finished.
Mar 16 16:53:06 akideck systemd[1]: Stopped target Suspend.
Mar 16 16:53:06 akideck systemd-resolved[556]: Closing all remaining TCP connections.
Mar 16 16:53:06 akideck systemd-resolved[556]: Resetting learnt feature levels on all servers.
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.0806] manager: sleep: wake requested (sleeping: yes  enabled: yes)
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.0808] device (/net/connman/iwd/0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.0811] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 16 16:53:06 akideck systemd[1]: mandoc.service: Deactivated successfully.
Mar 16 16:53:06 akideck systemd[1]: Finished Update manpage database.
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.1257] manager: NetworkManager state is now DISCONNECTED
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.1259] device (/net/connman/iwd/0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
Mar 16 16:53:06 akideck systemd[1]: shadow.service: Deactivated successfully.
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.1680] device (wlan0): new IWD device state is disconnected
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.1681] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', managed-type: 'full')
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Manifest download: waiting for download to finish
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Manifest download: finished
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Download failed: http error 0 (client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12)
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Downloading manifest: https://client-update.akamai.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Manifest download: send request
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Manifest download: waiting for download to finish
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Manifest download: finished
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Download failed: http error 0 (client-update.akamai.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12)
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Downloading manifest: https://client-update.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Manifest download: send request
Mar 16 16:53:06 akideck systemd[1]: Starting Time & Date Service...
Mar 16 16:53:06 akideck systemd[1]: Started Time & Date Service.
Mar 16 16:53:06 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 8023, but reception is disabled
Mar 16 16:53:06 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 8028, but reception is disabled
Mar 16 16:53:06 akideck iwd[1201]: event: connect-info, ssid: The New Lunar Republic, bss: e8:9c:25:49:01:88, signal: -22, load: 28/255
Mar 16 16:53:06 akideck iwd[1201]: event: state, old: autoconnect_quick, new: connecting (auto)
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Manifest download: waiting for download to finish
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Manifest download: finished
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Download failed: http error 0 (client-update.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12)
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] DownloadManifest - exhausted list of download hosts
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] failed to load manifest from buffer.
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Failed to load manifest
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Error: Download failed: http error 0
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Saving metrics to disk (/home/deck/.local/share/Steam/package/steam_client_metrics.bin)
Mar 16 16:53:06 akideck steam[6779]: [2025-03-16 16:53:06] Error: Failed to determine download location for universe 1
Mar 16 16:53:06 akideck kernel: wlan0: authenticate with e8:9c:25:49:01:88 (local address=e8:8d:a6:77:9a:8c)
Mar 16 16:53:06 akideck kernel: wlan0: send auth to e8:9c:25:49:01:88 (try 1/3)
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.9245] device (wlan0): new IWD device state is connecting
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.9250] device (wlan0): Activation: starting connection 'The New Lunar Republic' (bdd53fc7-001f-41f5-8338-3dcbce226f2c)
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.9256] device (wlan0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.9257] manager: NetworkManager state is now CONNECTING
Mar 16 16:53:06 akideck NetworkManager[1062]: <info>  [1742169186.9259] device (wlan0): state change: prepare -> config (reason 'none', managed-type: 'full')
Mar 16 16:53:06 akideck pkexec[8034]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 16:53:06 akideck pkexec[8034]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --enable-duplicate-detection check]
Mar 16 16:53:06 akideck kernel: wlan0: authenticate with e8:9c:25:49:01:88 (local address=e8:8d:a6:77:9a:8c)
Mar 16 16:53:06 akideck kernel: wlan0: send auth to e8:9c:25:49:01:88 (try 1/3)
Mar 16 16:53:06 akideck kernel: wlan0: authenticated
Mar 16 16:53:06 akideck kernel: wlan0: associate with e8:9c:25:49:01:88 (try 1/3)
Mar 16 16:53:07 akideck kernel: wlan0: RX AssocResp from e8:9c:25:49:01:88 (capab=0x1011 status=0 aid=21)
Mar 16 16:53:07 akideck kernel: ath11k_pci 0000:03:00.0: mac0-5 cap 9-0-0-8a-40-0
Mar 16 16:53:07 akideck kernel: ath11k_pci 0000:03:00.0: phy0-5 cap c-33-c-80-fd-9
Mar 16 16:53:07 akideck kernel: ath11k_pci 0000:03:00.0: phy6-10 cap 80-8-0-0-0
Mar 16 16:53:07 akideck kernel: ath11k_pci 0000:03:00.0: WMI_VDEV_PARAM_SET_HEMU_MODE 3 0x35
Mar 16 16:53:07 akideck kernel: wlan0: associated
Mar 16 16:53:07 akideck kernel: wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by e8:9c:25:49:01:88
Mar 16 16:53:07 akideck atomupd-daemon[8050]: WARNING:client.py:780: Unable to get JSON from server: <urlopen error [Errno -3] Temporary failure in name resolution>
Mar 16 16:53:07 akideck wakehook[1483]: [wakehook] 1742169187.80761: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (2/5)
Mar 16 16:53:07 akideck iwd[1201]: event: state, old: connecting (auto), new: connected
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.1045] device (wlan0): new IWD device state is connected
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.1150] device (wlan0): state change: config -> ip-config (reason 'none', managed-type: 'full')
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.1165] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.1266] dhcp4 (wlan0): state changed new lease, address=192.168.0.112, acd pending
Mar 16 16:53:07 akideck pkexec[8053]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 16:53:07 akideck pkexec[8053]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-biosupdate check]
Mar 16 16:53:07 akideck steam[6779]: Checking for BIOS updates
Mar 16 16:53:07 akideck steam[6779]: BIOS version: F7G0112
Mar 16 16:53:07 akideck steam[6779]: Desired version: <none>
Mar 16 16:53:07 akideck steam[6779]: No updates configured for this bios
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.2737] dhcp4 (wlan0): state changed new lease, address=192.168.0.112
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.2740] policy: set 'The New Lunar Republic' (wlan0) as default for IPv4 routing and DNS
Mar 16 16:53:07 akideck systemd-resolved[556]: wlan0: Bus client set search domain list to: lunarrepublic
Mar 16 16:53:07 akideck systemd-resolved[556]: wlan0: Bus client set default route setting: yes
Mar 16 16:53:07 akideck systemd-resolved[556]: wlan0: Bus client set DNS server list to: 192.168.0.1
Mar 16 16:53:07 akideck avahi-daemon[802]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Mar 16 16:53:07 akideck avahi-daemon[802]: New relevant interface wlan0.IPv4 for mDNS.
Mar 16 16:53:07 akideck avahi-daemon[802]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.3002] device (wlan0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.3015] device (wlan0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.3016] device (wlan0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.3019] manager: NetworkManager state is now CONNECTED_SITE
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.3020] device (wlan0): Activation: successful, device activated.
Mar 16 16:53:07 akideck steam[6779]: [2025-03-16 16:53:07] Error: Failed to determine download location for universe 1
Mar 16 16:53:07 akideck steam[6779]: [2025-03-16 16:53:07] Background update loop checking for update. . .
Mar 16 16:53:07 akideck steam[6779]: [2025-03-16 16:53:07] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 16 16:53:07 akideck steam[6779]: [2025-03-16 16:53:07] Manifest download: send request
Mar 16 16:53:07 akideck NetworkManager[1062]: <info>  [1742169187.6467] manager: NetworkManager state is now CONNECTED_GLOBAL
Mar 16 16:53:07 akideck steam[6779]: [2025-03-16 16:53:07] Manifest download: waiting for download to finish
Mar 16 16:53:08 akideck wakehook[1483]: [wakehook] 1742169188.81063: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (3/5)
Mar 16 16:53:08 akideck avahi-daemon[802]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::ea8d:a6ff:fe77:9a8c.
Mar 16 16:53:08 akideck avahi-daemon[802]: New relevant interface wlan0.IPv6 for mDNS.
Mar 16 16:53:08 akideck avahi-daemon[802]: Registering new address record for fe80::ea8d:a6ff:fe77:9a8c on wlan0.*.
Mar 16 16:53:08 akideck steam[6779]: [2025-03-16 16:53:08] Manifest download: finished
Mar 16 16:53:08 akideck steam[6779]: [2025-03-16 16:53:08] Download skipped by HTTP 304 Not Modified
Mar 16 16:53:08 akideck steam[6779]: [2025-03-16 16:53:08] Nothing to do
Mar 16 16:53:09 akideck wakehook[1483]: [wakehook] 1742169189.81361: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (4/5)
Mar 16 16:53:10 akideck wakehook[1483]: [wakehook] 1742169190.81585: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (5/5)
Mar 16 16:53:10 akideck systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Mar 16 16:53:11 akideck wakehook[1483]: [wakehook] 1742169191.81662: Failed to call org.kde.plasma.remotecontrollers.CEC.powerOnDevices: -113 No route to host
Mar 16 16:53:20 akideck gamescope-session[8227]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:53:20 akideck gamescope-session[8228]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:53:20 akideck gamescope-session[8227]: >
Mar 16 16:53:20 akideck gamescope-session[8228]: > Warning:
Mar 16 16:53:20 akideck gamescope-session[8227]: Warning:
Mar 16 16:53:20 akideck gamescope-session[8228]: Unsupported maximum keycode 708, clipping.
Mar 16 16:53:20 akideck gamescope-session[8227]: Unsupported maximum keycode 708, clipping.
Mar 16 16:53:20 akideck gamescope-session[8228]: >
Mar 16 16:53:20 akideck gamescope-session[8227]: >
Mar 16 16:53:20 akideck gamescope-session[8228]:                   
Mar 16 16:53:20 akideck gamescope-session[8227]:                   
Mar 16 16:53:20 akideck gamescope-session[8228]: X11 cannot support keycodes above 255.
Mar 16 16:53:20 akideck gamescope-session[8227]: X11 cannot support keycodes above 255.
Mar 16 16:53:20 akideck gamescope-session[8227]: >
Mar 16 16:53:20 akideck gamescope-session[8228]: >
Mar 16 16:53:20 akideck gamescope-session[8227]: Warning:
Mar 16 16:53:20 akideck gamescope-session[8228]: Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:53:20 akideck gamescope-session[8227]: Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:53:20 akideck gamescope-session[8228]: > Warning:
Mar 16 16:53:20 akideck gamescope-session[8227]: >
Mar 16 16:53:20 akideck gamescope-session[8228]: Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:53:20 akideck gamescope-session[8227]: Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:53:20 akideck gamescope-session[8227]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:53:20 akideck gamescope-session[8228]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:53:21 akideck steam[6779]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 16 16:53:21 akideck steam[6779]: Proton: Upgrading prefix from 8.0-103 to 9.0-203 (/home/deck/.local/share/Steam/steamapps/compatdata/2254740/)
Mar 16 16:53:23 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:23 akideck steam[6779]: fsync: up and running.
Mar 16 16:53:23 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:24 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:24 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:24 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:25 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:25 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:25 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:25 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:25 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:53:25 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:53:25 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:53:25 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:53:26 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:53:26 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:53:26 akideck steam[6779]: ATTENTION: default value of option vk_wsi_force_swapchain_to_current_extent overridden by environment.
Mar 16 16:53:26 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:53:26 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:53:26 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:26 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:26 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:28 akideck kernel: input: Microsoft X-Box 360 pad 0 as /devices/virtual/input/input47
Mar 16 16:53:28 akideck steam[6779]: Fossilize INFO: Setting autogroup scheduling.
Mar 16 16:53:29 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:30 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:30 akideck steam[6779]: regsvr32: Successfully unregistered DLL 'C:\windows\\Microsoft.NET\Framework\v4.0.30319\diasymreader.dll'
Mar 16 16:53:30 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:30 akideck steam[6779]: regsvr32: Successfully unregistered DLL 'C:\windows\\Microsoft.NET\Framework64\v4.0.30319\diasymreader.dll'
Mar 16 16:53:31 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:31 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:31 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:32 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:32 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:35 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (0 suppressed)
Mar 16 16:53:35 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/6 s:2620562676876 a:2620563149561 f:2620563163171 waiting:472685 process:13610 status:triggered
Mar 16 16:53:35 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:2620590409321 a:2620562953849 f:2620563145851 waiting:18446744073682096144 process:192002 status:triggered
Mar 16 16:53:35 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 16:53:36 akideck systemd[1]: systemd-timedated.service: Deactivated successfully.
Mar 16 16:53:36 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:37 akideck steam[6779]: wine: configuration in L"/home/deck/.local/share/Steam/steamapps/compatdata/2254740/pfx" has been updated.
Mar 16 16:53:37 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:37 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:53:37 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:53:37 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:53:37 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:53:37 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:38 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 16:53:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/1 s:2624733326886 a:2624736690989 f:2624736704959 waiting:3364103 process:13970 status:triggered
Mar 16 16:53:40 akideck steam[6779]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 16 16:53:42 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:42 akideck steam[6779]: fsync: up and running.
Mar 16 16:53:42 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:42 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:42 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:42 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:44 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:44 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:45 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:45 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:53:45 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:53:45 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:53:45 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:53:45 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:53:45 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:53:45 akideck steam[6779]: ATTENTION: default value of option vk_wsi_force_swapchain_to_current_extent overridden by environment.
Mar 16 16:53:45 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:53:45 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:53:45 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:45 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:53:45 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:54:03 akideck steam[6779]: Fossilize INFO: Setting autogroup scheduling.
Mar 16 16:54:55 akideck steam[6779]: Fossilize INFO: Setting autogroup scheduling.
Mar 16 16:54:56 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: Updating mode for xwayland server #1: 1280x800@90
Mar 16 16:54:56 akideck steam[6779]: chdir "/home/deck/.local/share/Steam/steamapps/common/Trackmania"
Mar 16 16:54:56 akideck steam[6779]: ERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Mar 16 16:54:56 akideck steam[6779]: Adding process 8842 for gameID 2225070
Mar 16 16:54:56 akideck steam[6779]: Clearing capture only gameID
Mar 16 16:54:56 akideck steam[6779]: Setting capture only gameID to 2225070
Mar 16 16:54:56 akideck steam[6779]: ------------------------------------------------------------------------------------------------------
Mar 16 16:54:56 akideck steam[6779]: Starting new game recording session for 2225070
Mar 16 16:54:56 akideck steam[6779]: Creating new audio encoder for codec 5
Mar 16 16:54:56 akideck steam[6779]: ERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Mar 16 16:54:56 akideck steam[6779]: Encoder audio init succeeded, now have 1 encoder(s)
Mar 16 16:54:56 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:56 akideck steam[6779]: 1 game pids rooted at pid 8842:
Mar 16 16:54:56 akideck steam[6779]: - 8842
Mar 16 16:54:56 akideck steam[6779]: Caching cursor image for se-resize, size 24x24, serial 53, cache size = 1
Mar 16 16:54:56 akideck steam[6779]: ERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
Mar 16 16:54:56 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:54:56 akideck steam[6779]: Window title set to Steam Big Picture Mode
Mar 16 16:54:56 akideck steam[6779]: >>> Starting desktop stream
Mar 16 16:54:56 akideck steam[6779]: Recording system audio
Mar 16 16:54:56 akideck steam[6779]: ERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to connecting
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to paused
Mar 16 16:54:56 akideck steam[6779]: PulseAudio: Sink alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink is default
Mar 16 16:54:56 akideck steam[6779]: PulseAudio: Adding sink[248] alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink with priority 3, monitor is alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink.monitorERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Mar 16 16:54:56 akideck steam[6779]: PulseAudio: Adding sink[250] alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Headphones__sink with priority 1, monitor is alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Headphones__sink.monitor
Mar 16 16:54:56 akideck steam[6779]: PulseAudio: Recording on device alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink.monitor
Mar 16 16:54:56 akideck steam[6779]: Audio mix: start=103512610992, returned=0
Mar 16 16:54:56 akideck steam[6779]: Audio source [System Pulse]: init=0, adjustment=0, through=0, last_start=0, mixed=0, drop_before=0, drop_after=0
Mar 16 16:54:56 akideck steam[6779]: Adding process 8846 for gameID 2225070
Mar 16 16:54:56 akideck steam[6779]: >>> Switching video stream from NONE to Desktop_MovieStream
Mar 16 16:54:56 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:56 akideck steam[6779]: 3 game pids rooted at pid 8842:
Mar 16 16:54:56 akideck steam[6779]: - 8842,8846,8848
Mar 16 16:54:56 akideck steam[6779]: Adding process 8848 for gameID 2225070
Mar 16 16:54:56 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:56 akideck steam[6779]: 3 game pids rooted at pid 8842:
Mar 16 16:54:56 akideck steam[6779]: - 8842,8846,8848
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream format changed (size: 1280x800, format 23, stride 1280, size 1536000, dmabuf: 0)
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: updating capture appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream format changed (size: 1280x800, format 23, stride 1280, size 1536000, dmabuf: 0)
Mar 16 16:54:56 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to streaming
Mar 16 16:54:56 akideck gamescope-session[6522]: [gamescope] [Info]  pipewire: stream state changed: streaming
Mar 16 16:54:56 akideck gamescope-session[6522]: [gamescope] [Info]  xwm: Exposing appid 2225070 (2225070 32-bit) focus-wise on pipewire stream.
Mar 16 16:54:56 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:54:56 akideck steam[6779]: PulseAudio: Connected to device alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink.monitor (248, not suspended).
Mar 16 16:54:56 akideck steam[6779]: PulseAudio: Using sample spec 's16le 2ch 48000Hz', channel map 'front-left,front-right'.
Mar 16 16:54:56 akideck systemd[1]: Starting Time & Date Service...
Mar 16 16:54:56 akideck systemd[1]: Started Time & Date Service.
Mar 16 16:54:56 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 8877, but reception is disabled
Mar 16 16:54:56 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 8882, but reception is disabled
Mar 16 16:54:57 akideck steam[6779]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/usr/lib32:/usr/lib/perf:/usr/lib:/home/deck/.local/share/Steam/steamapps/common/Trackmania", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 16 16:54:57 akideck steam[6779]: Adding process 8958 for gameID 2225070
Mar 16 16:54:57 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:57 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:54:57 akideck steam[6779]: - 8842,8846,8848,8958
Mar 16 16:54:57 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:54:57 akideck steam[6779]: Adding process 8959 for gameID 2225070
Mar 16 16:54:57 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:57 akideck steam[6779]: 5 game pids rooted at pid 8842:
Mar 16 16:54:57 akideck steam[6779]: - 8842,8846,8848,8958,8959
Mar 16 16:54:57 akideck steam[6779]: fsync: up and running.
Mar 16 16:54:57 akideck steam[6779]: Adding process 8961 for gameID 2225070
Mar 16 16:54:57 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:57 akideck steam[6779]: 6 game pids rooted at pid 8842:
Mar 16 16:54:57 akideck steam[6779]: - 8842,8846,8848,8958,8959,8961
Mar 16 16:54:58 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:54:58 akideck steam[6779]: Adding process 8962 for gameID 2225070
Mar 16 16:54:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:58 akideck steam[6779]: 7 game pids rooted at pid 8842:
Mar 16 16:54:58 akideck steam[6779]: - 8842,8846,8848,8958,8959,8961,8962
Mar 16 16:54:58 akideck steam[6779]: Adding process 8965 for gameID 2225070
Mar 16 16:54:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:58 akideck steam[6779]: 8 game pids rooted at pid 8842:
Mar 16 16:54:58 akideck steam[6779]: - 8842,8846,8848,8958,8959,8961,8962,8965
Mar 16 16:54:58 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:54:58 akideck steam[6779]: Adding process 8967 for gameID 2225070
Mar 16 16:54:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:58 akideck steam[6779]: 9 game pids rooted at pid 8842:
Mar 16 16:54:58 akideck steam[6779]: - 8842,8846,8848,8958,8959,8961,8962,8965,8967
Mar 16 16:54:58 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:54:58 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:54:58 akideck steam[6779]: Adding process 8970 for gameID 2225070
Mar 16 16:54:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:58 akideck steam[6779]: 10 game pids rooted at pid 8842:
Mar 16 16:54:58 akideck steam[6779]: - 8842,8846,8848,8958,8959,8961,8962,8965,8967,8970
Mar 16 16:54:58 akideck steam[6779]: Adding process 8980 for gameID 2225070
Mar 16 16:54:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:58 akideck steam[6779]: 11 game pids rooted at pid 8842:
Mar 16 16:54:58 akideck steam[6779]: - 8842,8846,8848,8958,8959,8961,8962,8965,8967,8970,8980
Mar 16 16:54:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:58 akideck steam[6779]: 8 game pids rooted at pid 8842:
Mar 16 16:54:58 akideck steam[6779]: - 8842,8846,8958,8961,8965,8967,8970,8980
Mar 16 16:54:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:58 akideck steam[6779]: 8 game pids rooted at pid 8842:
Mar 16 16:54:58 akideck steam[6779]: - 8842,8846,8958,8961,8965,8967,8970,8980
Mar 16 16:54:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:58 akideck steam[6779]: 8 game pids rooted at pid 8842:
Mar 16 16:54:58 akideck steam[6779]: - 8842,8846,8958,8961,8965,8967,8970,8980
Mar 16 16:54:59 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:54:59 akideck steam[6779]: Adding process 8996 for gameID 2225070
Mar 16 16:54:59 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:59 akideck steam[6779]: 9 game pids rooted at pid 8842:
Mar 16 16:54:59 akideck steam[6779]: - 8842,8846,8958,8961,8965,8967,8970,8980,8996
Mar 16 16:54:59 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:54:59 akideck steam[6779]: Adding process 9002 for gameID 2225070
Mar 16 16:54:59 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:54:59 akideck steam[6779]: 10 game pids rooted at pid 8842:
Mar 16 16:54:59 akideck steam[6779]: - 8842,8846,8958,8961,8965,8967,8970,8980,8996,9002
Mar 16 16:54:59 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:54:59 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:54:59 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:54:59 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:54:59 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:54:59 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:54:59 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:54:59 akideck steam[6779]: ATTENTION: default value of option vk_wsi_force_swapchain_to_current_extent overridden by environment.
Mar 16 16:54:59 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:54:59 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:54:59 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:54:59 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:00 akideck steam[6779]: Adding process 9017 for gameID 2225070
Mar 16 16:55:00 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:00 akideck steam[6779]: 11 game pids rooted at pid 8842:
Mar 16 16:55:00 akideck steam[6779]: - 8842,8846,8958,8961,8965,8967,8970,8980,8996,9002,9017
Mar 16 16:55:00 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:00 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:00 akideck steam[6779]: 10 game pids rooted at pid 8842:
Mar 16 16:55:00 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017
Mar 16 16:55:00 akideck steam[6779]: Adding window 16777217 for process 8961 and gameID 2225070
Mar 16 16:55:00 akideck steam[6779]: Adding window 12582925 for process 8961 and gameID 2225070
Mar 16 16:55:00 akideck steam[6779]: Adding window 16777218 for process 8961 and gameID 2225070
Mar 16 16:55:00 akideck steam[6779]: Adding window 16777219 for process 8961 and gameID 2225070
Mar 16 16:55:00 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:00 akideck steam[6779]: Setting breakpad minidump AppID = 2225070
Mar 16 16:55:00 akideck steam[6779]: Steam_SetMinidumpSteamID:  Caching Steam ID:  76561197989728462 [API loaded no]
Mar 16 16:55:00 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:00 akideck steam[6779]: Adding process 9034 for gameID 2225070
Mar 16 16:55:00 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:00 akideck steam[6779]: 11 game pids rooted at pid 8842:
Mar 16 16:55:00 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9034
Mar 16 16:55:02 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:02 akideck steam[6779]: Adding process 9039 for gameID 2225070
Mar 16 16:55:02 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:02 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:02 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9034,9039
Mar 16 16:55:02 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:02 akideck steam[6779]: 11 game pids rooted at pid 8842:
Mar 16 16:55:02 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039
Mar 16 16:55:03 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:03 akideck steam[6779]: Adding process 9047 for gameID 2225070
Mar 16 16:55:03 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:03 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:03 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047
Mar 16 16:55:06 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:55:06 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:55:06 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:07 akideck steam[6779]: Adding process 9052 for gameID 2225070
Mar 16 16:55:07 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:07 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:07 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9052
Mar 16 16:55:08 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:08 akideck steam[6779]: Adding process 9056 for gameID 2225070
Mar 16 16:55:08 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:08 akideck steam[6779]: 14 game pids rooted at pid 8842:
Mar 16 16:55:08 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9052,9056
Mar 16 16:55:08 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:08 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:08 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9056
Mar 16 16:55:09 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:09 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:09 akideck steam[6779]: Adding process 9059 for gameID 2225070
Mar 16 16:55:09 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:09 akideck steam[6779]: 14 game pids rooted at pid 8842:
Mar 16 16:55:09 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9056,9059
Mar 16 16:55:09 akideck steam[6779]: regsvr32: 'DllUnregisterServer' not implemented in DLL 'npuplaypc.dll'
Mar 16 16:55:09 akideck steam[6779]: Adding process 9061 for gameID 2225070
Mar 16 16:55:09 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:09 akideck steam[6779]: 15 game pids rooted at pid 8842:
Mar 16 16:55:09 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9056,9059,9061
Mar 16 16:55:09 akideck steam[6779]: Adding window 25165825 for process 9047 and gameID 2225070
Mar 16 16:55:09 akideck steam[6779]: Adding window 23068685 for process 9047 and gameID 2225070
Mar 16 16:55:09 akideck steam[6779]: Adding window 25165826 for process 9047 and gameID 2225070
Mar 16 16:55:09 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:09 akideck steam[6779]: regsvr32: 'DllUnregisterServer' not implemented in DLL 'npuplaypchub.dll'
Mar 16 16:55:09 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:09 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:09 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9061
Mar 16 16:55:09 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:09 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:09 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9061
Mar 16 16:55:09 akideck steam[6779]: Adding window 25165827 for process 9047 and gameID 2225070
Mar 16 16:55:09 akideck steam[6779]: Adding window 25165828 for process 9047 and gameID 2225070
Mar 16 16:55:09 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:09 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:09 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:09 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047
Mar 16 16:55:09 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:10 akideck steam[6779]: Adding process 9085 for gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:10 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:10 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9085
Mar 16 16:55:10 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (0 suppressed)
Mar 16 16:55:10 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/6 s:2715652207038 a:2715652464080 f:2715652476511 waiting:257042 process:12431 status:triggered
Mar 16 16:55:10 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:55:10 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:55:10 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:55:10 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:55:10 akideck steam[6779]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 16:55:10 akideck steam[6779]: Fossilize INFO: Overriding serialization path: "/home/deck/.local/share/Steam/steamapps/shadercache/2225070/fozpipelinesv6/steamapprun_pipeline_cache".
Mar 16 16:55:10 akideck steam[6779]: [Gamescope WSI] Creating Gamescope surface: xid: 0x1a00020
Mar 16 16:55:10 akideck steam[6779]: [Gamescope WSI] Atom of T was wrong type. Expected XCB_ATOM_CARDINAL.
Mar 16 16:55:10 akideck steam[6779]: [Gamescope WSI] Made gamescope surface for xid: 0x1a00020
Mar 16 16:55:10 akideck steam[6779]: [Gamescope WSI] Surface state:
Mar 16 16:55:10 akideck steam[6779]:   steam app id:                  2225070
Mar 16 16:55:10 akideck steam[6779]:   window xid:                    0x1a00020
Mar 16 16:55:10 akideck steam[6779]:   wayland surface res id:        5
Mar 16 16:55:10 akideck steam[6779]:   layer client flags:            0x0
Mar 16 16:55:10 akideck steam[6779]:   server hdr output enabled:     true
Mar 16 16:55:10 akideck steam[6779]:   hdr formats exposed to client: true
Mar 16 16:55:10 akideck steam[6779]: Adding window 29360129 for process 9085 and gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: Adding window 27263007 for process 9085 and gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: Adding window 29360130 for process 9085 and gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: Adding window 27263008 for process 9085 and gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:10 akideck steam[6779]: Adding window 25165829 for process 9047 and gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:10 akideck steam[6779]: Adding window 25165830 for process 9047 and gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: Adding window 25165831 for process 9047 and gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:10 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:10 akideck gamescope-session[6522]: [gamescope] [Warn]  xwm: got the same buffer committed twice, ignoring.
Mar 16 16:55:10 akideck steam[6779]: Adding window 25165833 for process 9047 and gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: Caching cursor image for left_ptr, size 32x32, serial 4, cache size = 1
Mar 16 16:55:10 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:10 akideck steam[6779]: Adding process 9116 for gameID 2225070
Mar 16 16:55:10 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:10 akideck steam[6779]: 14 game pids rooted at pid 8842:
Mar 16 16:55:10 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9085,9116
Mar 16 16:55:10 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:11 akideck steam[6779]: Adding process 9120 for gameID 2225070
Mar 16 16:55:11 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:11 akideck steam[6779]: 15 game pids rooted at pid 8842:
Mar 16 16:55:11 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9085,9116,9120
Mar 16 16:55:11 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:11 akideck steam[6779]: Adding process 9123 for gameID 2225070
Mar 16 16:55:11 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:11 akideck steam[6779]: 16 game pids rooted at pid 8842:
Mar 16 16:55:11 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9085,9116,9120,9123
Mar 16 16:55:11 akideck steam[6779]: Building new pipeline
Mar 16 16:55:11 akideck steam[6779]: Trying to create an encoder for recording: [hardware_enabled=true][hardware_suppressed=false]
Mar 16 16:55:11 akideck steam[6779]: Allowed Codecs: 4
Mar 16 16:55:11 akideck steam[6779]: Created encoder VAAPI for codec 4
Mar 16 16:55:11 akideck steam[6779]: CGameStreamVideoStageVAAPI: Reinitializing 1280x800 at 7500 Kbit/s and 60.00 FPS with quality 1
Mar 16 16:55:11 akideck steam[6779]: Video Encoder Changed
Mar 16 16:55:11 akideck steam[6779]: >>> Saw first frame, starting a session
Mar 16 16:55:11 akideck steam[6779]: Game Recording - Recording Started [recording=bg_2225070_20250316_235511]
Mar 16 16:55:11 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:11 akideck steam[6779]: Window title set to Ubisoft Connect
Mar 16 16:55:11 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 16:55:11 akideck steam[6779]: >>> Recording new resolution 1280x800 using bitrate 7500kbps
Mar 16 16:55:11 akideck steam[6779]: >>> Capture method set to Desktop PipeWire NV12 + VAAPI H264
Mar 16 16:55:11 akideck steam[6779]: Removing window 25165829 for process 9047 and gameID 2225070
Mar 16 16:55:11 akideck steam[6779]: >>> First audio pts is 103527.608325s
Mar 16 16:55:11 akideck steam[6779]: >>> First video pts is 103527.648871s, first video PTS is 0.066666s
Mar 16 16:55:11 akideck steam[6779]: Retention interval for background recording game 2225070 is 7200 seconds
Mar 16 16:55:11 akideck steam[6779]: >>> Audio deltas: first audio frame 103527.608325s, first video frame 103527.648871s, first video PTS 0.066666s. Resulting first audio sample is -1946 (-0.040542s)
Mar 16 16:55:11 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:11 akideck steam[6779]: Adding process 9133 for gameID 2225070
Mar 16 16:55:11 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:11 akideck steam[6779]: 17 game pids rooted at pid 8842:
Mar 16 16:55:11 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9085,9116,9120,9123,9133
Mar 16 16:55:11 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 16:55:11 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:11 akideck steam[6779]: Adding process 9137 for gameID 2225070
Mar 16 16:55:11 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:11 akideck steam[6779]: 18 game pids rooted at pid 8842:
Mar 16 16:55:11 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9085,9116,9120,9123,9133,9137
Mar 16 16:55:11 akideck steam[6779]: Adding window 25165835 for process 9047 and gameID 2225070
Mar 16 16:55:11 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:11 akideck steam[6779]: Removing window 25165830 for process 9047 and gameID 2225070
Mar 16 16:55:11 akideck steam[6779]: Adding window 25165836 for process 9047 and gameID 2225070
Mar 16 16:55:11 akideck steam[6779]: Adding window 25165838 for process 9047 and gameID 2225070
Mar 16 16:55:11 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:11 akideck steam[6779]: Removing window 25165836 for process 9047 and gameID 2225070
Mar 16 16:55:12 akideck steam[6779]: Adding window 25165839 for process 9047 and gameID 2225070
Mar 16 16:55:12 akideck steam[6779]: Adding window 25165841 for process 9047 and gameID 2225070
Mar 16 16:55:12 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:12 akideck steam[6779]: Removing window 25165839 for process 9047 and gameID 2225070
Mar 16 16:55:12 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:14 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241128_093135, maxKeepMS=77336, newDurationMS=74922: OK
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:15 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:16 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:17 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:17 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:17 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:18 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:19 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:19 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:26 akideck systemd[1]: systemd-timedated.service: Deactivated successfully.
Mar 16 16:55:27 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:27 akideck steam[6779]: Window title set to Steam Big Picture Mode
Mar 16 16:55:27 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:27 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:27 akideck steam[6779]: Adding process 9226 for gameID 2225070
Mar 16 16:55:27 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:27 akideck steam[6779]: 19 game pids rooted at pid 8842:
Mar 16 16:55:27 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9047,9085,9116,9120,9123,9133,9137,9226
Mar 16 16:55:27 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:27 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:27 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226
Mar 16 16:55:27 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:27 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:27 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226
Mar 16 16:55:27 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:27 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:27 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226
Mar 16 16:55:27 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:27 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:27 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226
Mar 16 16:55:27 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:27 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:27 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226
Mar 16 16:55:27 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:27 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:27 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226
Mar 16 16:55:27 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:27 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:27 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226
Mar 16 16:55:27 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:29 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:55:29 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:55:30 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:30 akideck steam[6779]: Adding process 9230 for gameID 2225070
Mar 16 16:55:30 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:30 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:30 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226,9230
Mar 16 16:55:31 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:31 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:31 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226
Mar 16 16:55:38 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:38 akideck steam[6779]: Adding process 9233 for gameID 2225070
Mar 16 16:55:38 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:38 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:38 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9226,9233
Mar 16 16:55:38 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:38 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:38 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233
Mar 16 16:55:41 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:55:41 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:55:42 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:42 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:42 akideck steam[6779]: Adding process 9237 for gameID 2225070
Mar 16 16:55:42 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:42 akideck steam[6779]: 14 game pids rooted at pid 8842:
Mar 16 16:55:42 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9237,9239
Mar 16 16:55:42 akideck steam[6779]: Adding process 9239 for gameID 2225070
Mar 16 16:55:42 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:42 akideck steam[6779]: 14 game pids rooted at pid 8842:
Mar 16 16:55:42 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9237,9239
Mar 16 16:55:44 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:44 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:44 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233
Mar 16 16:55:44 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:44 akideck steam[6779]: 12 game pids rooted at pid 8842:
Mar 16 16:55:44 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233
Mar 16 16:55:44 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:44 akideck steam[6779]: Adding process 9248 for gameID 2225070
Mar 16 16:55:44 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:44 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:44 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9248
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: 03/16 16:55:44 Init: Installing breakpad exception handler for appid(steam)/version(1741737356)/tid(6800)
Mar 16 16:55:44 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:44 akideck steam[6779]: assert_20250316165544_137.dmp[9267]: Uploading dump (out-of-process)
Mar 16 16:55:44 akideck assert_20250316165544_137.dmp[9267]: Uploading dump (out-of-process)
                                                             /tmp/dumps/assert_20250316165544_137.dmp
Mar 16 16:55:44 akideck steam[6779]: /tmp/dumps/assert_20250316165544_137.dmp
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:44 akideck steam[6779]: Adding process 9265 for gameID 2225070
Mar 16 16:55:44 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:44 akideck steam[6779]: 14 game pids rooted at pid 8842:
Mar 16 16:55:44 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9248,9265
Mar 16 16:55:44 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:44 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241128_093135, maxKeepMS=47341, newDurationMS=44922: OK
Mar 16 16:55:44 akideck assert_20250316165544_137.dmp[9267]: Finished uploading minidump (out-of-process): success = yes
Mar 16 16:55:44 akideck steam[6779]: assert_20250316165544_137.dmp[9267]: Finished uploading minidump (out-of-process): success = yes
Mar 16 16:55:44 akideck steam[6779]: assert_20250316165544_137.dmp[9267]: response: CrashID=bp-f00a28e7-ba6e-4d84-9534-03fda2250316
Mar 16 16:55:44 akideck steam[6779]: assert_20250316165544_137.dmp[9267]: file ''/tmp/dumps/assert_20250316165544_137.dmp'', upload yes: ''CrashID=bp-f00a28e7-ba6e-4d84-9534-03fda2250316''
Mar 16 16:55:44 akideck assert_20250316165544_137.dmp[9267]: response: CrashID=bp-f00a28e7-ba6e-4d84-9534-03fda2250316
Mar 16 16:55:44 akideck assert_20250316165544_137.dmp[9267]: file ''/tmp/dumps/assert_20250316165544_137.dmp'', upload yes: ''CrashID=bp-f00a28e7-ba6e-4d84-9534-03fda2250316''
Mar 16 16:55:44 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:55:44 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:55:44 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:55:44 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:55:44 akideck steam[6779]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 16:55:44 akideck steam[6779]: Fossilize INFO: Overriding serialization path: "/home/deck/.local/share/Steam/steamapps/shadercache/2225070/fozpipelinesv6/steamapprun_pipeline_cache".
Mar 16 16:55:44 akideck steam[6779]: [Gamescope WSI] Creating Gamescope surface: xid: 0x1a00020
Mar 16 16:55:44 akideck steam[6779]: [Gamescope WSI] Atom of T was wrong type. Expected XCB_ATOM_CARDINAL.
Mar 16 16:55:44 akideck steam[6779]: [Gamescope WSI] Made gamescope surface for xid: 0x1a00020
Mar 16 16:55:44 akideck steam[6779]: [Gamescope WSI] Surface state:
Mar 16 16:55:44 akideck steam[6779]:   steam app id:                  2225070
Mar 16 16:55:44 akideck steam[6779]:   window xid:                    0x1a00020
Mar 16 16:55:44 akideck steam[6779]:   wayland surface res id:        5
Mar 16 16:55:44 akideck steam[6779]:   layer client flags:            0x0
Mar 16 16:55:44 akideck steam[6779]:   server hdr output enabled:     true
Mar 16 16:55:44 akideck steam[6779]:   hdr formats exposed to client: true
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:44 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:45 akideck steam[6779]: Adding window 25165829 for process 9233 and gameID 2225070
Mar 16 16:55:45 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:45 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:45 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:45 akideck steam[6779]: Adding process 9297 for gameID 2225070
Mar 16 16:55:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:45 akideck steam[6779]: 16 game pids rooted at pid 8842:
Mar 16 16:55:45 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9248,9265,9297,9299
Mar 16 16:55:45 akideck steam[6779]: Adding process 9299 for gameID 2225070
Mar 16 16:55:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:45 akideck steam[6779]: 16 game pids rooted at pid 8842:
Mar 16 16:55:45 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9248,9265,9297,9299
Mar 16 16:55:45 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:45 akideck steam[6779]: Adding process 9301 for gameID 2225070
Mar 16 16:55:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:45 akideck steam[6779]: 17 game pids rooted at pid 8842:
Mar 16 16:55:45 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9248,9265,9297,9299,9301
Mar 16 16:55:45 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:45 akideck steam[6779]: Adding process 9303 for gameID 2225070
Mar 16 16:55:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:45 akideck steam[6779]: 18 game pids rooted at pid 8842:
Mar 16 16:55:45 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9248,9265,9297,9299,9301,9303
Mar 16 16:55:46 akideck steam[6779]: Adding window 25165830 for process 9233 and gameID 2225070
Mar 16 16:55:46 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:46 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:46 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:46 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:46 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:46 akideck steam[6779]: Adding process 9364 for gameID 2225070
Mar 16 16:55:46 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:46 akideck steam[6779]: 19 game pids rooted at pid 8842:
Mar 16 16:55:46 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9248,9265,9297,9299,9301,9303,9364
Mar 16 16:55:46 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:46 akideck steam[6779]: 18 game pids rooted at pid 8842:
Mar 16 16:55:46 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9265,9297,9299,9301,9303,9364
Mar 16 16:55:46 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:46 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:46 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:46 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:46 akideck steam[6779]: src/steamUI/gamestream/gamestreamsystem.cpp (1040) : pState->m_nProcess == nProcess
Mar 16 16:55:46 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:46 akideck gamescope-session[6522]: [gamescope] [Warn]  xwm: got the same buffer committed twice, ignoring.
Mar 16 16:55:46 akideck steam[6779]: Caching cursor image for left_ptr, size 32x32, serial 6, cache size = 2
Mar 16 16:55:46 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:46 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:46 akideck steam[6779]: Window title set to Ubisoft Connect
Mar 16 16:55:46 akideck steam[6779]: Removing window 25165838 for process 9047 and gameID 2225070
Mar 16 16:55:46 akideck steam[6779]: Removing window 25165841 for process 9047 and gameID 2225070
Mar 16 16:55:47 akideck steam[6779]: Adding window 25165836 for process 9233 and gameID 2225070
Mar 16 16:55:47 akideck steam[6779]: Adding window 25165838 for process 9233 and gameID 2225070
Mar 16 16:55:47 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:47 akideck steam[6779]: Adding window 25165839 for process 9233 and gameID 2225070
Mar 16 16:55:47 akideck steam[6779]: Adding window 25165841 for process 9233 and gameID 2225070
Mar 16 16:55:47 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:49 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:49 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:49 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:49 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:55:49 akideck steam[6779]: Adding process 9396 for gameID 2225070
Mar 16 16:55:49 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:49 akideck steam[6779]: 19 game pids rooted at pid 8842:
Mar 16 16:55:49 akideck steam[6779]: - 8842,8846,8958,8961,8967,8970,8980,8996,9002,9017,9039,9233,9265,9297,9299,9301,9303,9364,9396
Mar 16 16:55:49 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:49 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:49 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:50 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:50 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:51 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:51 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:51 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:52 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:52 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:53 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:53 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:54 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:55 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:55 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:55:55 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:55 akideck systemd[1]: Starting Time & Date Service...
Mar 16 16:55:55 akideck systemd[1]: Started Time & Date Service.
Mar 16 16:55:55 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 9418, but reception is disabled
Mar 16 16:55:55 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (8 suppressed)
Mar 16 16:55:55 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/6 s:2761361890237 a:2761362125449 f:2761362137849 waiting:235212 process:12400 status:triggered
Mar 16 16:55:55 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:2761373114807 a:2761362003488 f:2761362120789 waiting:18446744073698440297 process:117301 status:triggered
Mar 16 16:55:55 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 16:55:55 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 9425, but reception is disabled
Mar 16 16:55:55 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:56 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -57.6dB, -61.1dB
Mar 16 16:55:56 akideck steam[6779]: Audio mix: start=103512610992, returned=2951311
Mar 16 16:55:56 akideck steam[6779]: Audio source [System Pulse]: init=103512889031, adjustment=69486, through=2952271, last_start=2951311, mixed=2869440, drop_before=0, drop_after=0
Mar 16 16:55:56 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:56 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:56 akideck steam[6779]: Window title set to Steam Big Picture Mode
Mar 16 16:55:57 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:57 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:57 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:57 akideck steam[6779]: Window title set to Ubisoft Connect
Mar 16 16:55:57 akideck steam[6779]: wine client error:140: write: Bad file descriptor
Mar 16 16:55:57 akideck steam[6779]: wine client error:3c0: write: Bad file descriptor
Mar 16 16:55:57 akideck steam[6779]: wine client error:49c: write: Bad file descriptor
Mar 16 16:55:57 akideck steam[6779]: wine client error:47c: write: Bad file descriptor
Mar 16 16:55:57 akideck steam[6779]: wine client error:494: write: Bad file descriptor
Mar 16 16:55:57 akideck steam[6779]: wine client error:434: write: Bad file descriptor
Mar 16 16:55:57 akideck steam[6779]: wine client error:4a4: write: Bad file descriptor
Mar 16 16:55:57 akideck steam[6779]: wine client error:4ac: write: Bad file descriptor
Mar 16 16:55:57 akideck steam[6779]: wine client error:5ec: write: Bad file descriptor
Mar 16 16:55:57 akideck steam[6779]: wine client error:574: write: Bad file descriptor
Mar 16 16:55:57 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 9436, but reception is disabled
Mar 16 16:55:57 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 9443, but reception is disabled
Mar 16 16:55:57 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:57 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:57 akideck steam[6779]: - 8842,8961,8970,8980,9039,9233,9265,9297,9299,9301,9303,9364,9396
Mar 16 16:55:57 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:57 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:57 akideck steam[6779]: - 8842,8961,8970,8980,9039,9233,9265,9297,9299,9301,9303,9364,9396
Mar 16 16:55:57 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:57 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:57 akideck steam[6779]: - 8842,8961,8970,8980,9039,9233,9265,9297,9299,9301,9303,9364,9396
Mar 16 16:55:57 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:57 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:57 akideck steam[6779]: - 8842,8961,8970,8980,9039,9233,9265,9297,9299,9301,9303,9364,9396
Mar 16 16:55:57 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:57 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:57 akideck steam[6779]: - 8842,8961,8970,8980,9039,9233,9265,9297,9299,9301,9303,9364,9396
Mar 16 16:55:57 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:57 akideck steam[6779]: 13 game pids rooted at pid 8842:
Mar 16 16:55:57 akideck steam[6779]: - 8842,8961,8970,8980,9039,9233,9265,9297,9299,9301,9303,9364,9396
Mar 16 16:55:57 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:57 akideck steam[6779]: Removing window 25165825 for process 9047 and gameID 2225070
Mar 16 16:55:57 akideck steam[6779]: Removing window 23068685 for process 9047 and gameID 2225070
Mar 16 16:55:57 akideck steam[6779]: Removing window 25165826 for process 9047 and gameID 2225070
Mar 16 16:55:57 akideck steam[6779]: Removing window 25165827 for process 9047 and gameID 2225070
Mar 16 16:55:57 akideck steam[6779]: Removing window 25165828 for process 9047 and gameID 2225070
Mar 16 16:55:57 akideck steam[6779]: Removing window 25165833 for process 9047 and gameID 2225070
Mar 16 16:55:57 akideck steam[6779]: Removing window 25165835 for process 9047 and gameID 2225070
Mar 16 16:55:57 akideck steam[6779]: Removing window 25165831 for process 9047 and gameID 2225070
Mar 16 16:55:57 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:57 akideck steam[6779]: Window title set to
Mar 16 16:55:57 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:57 akideck steam[6779]: Window title set to Steam Big Picture Mode
Mar 16 16:55:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:58 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:55:58 akideck steam[6779]: - 8842,8961,8970,9039
Mar 16 16:55:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:58 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:55:58 akideck steam[6779]: - 8842,8961,8970,9039
Mar 16 16:55:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:58 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:55:58 akideck steam[6779]: - 8842,8961,8970,9039
Mar 16 16:55:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:58 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:55:58 akideck steam[6779]: - 8842,8961,8970,9039
Mar 16 16:55:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:58 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:55:58 akideck steam[6779]: - 8842,8961,8970,9039
Mar 16 16:55:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:58 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:55:58 akideck steam[6779]: - 8842,8961,8970,9039
Mar 16 16:55:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:58 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:55:58 akideck steam[6779]: - 8842,8961,8970,9039
Mar 16 16:55:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:58 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:55:58 akideck steam[6779]: - 8842,8961,8970,9039
Mar 16 16:55:58 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:55:58 akideck steam[6779]: 4 game pids rooted at pid 8842:
Mar 16 16:55:58 akideck steam[6779]: - 8842,8961,8970,9039
Mar 16 16:55:58 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 9447, but reception is disabled
Mar 16 16:55:58 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 9451, but reception is disabled
Mar 16 16:55:58 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:55:58 akideck steam[6779]: pid 8963 != 8962, skipping destruction (fork without exec?)
Mar 16 16:55:58 akideck steam[6779]: Encoding complete
Mar 16 16:55:58 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to paused
Mar 16 16:55:58 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to unconnected
Mar 16 16:55:58 akideck gamescope-session[6522]: [gamescope] [Info]  pipewire: stream state changed: paused
Mar 16 16:55:58 akideck steam[6779]: >>> Stopped desktop stream
Mar 16 16:55:58 akideck steam[6779]: PulseAudio: Context connection terminated
Mar 16 16:55:58 akideck steam[6779]: Game Recording - Recording Stopped [recording=bg_2225070_20250316_235511]
Mar 16 16:55:58 akideck steam[6779]: Stopped game recording session
Mar 16 16:55:58 akideck steam[6779]: ------------------------------------------------------------------------------------------------------
Mar 16 16:55:58 akideck steam[6779]: Game Recording - game stopped [gameid=2225070]
Mar 16 16:55:58 akideck steam[6779]: Removing process 9396 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9364 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9303 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9301 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9299 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9297 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9265 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9248 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9239 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9237 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9233 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 25165841 for process 9233 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 25165839 for process 9233 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 25165838 for process 9233 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 25165836 for process 9233 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 25165830 for process 9233 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 25165829 for process 9233 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9230 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9226 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9137 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9133 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9123 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9120 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9116 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9085 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 27263008 for process 9085 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 29360130 for process 9085 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 27263007 for process 9085 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 29360129 for process 9085 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9061 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9059 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9056 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9052 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9047 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9039 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9034 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9017 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 9002 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8996 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8980 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8970 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8967 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8965 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8962 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8961 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 16777219 for process 8961 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 16777218 for process 8961 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 12582925 for process 8961 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing window 16777217 for process 8961 and gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8959 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8958 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8848 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8846 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]: Removing process 8842 for gameID 2225070
Mar 16 16:55:58 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241128_093135, maxKeepMS=32344, newDurationMS=29922: OK
Mar 16 16:56:00 akideck steam[6779]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 16 16:56:01 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:01 akideck steam[6779]: fsync: up and running.
Mar 16 16:56:01 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:01 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:01 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:01 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:02 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:02 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:02 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:02 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:02 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:02 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:56:02 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:56:02 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:02 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:02 akideck steam[6779]: ATTENTION: default value of option vk_wsi_force_swapchain_to_current_extent overridden by environment.
Mar 16 16:56:02 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:56:02 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:56:03 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:03 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:03 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:04 akideck kernel: input: Microsoft X-Box 360 pad 0 as /devices/virtual/input/input48
Mar 16 16:56:04 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: Updating mode for xwayland server #1: 1280x800@90
Mar 16 16:56:04 akideck steam[6779]: chdir "/home/deck/.local/share/Steam/steamapps/common/Trackmania"
Mar 16 16:56:04 akideck steam[6779]: Adding process 9643 for gameID 2225070
Mar 16 16:56:04 akideck steam[6779]: ERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Mar 16 16:56:04 akideck steam[6779]: Clearing capture only gameID
Mar 16 16:56:04 akideck steam[6779]: Setting capture only gameID to 2225070
Mar 16 16:56:04 akideck steam[6779]: ------------------------------------------------------------------------------------------------------
Mar 16 16:56:04 akideck steam[6779]: Starting new game recording session for 2225070
Mar 16 16:56:04 akideck steam[6779]: Creating new audio encoder for codec 5
Mar 16 16:56:04 akideck steam[6779]: Encoder audio init succeeded, now have 1 encoder(s)
Mar 16 16:56:04 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:04 akideck steam[6779]: 1 game pids rooted at pid 9643:
Mar 16 16:56:04 akideck steam[6779]: - 9643
Mar 16 16:56:04 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:04 akideck steam[6779]: >>> Starting desktop stream
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:56:04 akideck steam[6779]: Recording system audio
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: setting gamescope focus appid: 2225070
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to connecting
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to paused
Mar 16 16:56:04 akideck steam[6779]: ERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Mar 16 16:56:04 akideck steam[6779]: ERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
Mar 16 16:56:04 akideck steam[6779]: ERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Mar 16 16:56:04 akideck steam[6779]: ERROR: ld.so: object '/home/deck/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream format changed (size: 1280x800, format 23, stride 1280, size 1536000, dmabuf: 0)
Mar 16 16:56:04 akideck steam[6779]: >>> Switching video stream from NONE to Desktop_MovieStream
Mar 16 16:56:04 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to streaming
Mar 16 16:56:04 akideck steam[6779]: PulseAudio: Sink alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink is default
Mar 16 16:56:04 akideck gamescope-session[6522]: [gamescope] [Info]  pipewire: stream state changed: streaming
Mar 16 16:56:04 akideck steam[6779]: PulseAudio: Adding sink[248] alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink with priority 7, monitor is alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink.monitor
Mar 16 16:56:04 akideck steam[6779]: PulseAudio: Adding sink[250] alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Headphones__sink with priority 1, monitor is alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Headphones__sink.monitor
Mar 16 16:56:04 akideck steam[6779]: PulseAudio: Recording on device alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink.monitor
Mar 16 16:56:04 akideck steam[6779]: Audio mix: start=103581200854, returned=0
Mar 16 16:56:04 akideck steam[6779]: Audio source [System Pulse]: init=0, adjustment=0, through=0, last_start=0, mixed=0, drop_before=0, drop_after=0
Mar 16 16:56:04 akideck steam[6779]: Adding process 9649 for gameID 2225070
Mar 16 16:56:04 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:04 akideck steam[6779]: 2 game pids rooted at pid 9643:
Mar 16 16:56:04 akideck steam[6779]: - 9643,9649
Mar 16 16:56:04 akideck steam[6779]: Adding process 9650 for gameID 2225070
Mar 16 16:56:04 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:04 akideck steam[6779]: 3 game pids rooted at pid 9643:
Mar 16 16:56:04 akideck steam[6779]: - 9643,9649,9650
Mar 16 16:56:04 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:04 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 9672, but reception is disabled
Mar 16 16:56:05 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 9679, but reception is disabled
Mar 16 16:56:05 akideck steam[6779]: PulseAudio: Connected to device alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink.monitor (248, not suspended).
Mar 16 16:56:05 akideck steam[6779]: PulseAudio: Using sample spec 's16le 2ch 48000Hz', channel map 'front-left,front-right'.
Mar 16 16:56:05 akideck steam[6779]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/usr/lib32:/usr/lib/perf:/usr/lib:/home/deck/.local/share/Steam/steamapps/common/Trackmania", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 16 16:56:06 akideck steam[6779]: Adding process 9760 for gameID 2225070
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 4 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9650,9760
Mar 16 16:56:06 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:06 akideck steam[6779]: Adding process 9761 for gameID 2225070
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 6 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9650,9760,9761,9762
Mar 16 16:56:06 akideck steam[6779]: Adding process 9762 for gameID 2225070
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 6 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9650,9760,9761,9762
Mar 16 16:56:06 akideck steam[6779]: fsync: up and running.
Mar 16 16:56:06 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:06 akideck steam[6779]: Adding process 9763 for gameID 2225070
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 8 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9650,9760,9761,9762,9763,9766
Mar 16 16:56:06 akideck steam[6779]: Adding process 9766 for gameID 2225070
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 8 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9650,9760,9761,9762,9763,9766
Mar 16 16:56:06 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:06 akideck steam[6779]: Adding process 9768 for gameID 2225070
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 9 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9650,9760,9761,9762,9763,9766,9768
Mar 16 16:56:06 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:06 akideck steam[6779]: Adding process 9771 for gameID 2225070
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 10 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9650,9760,9761,9762,9763,9766,9768,9771
Mar 16 16:56:06 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:06 akideck steam[6779]: Adding process 9781 for gameID 2225070
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 11 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9650,9760,9761,9762,9763,9766,9768,9771,9781
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 8 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9760,9762,9766,9768,9771,9781
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 8 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9760,9762,9766,9768,9771,9781
Mar 16 16:56:06 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:06 akideck steam[6779]: 8 game pids rooted at pid 9643:
Mar 16 16:56:06 akideck steam[6779]: - 9643,9649,9760,9762,9766,9768,9771,9781
Mar 16 16:56:07 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:07 akideck steam[6779]: Adding process 9796 for gameID 2225070
Mar 16 16:56:07 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:07 akideck steam[6779]: 9 game pids rooted at pid 9643:
Mar 16 16:56:07 akideck steam[6779]: - 9643,9649,9760,9762,9766,9768,9771,9781,9796
Mar 16 16:56:07 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:07 akideck steam[6779]: Adding process 9802 for gameID 2225070
Mar 16 16:56:07 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:07 akideck steam[6779]: 10 game pids rooted at pid 9643:
Mar 16 16:56:07 akideck steam[6779]: - 9643,9649,9760,9762,9766,9768,9771,9781,9796,9802
Mar 16 16:56:08 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:08 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:08 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:08 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:56:08 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:56:08 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:08 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:08 akideck steam[6779]: ATTENTION: default value of option vk_wsi_force_swapchain_to_current_extent overridden by environment.
Mar 16 16:56:08 akideck steam[6779]: [Gamescope WSI] No application info given.
Mar 16 16:56:08 akideck steam[6779]: [Gamescope WSI] Executable name: explorer.exe
Mar 16 16:56:08 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:08 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:08 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:08 akideck steam[6779]: Adding process 9817 for gameID 2225070
Mar 16 16:56:08 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:08 akideck steam[6779]: 11 game pids rooted at pid 9643:
Mar 16 16:56:08 akideck steam[6779]: - 9643,9649,9760,9762,9766,9768,9771,9781,9796,9802,9817
Mar 16 16:56:08 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:08 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:08 akideck steam[6779]: 10 game pids rooted at pid 9643:
Mar 16 16:56:08 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817
Mar 16 16:56:08 akideck steam[6779]: Setting breakpad minidump AppID = 2225070
Mar 16 16:56:08 akideck steam[6779]: Steam_SetMinidumpSteamID:  Caching Steam ID:  76561197989728462 [API loaded no]
Mar 16 16:56:08 akideck steam[6779]: Adding window 16777217 for process 9762 and gameID 2225070
Mar 16 16:56:08 akideck steam[6779]: Adding window 12582925 for process 9762 and gameID 2225070
Mar 16 16:56:08 akideck steam[6779]: Adding window 16777218 for process 9762 and gameID 2225070
Mar 16 16:56:08 akideck steam[6779]: Adding window 16777219 for process 9762 and gameID 2225070
Mar 16 16:56:08 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:08 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:08 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:09 akideck steam[6779]: Adding process 9834 for gameID 2225070
Mar 16 16:56:09 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:09 akideck steam[6779]: 11 game pids rooted at pid 9643:
Mar 16 16:56:09 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9834
Mar 16 16:56:10 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:10 akideck steam[6779]: Adding process 9839 for gameID 2225070
Mar 16 16:56:10 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:10 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 16:56:10 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9834,9839
Mar 16 16:56:10 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:10 akideck steam[6779]: 11 game pids rooted at pid 9643:
Mar 16 16:56:10 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839
Mar 16 16:56:11 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:11 akideck steam[6779]: Adding process 9847 for gameID 2225070
Mar 16 16:56:11 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:11 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 16:56:11 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847
Mar 16 16:56:15 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:15 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:15 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:15 akideck steam[6779]: Adding process 9855 for gameID 2225070
Mar 16 16:56:15 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:15 akideck steam[6779]: 13 game pids rooted at pid 9643:
Mar 16 16:56:15 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9855
Mar 16 16:56:15 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:15 akideck steam[6779]: Adding process 9864 for gameID 2225070
Mar 16 16:56:15 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:15 akideck steam[6779]: 14 game pids rooted at pid 9643:
Mar 16 16:56:15 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9855,9864
Mar 16 16:56:15 akideck steam[6779]: Adding window 25165825 for process 9847 and gameID 2225070
Mar 16 16:56:15 akideck steam[6779]: Adding window 23068685 for process 9847 and gameID 2225070
Mar 16 16:56:15 akideck steam[6779]: Adding window 25165826 for process 9847 and gameID 2225070
Mar 16 16:56:15 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:15 akideck steam[6779]: Adding window 25165827 for process 9847 and gameID 2225070
Mar 16 16:56:15 akideck steam[6779]: Adding window 25165828 for process 9847 and gameID 2225070
Mar 16 16:56:15 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:15 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:15 akideck steam[6779]: Adding process 9880 for gameID 2225070
Mar 16 16:56:15 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:15 akideck steam[6779]: 15 game pids rooted at pid 9643:
Mar 16 16:56:15 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9855,9864,9880
Mar 16 16:56:16 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:16 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:16 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:16 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:16 akideck steam[6779]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 16:56:16 akideck steam[6779]: Fossilize INFO: Overriding serialization path: "/home/deck/.local/share/Steam/steamapps/shadercache/2225070/fozpipelinesv6/steamapprun_pipeline_cache".
Mar 16 16:56:16 akideck steam[6779]: [Gamescope WSI] Creating Gamescope surface: xid: 0x1a00020
Mar 16 16:56:16 akideck steam[6779]: [Gamescope WSI] Atom of T was wrong type. Expected XCB_ATOM_CARDINAL.
Mar 16 16:56:16 akideck steam[6779]: [Gamescope WSI] Made gamescope surface for xid: 0x1a00020
Mar 16 16:56:16 akideck steam[6779]: [Gamescope WSI] Surface state:
Mar 16 16:56:16 akideck steam[6779]:   steam app id:                  2225070
Mar 16 16:56:16 akideck steam[6779]:   window xid:                    0x1a00020
Mar 16 16:56:16 akideck steam[6779]:   wayland surface res id:        5
Mar 16 16:56:16 akideck steam[6779]:   layer client flags:            0x0
Mar 16 16:56:16 akideck steam[6779]:   server hdr output enabled:     true
Mar 16 16:56:16 akideck steam[6779]:   hdr formats exposed to client: true
Mar 16 16:56:16 akideck steam[6779]: Adding window 29360129 for process 9880 and gameID 2225070
Mar 16 16:56:16 akideck steam[6779]: Adding window 27263007 for process 9880 and gameID 2225070
Mar 16 16:56:16 akideck steam[6779]: Adding window 29360130 for process 9880 and gameID 2225070
Mar 16 16:56:16 akideck steam[6779]: Adding window 27263008 for process 9880 and gameID 2225070
Mar 16 16:56:16 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:16 akideck steam[6779]: Adding window 25165829 for process 9847 and gameID 2225070
Mar 16 16:56:16 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:16 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:16 akideck steam[6779]: Adding process 9910 for gameID 2225070
Mar 16 16:56:16 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:16 akideck steam[6779]: 16 game pids rooted at pid 9643:
Mar 16 16:56:16 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9855,9864,9880,9910
Mar 16 16:56:17 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:17 akideck steam[6779]: Adding process 9912 for gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:17 akideck steam[6779]: 17 game pids rooted at pid 9643:
Mar 16 16:56:17 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9855,9864,9880,9910,9912
Mar 16 16:56:17 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:17 akideck steam[6779]: Adding process 9914 for gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:17 akideck steam[6779]: 18 game pids rooted at pid 9643:
Mar 16 16:56:17 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9855,9864,9880,9910,9912,9914
Mar 16 16:56:17 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:17 akideck steam[6779]: Adding process 9916 for gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:17 akideck steam[6779]: 19 game pids rooted at pid 9643:
Mar 16 16:56:17 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9855,9864,9880,9910,9912,9914,9916
Mar 16 16:56:17 akideck steam[6779]: Adding window 25165830 for process 9847 and gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: Adding window 25165831 for process 9847 and gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:17 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:17 akideck steam[6779]: Adding window 25165832 for process 9847 and gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: Adding window 25165834 for process 9847 and gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: Adding window 25165835 for process 9847 and gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: Adding window 25165837 for process 9847 and gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:17 akideck steam[6779]: Adding process 9977 for gameID 2225070
Mar 16 16:56:17 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:17 akideck steam[6779]: 18 game pids rooted at pid 9643:
Mar 16 16:56:17 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9914,9916,9977
Mar 16 16:56:17 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:17 akideck steam[6779]: 18 game pids rooted at pid 9643:
Mar 16 16:56:17 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9914,9916,9977
Mar 16 16:56:17 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:17 akideck steam[6779]: 18 game pids rooted at pid 9643:
Mar 16 16:56:17 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9914,9916,9977
Mar 16 16:56:18 akideck steam[6779]: Adding window 25165839 for process 9847 and gameID 2225070
Mar 16 16:56:18 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:18 akideck steam[6779]: Adding window 25165841 for process 9847 and gameID 2225070
Mar 16 16:56:18 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:18 akideck gamescope-session[6522]: [gamescope] [Warn]  xwm: got the same buffer committed twice, ignoring.
Mar 16 16:56:18 akideck steam[6779]: Building new pipeline
Mar 16 16:56:18 akideck steam[6779]: Trying to create an encoder for recording: [hardware_enabled=true][hardware_suppressed=false]
Mar 16 16:56:18 akideck steam[6779]: Allowed Codecs: 4
Mar 16 16:56:18 akideck steam[6779]: Created encoder VAAPI for codec 4
Mar 16 16:56:18 akideck steam[6779]: CGameStreamVideoStageVAAPI: Reinitializing 1280x800 at 7500 Kbit/s and 60.00 FPS with quality 1
Mar 16 16:56:18 akideck steam[6779]: Video Encoder Changed
Mar 16 16:56:18 akideck steam[6779]: >>> Saw first frame, starting a session
Mar 16 16:56:18 akideck steam[6779]: Game Recording - Recording Started [recording=bg_2225070_20250316_235618]
Mar 16 16:56:18 akideck steam[6779]: Caching cursor image for left_ptr, size 32x32, serial 8, cache size = 3
Mar 16 16:56:18 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:18 akideck steam[6779]: >>> Recording new resolution 1280x800 using bitrate 7500kbps
Mar 16 16:56:18 akideck steam[6779]: >>> Capture method set to Desktop PipeWire NV12 + VAAPI H264
Mar 16 16:56:18 akideck steam[6779]: >>> First video pts is 103594.791696s, first video PTS is 0.026994s
Mar 16 16:56:18 akideck steam[6779]: Retention interval for background recording game 2225070 is 7200 seconds
Mar 16 16:56:18 akideck steam[6779]: >>> First audio pts is 103594.768854s
Mar 16 16:56:18 akideck steam[6779]: >>> Audio deltas: first audio frame 103594.768854s, first video frame 103594.791696s, first video PTS 0.026994s. Resulting first audio sample is -1096 (-0.022833s)
Mar 16 16:56:18 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:18 akideck steam[6779]: Window title set to Ubisoft Connect
Mar 16 16:56:18 akideck steam[6779]: Removing window 25165829 for process 9847 and gameID 2225070
Mar 16 16:56:18 akideck steam[6779]: Removing window 25165830 for process 9847 and gameID 2225070
Mar 16 16:56:18 akideck steam[6779]: Removing window 25165832 for process 9847 and gameID 2225070
Mar 16 16:56:18 akideck steam[6779]: Removing window 25165835 for process 9847 and gameID 2225070
Mar 16 16:56:21 akideck steam[6779]: Adding window 25165842 for process 9847 and gameID 2225070
Mar 16 16:56:21 akideck steam[6779]: Adding window 25165844 for process 9847 and gameID 2225070
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:21 akideck steam[6779]: Removing window 25165842 for process 9847 and gameID 2225070
Mar 16 16:56:21 akideck steam[6779]: CGameStreamVideoStageVAAPI: Reinitializing 1276x800 at 7500 Kbit/s and 60.00 FPS with quality 1
Mar 16 16:56:21 akideck steam[6779]: Video Encoder Changed
Mar 16 16:56:21 akideck steam[6779]: >>> Closing session due to video encoder change
Mar 16 16:56:21 akideck steam[6779]: Game Recording - Recording Stopped [recording=bg_2225070_20250316_235618]
Mar 16 16:56:21 akideck steam[6779]: Game Recording - Recording Started [recording=bg_2225070_20250316_235621]
Mar 16 16:56:21 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241128_093135, maxKeepMS=29329, newDurationMS=26922: OK
Mar 16 16:56:21 akideck steam[6779]: >>> Recording new resolution 1276x800 using bitrate 7500kbps
Mar 16 16:56:21 akideck steam[6779]: >>> First video pts is 103597.873817s, first video PTS is 3.109116s
Mar 16 16:56:21 akideck steam[6779]: Retention interval for background recording game 2225070 is 7200 seconds
Mar 16 16:56:21 akideck steam[6779]: >>> First audio pts is 103597.840854s
Mar 16 16:56:21 akideck steam[6779]: >>> Audio deltas: first audio frame 103597.840854s, first video frame 103597.873817s, first video PTS 3.109116s. Resulting first audio sample is -1582 (-0.032958s)
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:21 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:21 akideck steam[6779]: Adding process 10018 for gameID 2225070
Mar 16 16:56:21 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:21 akideck steam[6779]: 19 game pids rooted at pid 9643:
Mar 16 16:56:21 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9914,9916,9977,10018
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:21 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: Adding window 25165845 for process 9847 and gameID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: Adding process 10045 for gameID 2225070
Mar 16 16:56:22 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:22 akideck steam[6779]: 20 game pids rooted at pid 9643:
Mar 16 16:56:22 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9914,9916,9977,10018,10045
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:24 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:24 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:24 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:24 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:24 akideck steam[6779]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 16:56:24 akideck steam[6779]: Fossilize INFO: Overriding serialization path: "/home/deck/.local/share/Steam/steamapps/shadercache/2225070/fozpipelinesv6/steamapprun_pipeline_cache".
Mar 16 16:56:24 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:24 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:35 akideck systemd[1]: systemd-timedated.service: Deactivated successfully.
Mar 16 16:56:36 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:36 akideck steam[6779]: 19 game pids rooted at pid 9643:
Mar 16 16:56:36 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9914,9916,9977,10018
Mar 16 16:56:36 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:36 akideck steam[6779]: Window title set to Steam Big Picture Mode
Mar 16 16:56:36 akideck steam[6779]: CGameStreamVideoStageVAAPI: Reinitializing 1280x800 at 7500 Kbit/s and 60.00 FPS with quality 1
Mar 16 16:56:36 akideck steam[6779]: Video Encoder Changed
Mar 16 16:56:36 akideck steam[6779]: >>> Closing session due to video encoder change
Mar 16 16:56:36 akideck steam[6779]: Game Recording - Recording Stopped [recording=bg_2225070_20250316_235621]
Mar 16 16:56:36 akideck steam[6779]: Game Recording - Recording Started [recording=bg_2225070_20250316_235636]
Mar 16 16:56:36 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:36 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241128_093135, maxKeepMS=13853, newDurationMS=11922: OK
Mar 16 16:56:36 akideck steam[6779]: >>> Recording new resolution 1280x800 using bitrate 7500kbps
Mar 16 16:56:36 akideck steam[6779]: >>> First audio pts is 103613.414187s
Mar 16 16:56:36 akideck steam[6779]: >>> First video pts is 103613.440550s, first video PTS is 18.675848s
Mar 16 16:56:36 akideck steam[6779]: Retention interval for background recording game 2225070 is 7200 seconds
Mar 16 16:56:36 akideck steam[6779]: >>> Audio deltas: first audio frame 103613.414187s, first video frame 103613.440550s, first video PTS 18.675848s. Resulting first audio sample is -1265 (-0.026354s)
Mar 16 16:56:37 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:37 akideck steam[6779]: Adding process 10105 for gameID 2225070
Mar 16 16:56:37 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:37 akideck steam[6779]: 19 game pids rooted at pid 9643:
Mar 16 16:56:37 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,9977,10018,10105
Mar 16 16:56:37 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:37 akideck steam[6779]: 19 game pids rooted at pid 9643:
Mar 16 16:56:37 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,9977,10018,10105
Mar 16 16:56:38 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:38 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:38 akideck steam[6779]: [Gamescope WSI] Application info:
Mar 16 16:56:38 akideck steam[6779]:   pApplicationName: Trackmania.exe
Mar 16 16:56:38 akideck steam[6779]:   applicationVersion: 0
Mar 16 16:56:38 akideck steam[6779]:   pEngineName: DXVK
Mar 16 16:56:38 akideck steam[6779]:   engineVersion: 8409091
Mar 16 16:56:38 akideck steam[6779]:   apiVersion: 4206592
Mar 16 16:56:38 akideck steam[6779]: [Gamescope WSI] Executable name: Trackmania.exe
Mar 16 16:56:38 akideck steam[6779]: Adding window 41943041 for process 10105 and gameID 2225070
Mar 16 16:56:38 akideck steam[6779]: Adding window 35651635 for process 10105 and gameID 2225070
Mar 16 16:56:38 akideck steam[6779]: Adding window 41943042 for process 10105 and gameID 2225070
Mar 16 16:56:38 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:38 akideck gamescope-session[6522]: [gamescope] [Warn]  xwm: got the same buffer committed twice, ignoring.
Mar 16 16:56:38 akideck steam[6779]: Adding window 41943043 for process 10105 and gameID 2225070
Mar 16 16:56:38 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:38 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:38 akideck steam[6779]: Window title set to Trackmania
Mar 16 16:56:38 akideck kernel: input: Microsoft X-Box 360 pad 0 as /devices/virtual/input/input49
Mar 16 16:56:39 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:39 akideck steam[6779]: 18 game pids rooted at pid 9643:
Mar 16 16:56:39 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105
Mar 16 16:56:39 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:56:39 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:56:39 akideck steam[6779]: ATTENTION: default value of option vk_wsi_force_swapchain_to_current_extent overridden by environment.
Mar 16 16:56:39 akideck steam[6779]: [Gamescope WSI] Application info:
Mar 16 16:56:39 akideck steam[6779]:   pApplicationName: Trackmania.exe
Mar 16 16:56:39 akideck steam[6779]:   applicationVersion: 0
Mar 16 16:56:39 akideck steam[6779]:   pEngineName: DXVK
Mar 16 16:56:39 akideck steam[6779]:   engineVersion: 8409091
Mar 16 16:56:39 akideck steam[6779]:   apiVersion: 4206592
Mar 16 16:56:39 akideck steam[6779]: [Gamescope WSI] Executable name: Trackmania.exe
Mar 16 16:56:39 akideck steam[6779]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 16:56:39 akideck steam[6779]: Fossilize INFO: Overriding serialization path: "/home/deck/.local/share/Steam/steamapps/shadercache/2225070/fozpipelinesv6/steamapprun_pipeline_cache".
Mar 16 16:56:39 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:39 akideck steam[6779]: Window title set to Steam Big Picture Mode
Mar 16 16:56:40 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:41 akideck steam[6779]: [Gamescope WSI] Creating Gamescope surface: xid: 0x2200061
Mar 16 16:56:41 akideck steam[6779]: [Gamescope WSI] Atom of T was wrong type. Expected XCB_ATOM_CARDINAL.
Mar 16 16:56:41 akideck steam[6779]: [Gamescope WSI] Made gamescope surface for xid: 0x2200061
Mar 16 16:56:41 akideck steam[6779]: [Gamescope WSI] Surface state:
Mar 16 16:56:41 akideck steam[6779]:   steam app id:                  2225070
Mar 16 16:56:41 akideck steam[6779]:   window xid:                    0x2200061
Mar 16 16:56:41 akideck steam[6779]:   wayland surface res id:        5
Mar 16 16:56:41 akideck steam[6779]:   layer client flags:            0x4
Mar 16 16:56:41 akideck steam[6779]:   server hdr output enabled:     true
Mar 16 16:56:41 akideck steam[6779]:   hdr formats exposed to client: true
Mar 16 16:56:41 akideck gamescope-session[6522]: [gamescope] [Warn]  xwm: got the same buffer committed twice, ignoring.
Mar 16 16:56:41 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 16:56:42 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:56:42 akideck steam[6779]: Window title set to Trackmania
Mar 16 16:56:42 akideck steam[6779]: [Gamescope WSI] Creating swapchain for xid: 0x2200061 - oldSwapchain: (nil) - provided minImageCount: 4 - minImageCount: 4 - format: VK_FORMAT_R8G8B8A8_SRGB - colorspace: VK_COLOR_SPACE_SRGB_NONLINEAR_KHR - flip: true
Mar 16 16:56:42 akideck steam[6779]: [Gamescope WSI] Created swapchain for xid: 0x2200061 swapchain: 0x5555930a24c0 - imageCount: 4
Mar 16 16:56:42 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:43 akideck steam[6779]: Adding process 10162 for gameID 2225070
Mar 16 16:56:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:43 akideck steam[6779]: 19 game pids rooted at pid 9643:
Mar 16 16:56:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10162
Mar 16 16:56:43 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:43 akideck steam[6779]: Adding process 10165 for gameID 2225070
Mar 16 16:56:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:43 akideck steam[6779]: 20 game pids rooted at pid 9643:
Mar 16 16:56:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10162,10165
Mar 16 16:56:43 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:43 akideck steam[6779]: Adding process 10169 for gameID 2225070
Mar 16 16:56:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:43 akideck steam[6779]: 21 game pids rooted at pid 9643:
Mar 16 16:56:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10162,10165,10169
Mar 16 16:56:43 akideck steam[6779]: Caching cursor image for left_ptr, size 32x32, serial 10, cache size = 4
Mar 16 16:56:44 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:44 akideck steam[6779]: Adding process 10230 for gameID 2225070
Mar 16 16:56:44 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:44 akideck steam[6779]: 22 game pids rooted at pid 9643:
Mar 16 16:56:44 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10162,10165,10169,10230
Mar 16 16:56:45 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 16:56:45 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:2811410021104 a:2811410180966 f:2811410193616 waiting:159862 process:12650 status:triggered
Mar 16 16:56:45 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:2811412667130 a:2811415441568 f:2811410063525 waiting:2774438 process:18446744073704173573 status:awake
Mar 16 16:56:49 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 16:56:49 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:2814748566219 a:2814748773591 f:2814748784721 waiting:207372 process:11130 status:triggered
Mar 16 16:56:49 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:2814751217725 a:2814748591389 f:2814748614379 waiting:18446744073706925280 process:22990 status:triggered
Mar 16 16:56:49 akideck steam[6779]: [Gamescope WSI] Swapchain recieved new refresh cycle: 11.10ms
Mar 16 16:56:50 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:56:50 akideck steam[6779]: Adding process 10277 for gameID 2225070
Mar 16 16:56:50 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:56:50 akideck steam[6779]: 23 game pids rooted at pid 9643:
Mar 16 16:56:50 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10162,10165,10169,10230,10277
Mar 16 16:56:51 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 16:56:51 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/7 s:2816980579737 a:2816980830050 f:2816980840590 waiting:250313 process:10540 status:triggered
Mar 16 16:56:51 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:2816986475245 a:2816980767539 f:2816980781049 waiting:18446744073703843910 process:13510 status:triggered
Mar 16 16:56:52 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 16:56:58 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:57:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -25.5dB, -84.3dB
Mar 16 16:57:04 akideck steam[6779]: Audio mix: start=103581200854, returned=2884281
Mar 16 16:57:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=0, through=2884761, last_start=2884281, mixed=2869440, drop_before=0, drop_after=0
Mar 16 16:57:07 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241128_093135 - entire folder
Mar 16 16:57:07 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241128_094512 - entire folder
Mar 16 16:57:07 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=537450, newDurationMS=535597: OK
Mar 16 16:57:10 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (6 suppressed)
Mar 16 16:57:10 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:2835946900922 a:2835947066694 f:2835947073354 waiting:165772 process:6660 status:triggered
Mar 16 16:57:10 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:2835953095963 a:2835947020373 f:2835947063984 waiting:18446744073703476026 process:43611 status:triggered
Mar 16 16:57:10 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 16:57:15 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 16:57:15 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:2841002204470 a:2841002487583 f:2841002497683 waiting:283113 process:10100 status:triggered
Mar 16 16:57:15 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:2841009839896 a:2841002361851 f:2841002374862 waiting:18446744073702073571 process:13011 status:triggered
Mar 16 16:57:15 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 16:57:16 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 16:57:26 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (13 suppressed)
Mar 16 16:57:26 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:2851685014180 a:2851685907249 f:2851685919769 waiting:893069 process:12520 status:triggered
Mar 16 16:57:26 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:2851690163991 a:2851685719267 f:2851685732807 waiting:18446744073705106892 process:13540 status:triggered
Mar 16 16:57:26 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 16:57:37 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=507454, newDurationMS=505597: OK
Mar 16 16:58:04 akideck steam[6779]: Caching cursor image for , size 1x1, serial 9, cache size = 5
Mar 16 16:58:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -34.5dB, -38.6dB
Mar 16 16:58:04 akideck steam[6779]: Audio mix: start=103581200854, returned=5763321
Mar 16 16:58:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=0, through=5763801, last_start=5763321, mixed=2879040, drop_before=0, drop_after=0
Mar 16 16:58:07 akideck gamescope-session[10398]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:07 akideck gamescope-session[10398]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:07 akideck gamescope-session[10398]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:07 akideck gamescope-session[10397]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:07 akideck gamescope-session[10397]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:07 akideck gamescope-session[10397]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:07 akideck gamescope-session[10398]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:07 akideck gamescope-session[10398]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:07 akideck gamescope-session[10397]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:07 akideck gamescope-session[10397]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:07 akideck gamescope-session[10398]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:07 akideck gamescope-session[10397]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:07 akideck gamescope-session[10400]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:07 akideck gamescope-session[10400]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:07 akideck gamescope-session[10400]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:07 akideck gamescope-session[10399]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:07 akideck gamescope-session[10399]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:07 akideck gamescope-session[10399]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:07 akideck gamescope-session[10399]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:07 akideck gamescope-session[10399]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:07 akideck gamescope-session[10400]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:07 akideck gamescope-session[10400]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:07 akideck gamescope-session[10399]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:07 akideck gamescope-session[10400]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:07 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:58:07 akideck gamescope-session[10401]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:07 akideck gamescope-session[10401]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:07 akideck gamescope-session[10401]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:07 akideck gamescope-session[10402]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:07 akideck gamescope-session[10402]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:07 akideck gamescope-session[10402]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:07 akideck gamescope-session[10401]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:07 akideck gamescope-session[10401]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:07 akideck gamescope-session[10402]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:07 akideck gamescope-session[10402]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:07 akideck gamescope-session[10401]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:07 akideck gamescope-session[10402]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:07 akideck gamescope-session[10403]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:07 akideck gamescope-session[10403]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:07 akideck gamescope-session[10403]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:07 akideck gamescope-session[10404]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:07 akideck gamescope-session[10404]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:07 akideck gamescope-session[10404]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:07 akideck gamescope-session[10403]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:07 akideck gamescope-session[10403]: > Warning:
Mar 16 16:58:07 akideck gamescope-session[10404]: >
Mar 16 16:58:07 akideck gamescope-session[10403]: Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:07 akideck gamescope-session[10404]: Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:07 akideck gamescope-session[10404]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:07 akideck gamescope-session[10404]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:07 akideck gamescope-session[10403]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:08 akideck gamescope-session[10406]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:08 akideck gamescope-session[10406]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:08 akideck gamescope-session[10406]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:08 akideck gamescope-session[10405]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:08 akideck gamescope-session[10405]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:08 akideck gamescope-session[10405]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:08 akideck gamescope-session[10406]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:08 akideck gamescope-session[10406]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:08 akideck gamescope-session[10405]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:08 akideck gamescope-session[10405]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:08 akideck gamescope-session[10406]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:08 akideck gamescope-session[10405]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:08 akideck gamescope-session[10408]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:08 akideck gamescope-session[10408]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:08 akideck gamescope-session[10408]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:08 akideck gamescope-session[10407]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:08 akideck gamescope-session[10407]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:08 akideck gamescope-session[10407]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:08 akideck gamescope-session[10408]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:08 akideck gamescope-session[10408]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:08 akideck gamescope-session[10407]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:08 akideck gamescope-session[10407]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:08 akideck gamescope-session[10407]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:08 akideck gamescope-session[10408]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:08 akideck gamescope-session[10409]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:08 akideck gamescope-session[10409]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:08 akideck gamescope-session[10409]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:08 akideck gamescope-session[10410]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:08 akideck gamescope-session[10410]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:08 akideck gamescope-session[10410]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:08 akideck gamescope-session[10409]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:08 akideck gamescope-session[10409]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:08 akideck gamescope-session[10410]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:08 akideck gamescope-session[10410]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:08 akideck gamescope-session[10409]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:08 akideck gamescope-session[10410]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:08 akideck gamescope-session[10412]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:08 akideck gamescope-session[10412]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:08 akideck gamescope-session[10412]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:08 akideck gamescope-session[10411]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 16:58:08 akideck gamescope-session[10411]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 16:58:08 akideck gamescope-session[10411]: >                   X11 cannot support keycodes above 255.
Mar 16 16:58:08 akideck gamescope-session[10412]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:08 akideck gamescope-session[10412]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:08 akideck gamescope-session[10411]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 16:58:08 akideck gamescope-session[10411]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 16:58:08 akideck gamescope-session[10412]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:08 akideck gamescope-session[10411]: Errors from xkbcomp are not fatal to the X server
Mar 16 16:58:09 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 16:58:10 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=474455, newDurationMS=472597: OK
Mar 16 16:58:16 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 16:58:16 akideck steam[6779]: Adding process 10415 for gameID 2225070
Mar 16 16:58:16 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:58:16 akideck steam[6779]: 24 game pids rooted at pid 9643:
Mar 16 16:58:16 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10162,10165,10169,10230,10277,10415
Mar 16 16:58:17 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (11 suppressed)
Mar 16 16:58:17 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:2902640447816 a:2902640688569 f:2902640699689 waiting:240753 process:11120 status:triggered
Mar 16 16:58:17 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:2902646162243 a:2902640610618 f:2902640624368 waiting:18446744073703999991 process:13750 status:triggered
Mar 16 16:58:17 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:58:17 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:58:17 akideck steam[6779]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 16:58:17 akideck steam[6779]: Fossilize INFO: Overriding serialization path: "/home/deck/.local/share/Steam/steamapps/shadercache/2225070/fozpipelinesv6/steamapprun_pipeline_cache".
Mar 16 16:58:17 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:58:17 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:58:17 akideck steam[6779]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 16:58:17 akideck steam[6779]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 16:58:18 akideck steam[6779]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 16:58:18 akideck steam[6779]: Fossilize INFO: Overriding serialization path: "/home/deck/.local/share/Steam/steamapps/shadercache/2225070/fozpipelinesv6/steamapprun_pipeline_cache".
Mar 16 16:58:18 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 16:58:18 akideck steam[6779]: 23 game pids rooted at pid 9643:
Mar 16 16:58:18 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10162,10165,10169,10230,10277
Mar 16 16:58:20 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 16:58:20 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:2905568166811 a:2905573087750 f:2905573117940 waiting:4920939 process:30190 status:triggered
Mar 16 16:58:20 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:2905573399353 a:2905568997750 f:2905569083320 waiting:18446744073705150013 process:85570 status:triggered
Mar 16 16:58:20 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 16:58:40 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=444453, newDurationMS=442597: OK
Mar 16 16:59:04 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (9 suppressed)
Mar 16 16:59:04 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:2949582223353 a:2949582508966 f:2949582522196 waiting:285613 process:13230 status:triggered
Mar 16 16:59:04 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:2949587686487 a:2949582256723 f:2949582285943 waiting:18446744073704121852 process:29220 status:triggered
Mar 16 16:59:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -16.4dB, -19.6dB
Mar 16 16:59:04 akideck steam[6779]: Audio mix: start=103581200854, returned=8643321
Mar 16 16:59:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=0, through=8643801, last_start=8643321, mixed=2880000, drop_before=0, drop_after=0
Mar 16 16:59:10 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 16:59:10 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:2955667298141 a:2955667596824 f:2955667611954 waiting:298683 process:15130 status:triggered
Mar 16 16:59:10 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:2955672565103 a:2955667459422 f:2955667478643 waiting:18446744073704445935 process:19221 status:triggered
Mar 16 16:59:11 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (2 suppressed) out of buffers on port 0 2
Mar 16 16:59:13 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=411447, newDurationMS=409597: OK
Mar 16 16:59:46 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=378453, newDurationMS=376597: OK
Mar 16 16:59:55 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (6 suppressed)
Mar 16 16:59:55 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3001366457621 a:3001366836305 f:3001366859945 waiting:378684 process:23640 status:triggered
Mar 16 16:59:55 akideck pipewire[1449]: pw.node: (alsa_loopback_stream.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-82) xrun state:0x7f63f452f008 pending:0/2 s:3001372483861 a:3001372498181 f:3001366651713 waiting:14320 process:18446744073703705148 status:awake
Mar 16 16:59:55 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:3001372488951 a:3001372512921 f:3001366678074 waiting:23970 process:18446744073703716769 status:awake
Mar 16 17:00:00 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:00:00 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3006486555201 a:3006488344459 f:3006488360589 waiting:1789258 process:16130 status:triggered
Mar 16 17:00:00 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3006492344758 a:3006488253338 f:3006488339649 waiting:18446744073705460196 process:86311 status:triggered
Mar 16 17:00:00 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:00:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -31.0dB, -26.4dB
Mar 16 17:00:04 akideck steam[6779]: Audio mix: start=103581200854, returned=11523321
Mar 16 17:00:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=0, through=11523801, last_start=11523321, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:00:07 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (5 suppressed)
Mar 16 17:00:07 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:3012571855749 a:3012572150742 f:3012572161972 waiting:294993 process:11230 status:triggered
Mar 16 17:00:07 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:3012574521305 a:3012571895339 f:3012571926629 waiting:18446744073706925650 process:31290 status:triggered
Mar 16 17:00:19 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=345447, newDurationMS=343597: OK
Mar 16 17:00:52 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=312453, newDurationMS=310597: OK
Mar 16 17:00:53 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:00:53 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:3059162110516 a:3059162649391 f:3059162663881 waiting:538875 process:14490 status:triggered
Mar 16 17:00:53 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:3059167908683 a:3059162242017 f:3059162273657 waiting:18446744073703884950 process:31640 status:triggered
Mar 16 17:00:59 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (6 suppressed)
Mar 16 17:00:59 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3064815146063 a:3064815719219 f:3064815734329 waiting:573156 process:15110 status:triggered
Mar 16 17:00:59 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3064820359835 a:3064815414156 f:3064815430976 waiting:18446744073704605937 process:16820 status:triggered
Mar 16 17:01:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -21.0dB, -25.1dB
Mar 16 17:01:04 akideck steam[6779]: Audio mix: start=103581200854, returned=14402361
Mar 16 17:01:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=0, through=14402841, last_start=14402361, mixed=2879040, drop_before=0, drop_after=0
Mar 16 17:01:16 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:01:16 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3081663350434 a:3081663640347 f:3081663663917 waiting:289913 process:23570 status:triggered
Mar 16 17:01:16 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3081668650656 a:3081663531125 f:3081663546786 waiting:18446744073704432085 process:15661 status:triggered
Mar 16 17:01:25 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=279447, newDurationMS=277597: OK
Mar 16 17:01:29 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:01:29 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3095132732015 a:3095133227490 f:3095133251440 waiting:495475 process:23950 status:triggered
Mar 16 17:01:29 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3095138572872 a:3095133126699 f:3095133220449 waiting:18446744073704105443 process:93750 status:triggered
Mar 16 17:01:29 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:01:47 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:01:47 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3113431513305 a:3113431879378 f:3113431900368 waiting:366073 process:20990 status:triggered
Mar 16 17:01:47 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3113434372063 a:3113431610936 f:3113431634006 waiting:18446744073706790489 process:23070 status:triggered
Mar 16 17:01:58 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=246449, newDurationMS=244597: OK
Mar 16 17:02:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -18.5dB, -29.6dB
Mar 16 17:02:04 akideck steam[6779]: Audio mix: start=103581200854, returned=17282841
Mar 16 17:02:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=0, through=17283321, last_start=17282841, mixed=2880480, drop_before=0, drop_after=0
Mar 16 17:02:28 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:02:28 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3153691029849 a:3153691339432 f:3153691353163 waiting:309583 process:13731 status:triggered
Mar 16 17:02:28 akideck pipewire[1449]: pw.node: (alsa_loopback_stream.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-82) xrun state:0x7f63f452f008 pending:0/2 s:3153697093259 a:3153697103729 f:3153691187291 waiting:10470 process:18446744073703635178 status:awake
Mar 16 17:02:31 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=213463, newDurationMS=211597: OK
Mar 16 17:02:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:02:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3165120376598 a:3165122263326 f:3165122276256 waiting:1886728 process:12930 status:triggered
Mar 16 17:02:39 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3165125331147 a:3165122181556 f:3165122200636 waiting:18446744073706402025 process:19080 status:triggered
Mar 16 17:02:44 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:02:44 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:3170258947070 a:3170259210172 f:3170259222933 waiting:263102 process:12761 status:triggered
Mar 16 17:02:44 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:3170261745968 a:3170258977800 f:3170259008761 waiting:18446744073706783448 process:30961 status:triggered
Mar 16 17:03:01 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=183450, newDurationMS=181597: OK
Mar 16 17:03:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -29.6dB, -46.3dB
Mar 16 17:03:04 akideck steam[6779]: Audio mix: start=103581200854, returned=20162841
Mar 16 17:03:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=0, through=20163801, last_start=20162841, mixed=2880480, drop_before=0, drop_after=0
Mar 16 17:03:32 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:03:32 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3217621877851 a:3217622778580 f:3217622799360 waiting:900729 process:20780 status:triggered
Mar 16 17:03:32 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3217627184494 a:3217622657129 f:3217622683649 waiting:18446744073705024251 process:26520 status:triggered
Mar 16 17:03:34 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=150449, newDurationMS=148597: OK
Mar 16 17:03:57 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 17:03:57 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3242712914853 a:3242713403028 f:3242713415628 waiting:488175 process:12600 status:triggered
Mar 16 17:03:57 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3242719460828 a:3242713325327 f:3242713399138 waiting:18446744073703416115 process:73811 status:triggered
Mar 16 17:03:57 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:04:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -37.4dB, -33.7dB
Mar 16 17:04:04 akideck steam[6779]: Audio mix: start=103581200854, returned=23042841
Mar 16 17:04:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=0, through=23043801, last_start=23042841, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:04:07 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=117450, newDurationMS=115597: OK
Mar 16 17:04:25 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:04:25 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3271217146860 a:3271218270761 f:3271218288471 waiting:1123901 process:17710 status:triggered
Mar 16 17:04:25 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3271222434382 a:3271218062549 f:3271218087359 waiting:18446744073705179783 process:24810 status:triggered
Mar 16 17:04:25 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:04:25 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:04:31 akideck kernel: perf: interrupt took too long (2507 > 2500), lowering kernel.perf_event_max_sample_rate to 79500
Mar 16 17:04:34 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (11 suppressed)
Mar 16 17:04:34 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3279601149760 a:3279601380572 f:3279601390312 waiting:230812 process:9740 status:triggered
Mar 16 17:04:34 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3279606540883 a:3279601282641 f:3279601295341 waiting:18446744073704293374 process:12700 status:triggered
Mar 16 17:04:35 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:04:40 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=84451, newDurationMS=82597: OK
Mar 16 17:05:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -28.9dB, -31.8dB
Mar 16 17:05:04 akideck steam[6779]: Audio mix: start=103581200854, returned=25922841
Mar 16 17:05:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=0, through=25923801, last_start=25922841, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:05:04 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:05:11 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:05:13 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=51450, newDurationMS=49597: OK
Mar 16 17:05:20 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:05:20 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3325774990642 a:3325775596128 f:3325775612438 waiting:605486 process:16310 status:triggered
Mar 16 17:05:20 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3325777670928 a:3325775243154 f:3325775267705 waiting:18446744073707123842 process:24551 status:triggered
Mar 16 17:05:26 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:05:32 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:05:43 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945, maxKeepMS=21449, newDurationMS=19597: OK
Mar 16 17:05:53 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:06:00 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:06:04 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 17:06:04 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3370114015393 a:3370114218785 f:3370114229615 waiting:203392 process:10830 status:triggered
Mar 16 17:06:04 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3370119433866 a:3370114146584 f:3370114214645 waiting:18446744073704264334 process:68061 status:triggered
Mar 16 17:06:04 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:06:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -24.7dB, -28.1dB
Mar 16 17:06:04 akideck steam[6779]: Audio mix: start=103581200854, returned=28803016
Mar 16 17:06:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=175, through=28803976, last_start=28803016, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:06:13 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_020945 - entire folder
Mar 16 17:06:13 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_032355, maxKeepMS=224554, newDurationMS=224102: OK
Mar 16 17:06:16 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:06:16 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:0/7 s:3381807478910 a:3381807805503 f:3381807820543 waiting:326593 process:15040 status:triggered
Mar 16 17:06:21 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (0 suppressed)
Mar 16 17:06:21 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3387501040561 a:3387501308213 f:3387501330613 waiting:267652 process:22400 status:triggered
Mar 16 17:06:21 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3387506182221 a:3387501201422 f:3387501219662 waiting:18446744073704570817 process:18240 status:triggered
Mar 16 17:06:22 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:06:40 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:06:40 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3405954436957 a:3405954673199 f:3405954683900 waiting:236242 process:10701 status:triggered
Mar 16 17:06:40 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3405959695719 a:3405954574508 f:3405954585759 waiting:18446744073704430405 process:11251 status:triggered
Mar 16 17:06:46 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_032355, maxKeepMS=191549, newDurationMS=191102: OK
Mar 16 17:07:04 akideck steam[6779]: Audio mix: start=103581200854, returned=31683589
Mar 16 17:07:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=268, through=31684549, last_start=31683589, mixed=2880480, drop_before=0, drop_after=0
Mar 16 17:07:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -41.2dB, -38.6dB
Mar 16 17:07:14 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:07:14 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3439648124832 a:3439648421255 f:3439648436235 waiting:296423 process:14980 status:triggered
Mar 16 17:07:14 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3439650881939 a:3439648217753 f:3439648245523 waiting:18446744073706887430 process:27770 status:triggered
Mar 16 17:07:16 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_032355, maxKeepMS=161556, newDurationMS=161102: OK
Mar 16 17:07:27 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:07:27 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3452755080912 a:3452755633028 f:3452755649438 waiting:552116 process:16410 status:triggered
Mar 16 17:07:27 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3452760721278 a:3452755526347 f:3452755627438 waiting:18446744073704356685 process:101091 status:triggered
Mar 16 17:07:27 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:07:32 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:07:32 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:3457632240757 a:3457632577661 f:3457632593141 waiting:336904 process:15480 status:triggered
Mar 16 17:07:32 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:3457640250967 a:3457632274728 f:3457632305708 waiting:18446744073701575377 process:30980 status:triggered
Mar 16 17:07:32 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:07:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (13 suppressed)
Mar 16 17:07:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3464968298166 a:3464968603849 f:3464968619459 waiting:305683 process:15610 status:triggered
Mar 16 17:07:39 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3464973582298 a:3464968486758 f:3464968508198 waiting:18446744073704456076 process:21440 status:triggered
Mar 16 17:07:40 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:07:40 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:07:42 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (24 suppressed)
Mar 16 17:07:42 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3468251123626 a:3468251490860 f:3468251505480 waiting:367234 process:14620 status:triggered
Mar 16 17:07:42 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3468256379948 a:3468251356398 f:3468251378019 waiting:18446744073704528066 process:21621 status:triggered
Mar 16 17:07:49 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_032355, maxKeepMS=128554, newDurationMS=128102: OK
Mar 16 17:07:49 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:07:49 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3474653754356 a:3474654226730 f:3474654252921 waiting:472374 process:26191 status:triggered
Mar 16 17:07:49 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3474659035328 a:3474653980178 f:3474654215760 waiting:18446744073704496466 process:235582 status:triggered
Mar 16 17:07:49 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:07:55 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:07:55 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3481296473426 a:3481296811399 f:3481296827610 waiting:337973 process:16211 status:triggered
Mar 16 17:07:55 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3481301871429 a:3481296699618 f:3481296804929 waiting:18446744073704379805 process:105311 status:triggered
Mar 16 17:07:55 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:07:56 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:08:03 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:08:04 akideck steam[6779]: Audio mix: start=103581200854, returned=34563813
Mar 16 17:08:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=1932, through=34564293, last_start=34563813, mixed=2878080, drop_before=0, drop_after=0
Mar 16 17:08:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -19.5dB, -16.8dB
Mar 16 17:08:07 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:08:07 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3492728634735 a:3492730124210 f:3492730137890 waiting:1489475 process:13680 status:triggered
Mar 16 17:08:07 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3492736310921 a:3492730064889 f:3492730120789 waiting:18446744073703305584 process:55900 status:triggered
Mar 16 17:08:07 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:08:22 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_032355, maxKeepMS=95551, newDurationMS=95102: OK
Mar 16 17:08:27 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:08:27 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3512934149153 a:3512934624638 f:3512934650328 waiting:475485 process:25690 status:triggered
Mar 16 17:08:27 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3512939418415 a:3512934499257 f:3512934617678 waiting:18446744073704632458 process:118421 status:triggered
Mar 16 17:08:27 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:08:31 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (5 suppressed)
Mar 16 17:08:31 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/7 s:3516867686778 a:3516868178663 f:3516868196463 waiting:491885 process:17800 status:triggered
Mar 16 17:08:31 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3516872786469 a:3516868037942 f:3516868056262 waiting:18446744073704803089 process:18320 status:triggered
Mar 16 17:08:31 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:3516872760489 a:3516868019902 f:3516868038222 waiting:18446744073704811029 process:18320 status:triggered
Mar 16 17:08:33 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:08:33 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3519264838221 a:3519265169404 f:3519265182134 waiting:331183 process:12730 status:triggered
Mar 16 17:08:33 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3519271054512 a:3519265047123 f:3519265164694 waiting:18446744073703544227 process:117571 status:triggered
Mar 16 17:08:33 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:08:37 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:08:37 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3522616872654 a:3522617173827 f:3522617189567 waiting:301173 process:15740 status:triggered
Mar 16 17:08:37 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3522622246957 a:3522617077066 f:3522617168387 waiting:18446744073704381725 process:91321 status:triggered
Mar 16 17:08:37 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:08:45 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:08:45 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3530883606370 a:3530883954803 f:3530883968444 waiting:348433 process:13641 status:triggered
Mar 16 17:08:45 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3530888893022 a:3530883839752 f:3530883855283 waiting:18446744073704498346 process:15531 status:triggered
Mar 16 17:08:48 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:08:48 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3534264962722 a:3534265225715 f:3534265238295 waiting:262993 process:12580 status:triggered
Mar 16 17:08:48 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3534270526697 a:3534265123464 f:3534265135824 waiting:18446744073704148383 process:12360 status:triggered
Mar 16 17:08:52 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_032355, maxKeepMS=65550, newDurationMS=65102: OK
Mar 16 17:08:57 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:08:57 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3543347795258 a:3543348119331 f:3543348134111 waiting:324073 process:14780 status:triggered
Mar 16 17:08:57 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3543353052530 a:3543348013990 f:3543348113871 waiting:18446744073704513076 process:99881 status:triggered
Mar 16 17:08:57 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:09:00 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (6 suppressed)
Mar 16 17:09:00 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3546030476390 a:3546030919664 f:3546030940164 waiting:443274 process:20500 status:triggered
Mar 16 17:09:00 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3546036439329 a:3546030829383 f:3546030915094 waiting:18446744073703941670 process:85711 status:triggered
Mar 16 17:09:00 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:09:00 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:09:03 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (11 suppressed)
Mar 16 17:09:03 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3549315794873 a:3549316049296 f:3549316059506 waiting:254423 process:10210 status:triggered
Mar 16 17:09:03 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3549321224127 a:3549321250807 f:3549315915154 waiting:26680 process:18446744073704215963 status:awake
Mar 16 17:09:03 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:3549321273767 a:3549315932675 f:3549315946605 waiting:18446744073704210524 process:13930 status:triggered
Mar 16 17:09:04 akideck steam[6779]: Audio mix: start=103581200854, returned=37443943
Mar 16 17:09:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=2542, through=37444423, last_start=37443943, mixed=2879520, drop_before=0, drop_after=0
Mar 16 17:09:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -28.0dB, -19.0dB
Mar 16 17:09:25 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_032355, maxKeepMS=32554, newDurationMS=32102: OK
Mar 16 17:09:27 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:09:27 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:3572564059054 a:3572564328497 f:3572564345607 waiting:269443 process:17110 status:triggered
Mar 16 17:09:27 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:3572566728741 a:3572564094865 f:3572564125195 waiting:18446744073706917740 process:30330 status:triggered
Mar 16 17:09:28 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (2 suppressed) out of buffers on port 0 2
Mar 16 17:09:30 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (7 suppressed)
Mar 16 17:09:30 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3575748067207 a:3575748352980 f:3575748367250 waiting:285773 process:14270 status:triggered
Mar 16 17:09:30 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3575753771013 a:3575748256869 f:3575748347800 waiting:18446744073704037472 process:90931 status:triggered
Mar 16 17:09:35 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:09:35 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3580681437725 a:3580681740438 f:3580681751808 waiting:302713 process:11370 status:triggered
Mar 16 17:09:35 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3580687210132 a:3580681640697 f:3580681735898 waiting:18446744073703982181 process:95201 status:triggered
Mar 16 17:09:35 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:09:50 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (6 suppressed)
Mar 16 17:09:50 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3596097547470 a:3596097780942 f:3596097788563 waiting:233472 process:7621 status:triggered
Mar 16 17:09:50 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3596102880743 a:3596097711532 f:3596097777452 waiting:18446744073704382405 process:65920 status:triggered
Mar 16 17:09:50 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:09:54 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:09:54 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:3600070959028 a:3600071890207 f:3600071904017 waiting:931179 process:13810 status:triggered
Mar 16 17:09:54 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:3600073645974 a:3600070981558 f:3600071013278 waiting:18446744073706887200 process:31720 status:triggered
Mar 16 17:09:58 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 17:09:58 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:3603564430406 a:3603564733669 f:3603564746419 waiting:303263 process:12750 status:triggered
Mar 16 17:09:58 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3603569994191 a:3603564543057 f:3603564565227 waiting:18446744073704100482 process:22170 status:triggered
Mar 16 17:09:58 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_032355 - entire folder
Mar 16 17:09:58 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_033845, maxKeepMS=31839, newDurationMS=29288: OK
Mar 16 17:10:04 akideck steam[6779]: Audio mix: start=103581200854, returned=40324261
Mar 16 17:10:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=3340, through=40324741, last_start=40324261, mixed=2879520, drop_before=0, drop_after=0
Mar 16 17:10:04 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -40.9dB, -34.6dB
Mar 16 17:10:18 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:10:18 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3624364580748 a:3624364967762 f:3624364980512 waiting:387014 process:12750 status:triggered
Mar 16 17:10:18 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3624369860240 a:3624364860181 f:3624364962822 waiting:18446744073704551557 process:102641 status:triggered
Mar 16 17:10:18 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:10:21 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:10:21 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3626881900326 a:3626882300040 f:3626882311450 waiting:399714 process:11410 status:triggered
Mar 16 17:10:21 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:3626884730265 a:3626886443262 f:3626882175659 waiting:1712997 process:18446744073705284013 status:awake
Mar 16 17:10:31 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_033845 - entire folder
Mar 16 17:10:31 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1480838, newDurationMS=1479000: OK
Mar 16 17:10:41 akideck earlyoom[801]: mem avail:  4878 of 10626 MiB (45.91%), swap free: 8252 of 8428 MiB (97.91%)
Mar 16 17:10:50 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:10:50 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3655724884559 a:3655725075861 f:3655725086791 waiting:191302 process:10930 status:triggered
Mar 16 17:10:50 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3655731020140 a:3655725009660 f:3655725021041 waiting:18446744073703541136 process:11381 status:triggered
Mar 16 17:10:57 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:10:57 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3662981110734 a:3662981366347 f:3662981377097 waiting:255613 process:10750 status:triggered
Mar 16 17:10:57 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:3662984729530 a:3662981256496 f:3662981269126 waiting:18446744073706078582 process:12630 status:triggered
Mar 16 17:11:04 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1447838, newDurationMS=1446000: OK
Mar 16 17:11:04 akideck steam[6779]: Audio mix: start=103581200854, returned=43204562
Mar 16 17:11:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=3641, through=43205042, last_start=43204562, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:11:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -27.5dB, -28.6dB
Mar 16 17:11:06 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:11:13 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:11:37 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1414843, newDurationMS=1413000: OK
Mar 16 17:11:44 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:11:44 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:3709842887755 a:3709844837325 f:3709844864625 waiting:1949570 process:27300 status:triggered
Mar 16 17:11:44 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:3709845447851 a:3709842950026 f:3709842996636 waiting:18446744073707053791 process:46610 status:triggered
Mar 16 17:11:50 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:11:50 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3716504202724 a:3716504530658 f:3716504546538 waiting:327934 process:15880 status:triggered
Mar 16 17:11:50 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3716509497937 a:3716504441817 f:3716504525428 waiting:18446744073704495496 process:83611 status:triggered
Mar 16 17:11:50 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:12:04 akideck steam[6779]: Audio mix: start=103581200854, returned=46084722
Mar 16 17:12:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=3801, through=46085202, last_start=46084722, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:12:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -52.9dB, -53.2dB
Mar 16 17:12:10 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1381837, newDurationMS=1380000: OK
Mar 16 17:12:16 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:12:16 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3742205698870 a:3742205911462 f:3742205924202 waiting:212592 process:12740 status:triggered
Mar 16 17:12:16 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3742210969682 a:3742205836551 f:3742205907652 waiting:18446744073704418485 process:71101 status:triggered
Mar 16 17:12:16 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:12:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:12:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3765315745435 a:3765316007977 f:3765316022257 waiting:262542 process:14280 status:triggered
Mar 16 17:12:39 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3765322912705 a:3765315920276 f:3765316003137 waiting:18446744073702559187 process:82861 status:triggered
Mar 16 17:12:39 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:12:43 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1348838, newDurationMS=1347000: OK
Mar 16 17:13:04 akideck steam[6779]: Audio mix: start=103581200854, returned=48964424
Mar 16 17:13:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=3983, through=48964904, last_start=48964424, mixed=2879520, drop_before=0, drop_after=0
Mar 16 17:13:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -27.5dB, -29.3dB
Mar 16 17:13:05 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (13 suppressed)
Mar 16 17:13:05 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:3790899672397 a:3790900061661 f:3790900075091 waiting:389264 process:13430 status:triggered
Mar 16 17:13:05 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:3790902409294 a:3790899713398 f:3790899751268 waiting:18446744073706855720 process:37870 status:triggered
Mar 16 17:13:16 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1315838, newDurationMS=1314000: OK
Mar 16 17:13:32 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 17:13:32 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3818106350913 a:3818106724506 f:3818106740436 waiting:373593 process:15930 status:triggered
Mar 16 17:13:32 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3818110465913 a:3818106432723 f:3818106460704 waiting:18446744073705518426 process:27981 status:triggered
Mar 16 17:13:37 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:13:43 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:13:49 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1282838, newDurationMS=1281000: OK
Mar 16 17:14:04 akideck steam[6779]: Audio mix: start=103581200854, returned=51844669
Mar 16 17:14:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=4228, through=51845149, last_start=51844669, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:14:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -53.7dB, -51.3dB
Mar 16 17:14:09 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:14:09 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3855409607077 a:3855409973980 f:3855409988920 waiting:366903 process:14940 status:triggered
Mar 16 17:14:09 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3855412448345 a:3855412475975 f:3855409820259 waiting:27630 process:18446744073706895900 status:awake
Mar 16 17:14:09 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:14:10 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (3 suppressed) out of buffers on port 0 2
Mar 16 17:14:13 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (43 suppressed)
Mar 16 17:14:13 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3858638892304 a:3858639175187 f:3858639185587 waiting:282883 process:10400 status:triggered
Mar 16 17:14:13 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3858644639531 a:3858639127617 f:3858639172177 waiting:18446744073704039702 process:44560 status:triggered
Mar 16 17:14:13 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (2 suppressed) out of buffers on port 0 2
Mar 16 17:14:17 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (8 suppressed)
Mar 16 17:14:17 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3862676277002 a:3862676822717 f:3862676834507 waiting:545715 process:11790 status:triggered
Mar 16 17:14:17 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3862679792186 a:3862676644735 f:3862676684226 waiting:18446744073706404165 process:39491 status:triggered
Mar 16 17:14:17 akideck steam[6779]: Caching cursor image for hand2, size 24x24, serial 11, cache size = 6
Mar 16 17:14:19 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:14:19 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3865121589798 a:3865121864651 f:3865121878031 waiting:274853 process:13380 status:triggered
Mar 16 17:14:19 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3865126383925 a:3865121707969 f:3865121729199 waiting:18446744073704875660 process:21230 status:triggered
Mar 16 17:14:19 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (4 suppressed) out of buffers on port 0 2
Mar 16 17:14:19 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:14:20 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:14:20 akideck steam[6779]: Adding process 10877 for gameID 2225070
Mar 16 17:14:20 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:14:20 akideck steam[6779]: 24 game pids rooted at pid 9643:
Mar 16 17:14:20 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10162,10165,10169,10230,10277,10877
Mar 16 17:14:22 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1249839, newDurationMS=1248000: OK
Mar 16 17:14:22 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (14 suppressed)
Mar 16 17:14:22 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3868236340215 a:3868237012521 f:3868237029032 waiting:672306 process:16511 status:triggered
Mar 16 17:14:22 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3868242372944 a:3868236935141 f:3868236954671 waiting:18446744073704113813 process:19530 status:triggered
Mar 16 17:14:22 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:14:22 akideck steam[6779]: Adding process 10897 for gameID 2225070
Mar 16 17:14:22 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:14:22 akideck steam[6779]: 25 game pids rooted at pid 9643:
Mar 16 17:14:22 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10162,10165,10169,10230,10277,10877,10897
Mar 16 17:14:22 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:14:22 akideck steam[6779]: Window title set to Steam Big Picture Mode
Mar 16 17:14:22 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:14:22 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:14:22 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:14:25 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (31 suppressed)
Mar 16 17:14:25 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/8 s:3870677011175 a:3870677573561 f:3870677589441 waiting:562386 process:15880 status:triggered
Mar 16 17:14:25 akideck pipewire[1449]: pw.node: (alsa_loopback_stream.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-82) xrun state:0x7f63f452f008 pending:0/2 s:3870682432799 a:3870677252368 f:3870677260508 waiting:18446744073704371185 process:8140 status:triggered
Mar 16 17:14:25 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:3870682436959 a:3870682450889 f:3870677292928 waiting:13930 process:18446744073704393655 status:awake
Mar 16 17:14:25 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:14:35 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (15 suppressed)
Mar 16 17:14:35 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:3881457978642 a:3881458313785 f:3881458326115 waiting:335143 process:12330 status:triggered
Mar 16 17:14:35 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:3881463311835 a:3881458086733 f:3881458108043 waiting:18446744073704326514 process:21310 status:triggered
Mar 16 17:14:35 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:14:38 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (20 suppressed)
Mar 16 17:14:38 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/7 s:3884268461484 a:3884269047910 f:3884269062740 waiting:586426 process:14830 status:triggered
Mar 16 17:14:38 akideck pipewire[1449]: pw.node: (alsa_loopback_stream.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-82) xrun state:0x7f63f452f008 pending:0/2 s:3884272940559 a:3884268595826 f:3884268605126 waiting:18446744073705206883 process:9300 status:triggered
Mar 16 17:14:38 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:14:51 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:14:51 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:3897058322078 a:3897059152676 f:3897059167386 waiting:830598 process:14710 status:triggered
Mar 16 17:14:51 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3897065058755 a:3897059056455 f:3897059070815 waiting:18446744073703549316 process:14360 status:triggered
Mar 16 17:14:52 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:14:54 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:14:54 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:14:55 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1216844, newDurationMS=1215000: OK
Mar 16 17:14:58 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (5 suppressed)
Mar 16 17:14:58 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:4/7 s:3903612586128 a:3903612858821 f:3903612870941 waiting:272693 process:12120 status:triggered
Mar 16 17:14:58 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:3903619170183 a:3903612764550 f:3903612778890 waiting:18446744073703145983 process:14340 status:triggered
Mar 16 17:14:59 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:15:02 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:15:02 akideck steam[6779]: Window title set to Trackmania
Mar 16 17:15:02 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:15:04 akideck steam[6779]: Audio mix: start=103581200854, returned=54724784
Mar 16 17:15:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=8663, through=54725264, last_start=54724784, mixed=2875680, drop_before=0, drop_after=0
Mar 16 17:15:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -21.8dB, -26.8dB
Mar 16 17:15:28 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1183842, newDurationMS=1182000: OK
Mar 16 17:15:43 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (7 suppressed)
Mar 16 17:15:43 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:3949471877875 a:3949472156928 f:3949472169528 waiting:279053 process:12600 status:triggered
Mar 16 17:15:43 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:3949477740223 a:3949472063717 f:3949472152058 waiting:18446744073703875110 process:88341 status:triggered
Mar 16 17:15:43 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:16:01 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1150838, newDurationMS=1149000: OK
Mar 16 17:16:04 akideck steam[6779]: Audio mix: start=103581200854, returned=57604884
Mar 16 17:16:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=8763, through=57605364, last_start=57604884, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:16:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -38.2dB, -47.8dB
Mar 16 17:16:34 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1117844, newDurationMS=1116000: OK
Mar 16 17:17:04 akideck steam[6779]: Audio mix: start=103581200854, returned=60484931
Mar 16 17:17:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=8810, through=60485411, last_start=60484931, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:17:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -16.3dB, -15.8dB
Mar 16 17:17:07 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1084838, newDurationMS=1083000: OK
Mar 16 17:17:20 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:17:20 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:4046099417776 a:4046099738159 f:4046099760229 waiting:320383 process:22070 status:triggered
Mar 16 17:17:20 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:4046104738059 a:4046099622528 f:4046099731589 waiting:18446744073704436085 process:109061 status:triggered
Mar 16 17:17:20 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:17:25 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:17:25 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:4050582116040 a:4050582432853 f:4050582445293 waiting:316813 process:12440 status:triggered
Mar 16 17:17:25 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:4050584907038 a:4050582224671 f:4050582245931 waiting:18446744073706869249 process:21260 status:triggered
Mar 16 17:17:28 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:17:28 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/7 s:4054216849261 a:4054217159934 f:4054217176804 waiting:310673 process:16870 status:triggered
Mar 16 17:17:28 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4054222200274 a:4054217040953 f:4054217058133 waiting:18446744073704392295 process:17180 status:triggered
Mar 16 17:17:28 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:4054222172093 a:4054216998082 f:4054217021293 waiting:18446744073704377605 process:23211 status:triggered
Mar 16 17:17:40 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1051843, newDurationMS=1050000: OK
Mar 16 17:18:01 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:18:01 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:4087001447659 a:4087001795682 f:4087001812982 waiting:348023 process:17300 status:triggered
Mar 16 17:18:01 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:4087006546129 a:4087001573310 f:4087001601250 waiting:18446744073704578797 process:27940 status:triggered
Mar 16 17:18:01 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:4087006613340 a:4087001692791 f:4087001717681 waiting:18446744073704631067 process:24890 status:triggered
Mar 16 17:18:04 akideck steam[6779]: Audio mix: start=103581200854, returned=63364826
Mar 16 17:18:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=9185, through=63365306, last_start=63364826, mixed=2879520, drop_before=0, drop_after=0
Mar 16 17:18:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -28.8dB, -36.4dB
Mar 16 17:18:05 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:18:05 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:4090801186329 a:4090801527942 f:4090801545632 waiting:341613 process:17690 status:triggered
Mar 16 17:18:05 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:4090803851735 a:4090801246829 f:4090801297680 waiting:18446744073706946710 process:50851 status:triggered
Mar 16 17:18:13 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=1018842, newDurationMS=1017000: OK
Mar 16 17:18:46 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=985839, newDurationMS=984000: OK
Mar 16 17:19:04 akideck steam[6779]: Audio mix: start=103581200854, returned=66245016
Mar 16 17:19:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=9375, through=66245496, last_start=66245016, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:19:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -32.1dB, -33.0dB
Mar 16 17:19:17 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:19:17 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/7 s:4163460493862 a:4163460743785 f:4163460757765 waiting:249923 process:13980 status:triggered
Mar 16 17:19:17 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4163466005397 a:4163460671664 f:4163460685644 waiting:18446744073704217883 process:13980 status:triggered
Mar 16 17:19:19 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=952843, newDurationMS=951000: OK
Mar 16 17:19:52 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=919843, newDurationMS=918000: OK
Mar 16 17:20:04 akideck steam[6779]: Audio mix: start=103581200854, returned=69125122
Mar 16 17:20:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=9481, through=69125602, last_start=69125122, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:20:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -39.1dB, -66.8dB
Mar 16 17:20:13 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:20:13 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:4218951719762 a:4218952407008 f:4218952423539 waiting:687246 process:16531 status:triggered
Mar 16 17:20:13 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4218957406878 a:4218951816573 f:4218951827253 waiting:18446744073703961311 process:10680 status:triggered
Mar 16 17:20:25 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=886843, newDurationMS=885000: OK
Mar 16 17:20:43 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:20:49 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:20:58 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=853843, newDurationMS=852000: OK
Mar 16 17:21:04 akideck steam[6779]: Audio mix: start=103581200854, returned=72005602
Mar 16 17:21:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=9481, through=72006082, last_start=72005602, mixed=2880480, drop_before=0, drop_after=0
Mar 16 17:21:05 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:21:05 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:4270565575293 a:4270565837696 f:4270565848746 waiting:262403 process:11050 status:triggered
Mar 16 17:21:05 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:4270569126028 a:4270565666914 f:4270565686854 waiting:18446744073706092502 process:19940 status:triggered
Mar 16 17:21:05 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:21:05 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:21:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -40.3dB, -40.7dB
Mar 16 17:21:13 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:21:19 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:21:31 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=820843, newDurationMS=819000: OK
Mar 16 17:21:59 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (9 suppressed)
Mar 16 17:21:59 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:4325168949023 a:4325169890682 f:4325169910753 waiting:941659 process:20071 status:triggered
Mar 16 17:21:59 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:4325174164475 a:4325169708151 f:4325169730891 waiting:18446744073705095292 process:22740 status:triggered
Mar 16 17:21:59 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:22:04 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=787838, newDurationMS=786000: OK
Mar 16 17:22:04 akideck steam[6779]: Audio mix: start=103581200854, returned=74885346
Mar 16 17:22:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=9705, through=74885826, last_start=74885346, mixed=2879520, drop_before=0, drop_after=0
Mar 16 17:22:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -43.7dB, -29.3dB
Mar 16 17:22:37 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=754842, newDurationMS=753000: OK
Mar 16 17:22:52 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:22:52 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:4377942807338 a:4377943791558 f:4377943806598 waiting:984220 process:15040 status:triggered
Mar 16 17:22:52 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:4377949636095 a:4377942928839 f:4377942958650 waiting:18446744073702844360 process:29811 status:triggered
Mar 16 17:22:59 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 17:22:59 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:4385116142790 a:4385116645285 f:4385116670555 waiting:502495 process:25270 status:triggered
Mar 16 17:22:59 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4385121961887 a:4385116524294 f:4385116542054 waiting:18446744073704114023 process:17760 status:triggered
Mar 16 17:23:04 akideck steam[6779]: Audio mix: start=103581200854, returned=77765631
Mar 16 17:23:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=9990, through=77766111, last_start=77765631, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:23:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -37.7dB, -37.3dB
Mar 16 17:23:10 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=721839, newDurationMS=720000: OK
Mar 16 17:23:43 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=688843, newDurationMS=687000: OK
Mar 16 17:23:45 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:23:45 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:4431363081595 a:4431363988774 f:4431364002394 waiting:907179 process:13620 status:triggered
Mar 16 17:23:45 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4431367349667 a:4431363373508 f:4431363889593 waiting:18446744073705575457 process:516085 status:triggered
Mar 16 17:23:53 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:23:53 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:4439292623684 a:4439292859706 f:4439292869546 waiting:236022 process:9840 status:triggered
Mar 16 17:23:53 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:4439295309520 a:4439292646704 f:4439292668104 waiting:18446744073706888800 process:21400 status:triggered
Mar 16 17:24:04 akideck steam[6779]: Audio mix: start=103581200854, returned=80645780
Mar 16 17:24:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=10139, through=80646260, last_start=80645780, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:24:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -23.8dB, -20.1dB
Mar 16 17:24:16 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=655843, newDurationMS=654000: OK
Mar 16 17:24:22 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:24:29 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:24:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:24:39 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:4484693071540 a:4484693442164 f:4484693455784 waiting:370624 process:13620 status:triggered
Mar 16 17:24:39 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:4484699630766 a:4484699696296 f:4484693218032 waiting:65530 process:18446744073703073352 status:awake
Mar 16 17:24:39 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:24:41 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:24:48 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:24:49 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=622843, newDurationMS=621000: OK
Mar 16 17:25:04 akideck steam[6779]: Audio mix: start=103581200854, returned=83525730
Mar 16 17:25:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=10569, through=83526210, last_start=83525730, mixed=2879520, drop_before=0, drop_after=0
Mar 16 17:25:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -25.5dB, -24.6dB
Mar 16 17:25:13 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (7 suppressed)
Mar 16 17:25:13 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:4518984034809 a:4518984330932 f:4518984343992 waiting:296123 process:13060 status:triggered
Mar 16 17:25:13 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:4518989476553 a:4518984226021 f:4518984326042 waiting:18446744073704301084 process:100021 status:triggered
Mar 16 17:25:13 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:25:22 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=589843, newDurationMS=588000: OK
Mar 16 17:25:33 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:25:33 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:4538994838171 a:4538995039013 f:4538995047183 waiting:200842 process:8170 status:triggered
Mar 16 17:25:33 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:4539000829141 a:4538994930402 f:4538994948002 waiting:18446744073703652877 process:17600 status:triggered
Mar 16 17:25:33 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:25:55 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=556843, newDurationMS=555000: OK
Mar 16 17:26:04 akideck steam[6779]: Audio mix: start=103581200854, returned=86406373
Mar 16 17:26:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=10732, through=86406853, last_start=86406373, mixed=2880480, drop_before=0, drop_after=0
Mar 16 17:26:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -24.5dB, -24.4dB
Mar 16 17:26:12 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:26:18 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:26:28 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=523842, newDurationMS=522000: OK
Mar 16 17:26:39 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:26:45 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:26:49 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:26:49 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:4614816958259 a:4614817236872 f:4614817248262 waiting:278613 process:11390 status:triggered
Mar 16 17:26:49 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4614822358583 a:4614817138571 f:4614817154281 waiting:18446744073704331604 process:15710 status:triggered
Mar 16 17:26:58 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=493841, newDurationMS=492000: OK
Mar 16 17:27:01 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:27:01 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:4626665065681 a:4626665321304 f:4626665335384 waiting:255623 process:14080 status:triggered
Mar 16 17:27:01 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4626671082890 a:4626665198202 f:4626665212702 waiting:18446744073703666928 process:14500 status:triggered
Mar 16 17:27:01 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:27:04 akideck steam[6779]: Audio mix: start=103581200854, returned=89286389
Mar 16 17:27:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=10748, through=89286869, last_start=89286389, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:27:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -29.2dB, -25.1dB
Mar 16 17:27:14 akideck systemd-timesyncd[557]: Contacted time server 216.66.48.42:123 (0.arch.pool.ntp.org).
Mar 16 17:27:15 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:27:20 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (7 suppressed)
Mar 16 17:27:20 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:4646256950804 a:4646257519198 f:4646257536740 waiting:568394 process:17542 status:triggered
Mar 16 17:27:20 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:4646262933176 a:4646257419049 f:4646257513705 waiting:18446744073704037489 process:94656 status:triggered
Mar 16 17:27:20 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:27:23 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (6 suppressed)
Mar 16 17:27:23 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:4648648020767 a:4648648295471 f:4648648311748 waiting:274704 process:16277 status:triggered
Mar 16 17:27:23 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4648652982764 a:4648648189891 f:4648648202215 waiting:18446744073704758743 process:12324 status:triggered
Mar 16 17:27:28 akideck steam[6779]: [2025-03-16 17:27:28] Background update loop checking for update. . .
Mar 16 17:27:28 akideck steam[6779]: [2025-03-16 17:27:28] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 16 17:27:28 akideck steam[6779]: [2025-03-16 17:27:28] Manifest download: send request
Mar 16 17:27:29 akideck steam[6779]: [2025-03-16 17:27:29] Manifest download: waiting for download to finish
Mar 16 17:27:29 akideck steam[6779]: [2025-03-16 17:27:29] Manifest download: finished
Mar 16 17:27:29 akideck steam[6779]: [2025-03-16 17:27:29] Download skipped by HTTP 304 Not Modified
Mar 16 17:27:29 akideck steam[6779]: [2025-03-16 17:27:29] Nothing to do
Mar 16 17:27:29 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (5 suppressed)
Mar 16 17:27:29 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:4655062040704 a:4655062316024 f:4655062329401 waiting:275320 process:13377 status:triggered
Mar 16 17:27:29 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:4655066593974 a:4655062174310 f:4655062194415 waiting:18446744073705131952 process:20105 status:triggered
Mar 16 17:27:29 akideck pkexec[11313]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:27:29 akideck pkexec[11313]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --enable-duplicate-detection check]
Mar 16 17:27:30 akideck pkexec[11335]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:27:30 akideck pkexec[11335]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-biosupdate check]
Mar 16 17:27:30 akideck steam[6779]: Checking for BIOS updates
Mar 16 17:27:30 akideck steam[6779]: BIOS version: F7G0112
Mar 16 17:27:30 akideck steam[6779]: Desired version: <none>
Mar 16 17:27:30 akideck steam[6779]: No updates configured for this bios
Mar 16 17:27:31 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=460843, newDurationMS=459000: OK
Mar 16 17:28:03 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=427843, newDurationMS=426000: OK
Mar 16 17:28:04 akideck steam[6779]: Audio mix: start=103581200854, returned=92182524
Mar 16 17:28:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=92183004, last_start=92182524, mixed=2895840, drop_before=0, drop_after=0
Mar 16 17:28:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -34.7dB, -25.6dB
Mar 16 17:28:07 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 17:28:07 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:4692579328795 a:4692579612405 f:4692579623317 waiting:283610 process:10912 status:triggered
Mar 16 17:28:07 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:4692585713409 a:4692585870857 f:4692579380114 waiting:157448 process:18446744073703060873 status:awake
Mar 16 17:28:23 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:28:23 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:4709321162297 a:4709322283280 f:4709322476886 waiting:1120983 process:193606 status:triggered
Mar 16 17:28:23 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:4709326273082 a:4709321927803 f:4709321953810 waiting:18446744073705206337 process:26007 status:triggered
Mar 16 17:28:34 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=397842, newDurationMS=396000: OK
Mar 16 17:29:03 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:29:04 akideck steam[6779]: Audio mix: start=103581200854, returned=95062524
Mar 16 17:29:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=95063004, last_start=95062524, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:29:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -30.5dB, -24.5dB
Mar 16 17:29:07 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=364845, newDurationMS=363000: OK
Mar 16 17:29:10 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:29:23 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:29:23 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:4768682994925 a:4768683222802 f:4768683230852 waiting:227877 process:8050 status:triggered
Mar 16 17:29:23 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:4768686576719 a:4768683021932 f:4768683043690 waiting:18446744073705996829 process:21758 status:triggered
Mar 16 17:29:23 akideck wireplumber[1450]: spa.audioconvert: 0x55e96a205c40: (0 suppressed) out of buffers on port 0 2
Mar 16 17:29:40 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=331838, newDurationMS=330000: OK
Mar 16 17:29:48 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (4 suppressed)
Mar 16 17:29:48 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/7 s:4793953765083 a:4793953905539 f:4793953913697 waiting:140456 process:8158 status:triggered
Mar 16 17:29:48 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4793959796050 a:4793953841650 f:4793953855327 waiting:18446744073703597216 process:13677 status:triggered
Mar 16 17:29:57 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 17:29:57 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:4802760115749 a:4802760283847 f:4802760292195 waiting:168098 process:8348 status:triggered
Mar 16 17:29:57 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4802765749307 a:4802760223098 f:4802760234616 waiting:18446744073704025407 process:11518 status:triggered
Mar 16 17:30:01 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:30:01 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:4807034019120 a:4807034182258 f:4807034190876 waiting:163138 process:8618 status:triggered
Mar 16 17:30:01 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:4807036725595 a:4807034085207 f:4807034100814 waiting:18446744073706911228 process:15607 status:triggered
Mar 16 17:30:04 akideck steam[6779]: Audio mix: start=103581200854, returned=97942524
Mar 16 17:30:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=97943004, last_start=97942524, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:30:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -30.4dB, -30.5dB
Mar 16 17:30:13 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=298842, newDurationMS=297000: OK
Mar 16 17:30:35 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (3 suppressed)
Mar 16 17:30:35 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/7 s:4841199945231 a:4841200152134 f:4841200164321 waiting:206903 process:12187 status:triggered
Mar 16 17:30:35 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4841205881003 a:4841200077141 f:4841200090408 waiting:18446744073703747754 process:13267 status:triggered
Mar 16 17:30:35 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:4841205859028 a:4841205947428 f:4841200076411 waiting:88400 process:18446744073703680599 status:awake
Mar 16 17:30:43 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=268847, newDurationMS=267000: OK
Mar 16 17:31:04 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:31:04 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/7 s:4869754790307 a:4869755059393 f:4869755070038 waiting:269086 process:10645 status:triggered
Mar 16 17:31:04 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4869760864653 a:4869754989320 f:4869755001576 waiting:18446744073703676283 process:12256 status:triggered
Mar 16 17:31:04 akideck steam[6779]: Audio mix: start=103581200854, returned=100823004
Mar 16 17:31:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=100823484, last_start=100823004, mixed=2880480, drop_before=0, drop_after=0
Mar 16 17:31:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -27.8dB, -28.0dB
Mar 16 17:31:13 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:31:15 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:31:15 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:3/7 s:4881076680917 a:4881076968403 f:4881076983989 waiting:287486 process:15586 status:triggered
Mar 16 17:31:15 akideck pipewire[1449]: pw.node: (filter-chain-sink-43) xrun state:0x7f63f4541008 pending:0/2 s:4881083674381 a:4881076887273 f:4881076902139 waiting:18446744073702764508 process:14866 status:triggered
Mar 16 17:31:15 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:4881083654453 a:4881076838985 f:4881076856762 waiting:18446744073702736148 process:17777 status:triggered
Mar 16 17:31:16 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=235844, newDurationMS=234000: OK
Mar 16 17:31:20 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:31:30 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:31:30 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:4896486839830 a:4896487124204 f:4896487134626 waiting:284374 process:10422 status:triggered
Mar 16 17:31:30 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:4896492439981 a:4896487057106 f:4896487120713 waiting:18446744073704168741 process:63607 status:triggered
Mar 16 17:31:30 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:31:46 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=205837, newDurationMS=204000: OK
Mar 16 17:31:54 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:31:54 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:4920253987743 a:4920254183199 f:4920254195770 waiting:195456 process:12571 status:triggered
Mar 16 17:31:54 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:4920256676940 a:4920254013477 f:4920254036840 waiting:18446744073706888153 process:23363 status:triggered
Mar 16 17:32:04 akideck steam[6779]: Audio mix: start=103581200854, returned=103702044
Mar 16 17:32:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=103702524, last_start=103702044, mixed=2879040, drop_before=0, drop_after=0
Mar 16 17:32:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -27.6dB, -32.3dB
Mar 16 17:32:09 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:32:09 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:2/7 s:4935396659809 a:4935398381528 f:4935398407970 waiting:1721719 process:26442 status:triggered
Mar 16 17:32:09 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:4935402174240 a:4935397610355 f:4935397668429 waiting:18446744073704987731 process:58074 status:triggered
Mar 16 17:32:09 akideck pipewire[1449]: pw.node: (Steam-137) xrun state:0x7f63f4004008 pending:0/2 s:4935402132807 a:4935397280792 f:4935397366538 waiting:18446744073704699601 process:85746 status:triggered
Mar 16 17:32:09 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:32:18 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=172847, newDurationMS=171000: OK
Mar 16 17:32:45 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:32:52 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=139844, newDurationMS=138000: OK
Mar 16 17:32:52 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:33:04 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (6 suppressed)
Mar 16 17:33:04 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:6/7 s:4989620471784 a:4989620677912 f:4989620689971 waiting:206128 process:12059 status:triggered
Mar 16 17:33:04 akideck pipewire[1449]: pw.node: (TrackmaniaUplay-145) xrun state:0x7f63ef724008 pending:0/1 s:4989626270481 a:4989620498923 f:4989620523521 waiting:18446744073703780058 process:24598 status:triggered
Mar 16 17:33:04 akideck steam[6779]: Audio mix: start=103581200854, returned=106582524
Mar 16 17:33:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=106583004, last_start=106582524, mixed=2880480, drop_before=0, drop_after=0
Mar 16 17:33:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -40.0dB, -32.7dB
Mar 16 17:33:08 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:33:14 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:33:25 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=106842, newDurationMS=105000: OK
Mar 16 17:33:26 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:33:26 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:5011602875201 a:5011603115400 f:5011603126019 waiting:240199 process:10619 status:triggered
Mar 16 17:33:26 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:5011608248056 a:5011603055755 f:5011603112290 waiting:18446744073704359315 process:56535 status:triggered
Mar 16 17:33:26 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:33:42 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:33:42 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:5027961155566 a:5027961340537 f:5027961355085 waiting:184971 process:14548 status:triggered
Mar 16 17:33:42 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:5027966659777 a:5027961271714 f:5027961336307 waiting:18446744073704163553 process:64593 status:triggered
Mar 16 17:33:42 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:33:57 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=73839, newDurationMS=72000: OK
Mar 16 17:34:04 akideck steam[6779]: Audio mix: start=103581200854, returned=109463004
Mar 16 17:34:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=109463484, last_start=109463004, mixed=2880480, drop_before=0, drop_after=0
Mar 16 17:34:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -24.2dB, -22.2dB
Mar 16 17:34:31 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=40856, newDurationMS=39000: OK
Mar 16 17:34:32 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:34:32 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/7 s:5078120697111 a:5078121293972 f:5078121308940 waiting:596861 process:14968 status:triggered
Mar 16 17:34:32 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:5078126285355 a:5078121188226 f:5078121287923 waiting:18446744073704454487 process:99697 status:triggered
Mar 16 17:34:32 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:34:52 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:34:52 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:5098232587903 a:5098232944763 f:5098232957902 waiting:356860 process:13139 status:triggered
Mar 16 17:34:52 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:5098240083849 a:5098232708476 f:5098232735692 waiting:18446744073702176243 process:27216 status:triggered
Mar 16 17:35:01 akideck steam[6779]: /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125/session.mpd - deleting entire recording because 9.00 is under 10 seconds
Mar 16 17:35:01 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_202125, maxKeepMS=10842, newDurationMS=0: OK
Mar 16 17:35:04 akideck steam[6779]: Audio mix: start=103581200854, returned=112343484
Mar 16 17:35:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=112343964, last_start=112343484, mixed=2880480, drop_before=0, drop_after=0
Mar 16 17:35:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -22.9dB, -24.6dB
Mar 16 17:35:34 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_204637, maxKeepMS=28831, newDurationMS=26992: OK
Mar 16 17:35:42 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (2 suppressed)
Mar 16 17:35:42 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:5148186999928 a:5148187311494 f:5148187323006 waiting:311566 process:11512 status:triggered
Mar 16 17:35:42 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:5148189733023 a:5148187102536 f:5148187141193 waiting:18446744073706921129 process:38657 status:triggered
Mar 16 17:35:47 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:35:53 akideck steam[6779]: GameScope focus changed to appID 2225070
Mar 16 17:36:04 akideck steam[6779]: Audio mix: start=103581200854, returned=115223484
Mar 16 17:36:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=115223964, last_start=115223484, mixed=2880000, drop_before=0, drop_after=0
Mar 16 17:36:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -47.6dB, -46.2dB
Mar 16 17:36:07 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_1911610_20241129_204637 - entire folder
Mar 16 17:36:07 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_2706170_20241204_044910, maxKeepMS=682833, newDurationMS=681000: OK
Mar 16 17:36:40 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_2706170_20241204_044910, maxKeepMS=649830, newDurationMS=648000: OK
Mar 16 17:36:43 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (1 suppressed)
Mar 16 17:36:43 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/7 s:5208975643959 a:5208975903618 f:5208975913398 waiting:259659 process:9780 status:triggered
Mar 16 17:36:43 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/2 s:5208981228662 a:5208975755297 f:5208975773219 waiting:18446744073704078251 process:17922 status:triggered
Mar 16 17:36:43 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:37:04 akideck steam[6779]: Audio mix: start=103581200854, returned=118103004
Mar 16 17:37:04 akideck steam[6779]: Audio source [System Pulse]: init=103581520042, adjustment=11043, through=118103484, last_start=118103004, mixed=2879520, drop_before=0, drop_after=0
Mar 16 17:37:05 akideck steam[6779]: Audio source [System Pulse]: Signal levels: -31.0dB, -29.6dB
Mar 16 17:37:13 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_2706170_20241204_044910, maxKeepMS=616844, newDurationMS=615000: OK
Mar 16 17:37:42 akideck steam[6779]: [Gamescope WSI] Destroying swapchain: 0x5555930a24c0
Mar 16 17:37:42 akideck steam[6779]: [Gamescope WSI] Destroyed swapchain: 0x5555930a24c0
Mar 16 17:37:42 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (7 suppressed)
Mar 16 17:37:42 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:5/6 s:5268223274730 a:5268223512811 f:5268223522291 waiting:238081 process:9480 status:triggered
Mar 16 17:37:42 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-84) xrun state:0x7f63f452e008 pending:0/1 s:5268228624568 a:5268223303270 f:5268223328880 waiting:18446744073704230318 process:25610 status:triggered
Mar 16 17:37:42 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:42 akideck steam[6779]: Window title set to Steam Big Picture Mode
Mar 16 17:37:42 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:43 akideck steam[6779]: wine client error:734: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 23 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10165,10169,10230,10877,10897
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 23 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10165,10169,10230,10877,10897
Mar 16 17:37:43 akideck steam[6779]: Adding window 25165846 for process 9847 and gameID 2225070
Mar 16 17:37:43 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:43 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:43 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:43 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:37:43 akideck steam[6779]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:37:43 akideck steam[6779]: Adding process 11620 for gameID 2225070
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 24 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10165,10169,10230,10877,10897,11620
Mar 16 17:37:43 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:43 akideck steam[6779]: Adding process 11631 for gameID 2225070
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 25 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,9916,10018,10105,10165,10169,10230,10877,10897,11620,11631
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 23 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,10018,10105,10165,10169,10230,10877,11620,11631
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 23 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,10018,10105,10165,10169,10230,10877,11620,11631
Mar 16 17:37:43 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 20 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,10165,10169,10877,11620,11631
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 20 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,10165,10169,10877,11620,11631
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 20 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,9847,9880,9910,9912,10165,10169,10877,11620,11631
Mar 16 17:37:43 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:43 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (0 suppressed) out of buffers on port 0 2
Mar 16 17:37:43 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:43 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,11620
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,11620
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,11620
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,11620
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,11620
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,11620
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,11620
Mar 16 17:37:43 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:43 akideck steam[6779]: 12 game pids rooted at pid 9643:
Mar 16 17:37:43 akideck steam[6779]: - 9643,9649,9760,9762,9768,9771,9781,9796,9802,9817,9839,11620
Mar 16 17:37:45 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:45 akideck steam[6779]: GameScope focus changed to Steam
Mar 16 17:37:45 akideck steam[6779]: pid 9764 != 9763, skipping destruction (fork without exec?)
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Refreshing process list for game 2225070
Mar 16 17:37:45 akideck steam[6779]: 0 game pids rooted at pid 0:
Mar 16 17:37:45 akideck steam[6779]: -
Mar 16 17:37:45 akideck steam[6779]: Encoding complete
Mar 16 17:37:45 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to paused
Mar 16 17:37:45 akideck steam[6779]: CDesktopCapturePipeWire: PipeWire stream state changed to unconnected
Mar 16 17:37:45 akideck gamescope-session[6522]: [gamescope] [Info]  pipewire: stream state changed: paused
Mar 16 17:37:45 akideck steam[6779]: >>> Stopped desktop stream
Mar 16 17:37:45 akideck steam[6779]: PulseAudio: Context connection terminated
Mar 16 17:37:45 akideck steam[6779]: Game Recording - Recording Stopped [recording=bg_2225070_20250316_235636]
Mar 16 17:37:45 akideck steam[6779]: Stopped game recording session
Mar 16 17:37:45 akideck steam[6779]: ------------------------------------------------------------------------------------------------------
Mar 16 17:37:45 akideck steam[6779]: Game Recording - game stopped [gameid=2225070]
Mar 16 17:37:45 akideck steam[6779]: Removing process 11631 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 11620 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10897 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10877 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10415 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10277 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10230 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10169 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10165 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10162 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10105 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 41943043 for process 10105 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 41943042 for process 10105 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 35651635 for process 10105 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 41943041 for process 10105 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10045 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 10018 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9977 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9916 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9914 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9912 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9910 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9880 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 27263008 for process 9880 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 29360130 for process 9880 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 27263007 for process 9880 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 29360129 for process 9880 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9864 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9855 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9847 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165846 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165845 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165844 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165834 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165837 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165831 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165839 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165841 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165828 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165827 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165826 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 23068685 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 25165825 for process 9847 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9839 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9834 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9817 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9802 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9796 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9781 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9771 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9768 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9766 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9763 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9762 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 16777219 for process 9762 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 16777218 for process 9762 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 12582925 for process 9762 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing window 16777217 for process 9762 and gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9761 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9760 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9650 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9649 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]: Removing process 9643 for gameID 2225070
Mar 16 17:37:45 akideck steam[6779]:   attempted to delete /home/deck/.local/share/Steam/userdata/29462734/gamerecordings/video/bg_2706170_20241204_044910, maxKeepMS=583927, newDurationMS=582000: OK
Mar 16 17:37:45 akideck systemd[1]: Starting Time & Date Service...
Mar 16 17:37:46 akideck systemd[1]: Started Time & Date Service.
Mar 16 17:37:46 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 11665, but reception is disabled
Mar 16 17:37:46 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 11670, but reception is disabled
Mar 16 17:37:46 akideck steam[6779]: avcodec_get_hw_config Hardware CUDA failed.
Mar 16 17:37:46 akideck steam[6779]: BCreateHwDeviceContext AMD Hardware VAAPI ...
Mar 16 17:37:46 akideck steam[6779]: ... success.
Mar 16 17:38:16 akideck systemd[1]: systemd-timedated.service: Deactivated successfully.
Mar 16 17:38:44 akideck pkexec[11715]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:38:45 akideck pkexec[11715]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-session-select plasma --sentinel-created]
Mar 16 17:38:45 akideck steam[6779]: Updated user selected session to plasma-steamos-oneshot.desktop
Mar 16 17:38:45 akideck systemd[1202]: Stopped target Gamescope Session.
Mar 16 17:38:45 akideck systemd[1202]: Stopping Gamescope Session...
Mar 16 17:38:45 akideck systemd[1202]: Stopping Power Button daemon for SteamOS...
Mar 16 17:38:45 akideck xbindkeys[6604]: X connection to :0 broken (explicit kill or server shutdown).
Mar 16 17:38:45 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 11722, but reception is disabled
Mar 16 17:38:45 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: [xwayland/server.c:217] Restarting Xwayland
Mar 16 17:38:45 akideck systemd[1202]: Stopping Accessibility services bus...
Mar 16 17:38:45 akideck systemd[1202]: Stopping mangoapp...
Mar 16 17:38:45 akideck systemd[1202]: Stopping Xbindkeys for Gamescope session...
Mar 16 17:38:45 akideck systemd[1202]: Stopping Wrapper for Ibus...
Mar 16 17:38:45 akideck systemd[1202]: Stopping Steam Notification Daemon...
Mar 16 17:38:45 akideck deck[11723]: Gamescope Session Ended - Performing Final Cleanup
Mar 16 17:38:45 akideck gamescope-session[6522]: [gamescope] [Info]  wlserver: [xwayland/server.c:217] Restarting Xwayland
Mar 16 17:38:45 akideck systemd[1202]: Stopping Steam Short Session Tracker...
Mar 16 17:38:45 akideck systemd[1202]: Stopping Portal service...
Mar 16 17:38:45 akideck systemd[1202]: Stopping flatpak document portal service...
Mar 16 17:38:45 akideck systemd[1202]: Stopping sandboxed app permission store...
Mar 16 17:38:45 akideck gamescope-session[11729]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :1
Mar 16 17:38:45 akideck systemd[1202]: steam-notif-daemon.service: Main process exited, code=exited, status=1/FAILURE
Mar 16 17:38:45 akideck systemd[1202]: steam-notif-daemon.service: Failed with result 'exit-code'.
Mar 16 17:38:45 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) graph xrun not-triggered (6 suppressed)
Mar 16 17:38:45 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-95) xrun state:0x7f63f452d008 pending:1/6 s:5330558002823 a:5330559923705 f:5330559942854 waiting:1920882 process:19149 status:triggered
Mar 16 17:38:45 akideck pipewire[1449]: pw.node: (filter-chain-playback-44) xrun state:0x7f63f4540008 pending:0/2 s:5330584047675 a:5330559663205 f:5330559918345 waiting:18446744073685167146 process:255140 status:triggered
Mar 16 17:38:45 akideck gamescope-session[11735]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :0
Mar 16 17:38:45 akideck pipewire[1449]: spa.audioconvert: 0x555db0898710: (1 suppressed) out of buffers on port 0 2
Mar 16 17:38:45 akideck systemd[1]: run-user-1000-doc.mount: Deactivated successfully.
Mar 16 17:38:45 akideck systemd[1202]: Stopped Steam Notification Daemon.
Mar 16 17:38:45 akideck systemd[1202]: Stopped Power Button daemon for SteamOS.
Mar 16 17:38:45 akideck systemd[1202]: Stopped mangoapp.
Mar 16 17:38:45 akideck systemd[1202]: gamescope-mangoapp.service: Consumed 4min 6.645s CPU time, 47.8M memory peak, 20.9M memory swap peak.
Mar 16 17:38:45 akideck systemd[1202]: Stopped Xbindkeys for Gamescope session.
Mar 16 17:38:45 akideck systemd[1202]: Stopped Wrapper for Ibus.
Mar 16 17:38:45 akideck systemd[1202]: Stopped Portal service.
Mar 16 17:38:45 akideck systemd[1202]: Stopped flatpak document portal service.
Mar 16 17:38:45 akideck systemd[1202]: Stopped sandboxed app permission store.
Mar 16 17:38:45 akideck systemd[1202]: Stopped Accessibility services bus.
Mar 16 17:38:45 akideck steam-short-session-tracker[11748]: rm: cannot remove '/tmp/steamos-short-session-tracker': No such file or directory
Mar 16 17:38:45 akideck systemd[1202]: Stopped Steam Short Session Tracker.
Mar 16 17:38:45 akideck systemd[1202]: Stopping Steam Launcher...
Mar 16 17:38:45 akideck kernel: input: Steam Deck as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input50
Mar 16 17:38:45 akideck kernel: input: Steam Deck Motion Sensors as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input51
Mar 16 17:38:45 akideck systemd[1202]: steam-launcher.service: Killing process 6779 (srt-logger) with signal SIGKILL.
Mar 16 17:38:45 akideck systemd[1202]: steam-launcher.service: Killing process 6878 (srt-logger) with signal SIGKILL.
Mar 16 17:38:45 akideck systemd[1202]: steam-launcher.service: Killing process 7060 (steam-runtime-l) with signal SIGKILL.
Mar 16 17:38:45 akideck systemd[1202]: steam-launcher.service: Killing process 7151 (steamwebhelper) with signal SIGKILL.
Mar 16 17:38:45 akideck systemd[1202]: steam-launcher.service: Killing process 7072 (gdbus) with signal SIGKILL.
Mar 16 17:38:45 akideck systemd[1202]: steam-launcher.service: Killing process 7538 (steamwebhelper) with signal SIGKILL.
Mar 16 17:38:45 akideck systemd[1202]: Stopped Steam Launcher.
Mar 16 17:38:45 akideck systemd[1202]: steam-launcher.service: Consumed 2h 40min 18.826s CPU time, 9.9G memory peak, 2.1G memory swap peak.
Mar 16 17:38:45 akideck systemd[1202]: Stopped target Current graphical user session.
Mar 16 17:38:45 akideck gamescope-session[11792]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 17:38:45 akideck gamescope-session[11792]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 17:38:45 akideck gamescope-session[11792]: >                   X11 cannot support keycodes above 255.
Mar 16 17:38:45 akideck gamescope-session[11793]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 17:38:45 akideck gamescope-session[11793]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 17:38:45 akideck gamescope-session[11793]: >                   X11 cannot support keycodes above 255.
Mar 16 17:38:45 akideck gamescope-session[11792]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 17:38:45 akideck gamescope-session[11792]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 17:38:45 akideck gamescope-session[11793]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 17:38:45 akideck gamescope-session[11793]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 17:38:45 akideck gamescope-session[11792]: Errors from xkbcomp are not fatal to the X server
Mar 16 17:38:45 akideck gamescope-session[11793]: Errors from xkbcomp are not fatal to the X server
Mar 16 17:38:45 akideck gamescope-session[11735]: (EE) failed to read Wayland events: Broken pipe
Mar 16 17:38:45 akideck gamescope-session[11729]: (EE) failed to read Wayland events: Broken pipe
Mar 16 17:38:45 akideck gamescope-session[6522]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 16 17:38:45 akideck gamescope-session[6522]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 16 17:38:45 akideck gamescope-session[6522]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 16 17:38:45 akideck gamescope-session[6522]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 16 17:38:46 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 16 17:38:47 akideck systemd[1202]: Stopped Gamescope Session.
Mar 16 17:38:47 akideck systemd[1202]: gamescope-session.service: Consumed 9min 19.649s CPU time, 207.4M memory peak, 34.9M memory swap peak.
Mar 16 17:38:47 akideck systemd[1202]: Stopped target Session services which should run early before the graphical session is brought up.
Mar 16 17:38:47 akideck deck[11808]: Gamescope Session Ended - Cleanup Complete
Mar 16 17:38:47 akideck sddm-helper[6490]: [PAM] Closing session
Mar 16 17:38:47 akideck sddm-helper[6490]: pam_unix(sddm-autologin:session): session closed for user deck
Mar 16 17:38:47 akideck sddm-helper[6490]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: pam_sm_close_session
Mar 16 17:38:47 akideck sddm-helper[6490]: pam_kwallet5(sddm-autologin:setcred): pam_kwallet5: pam_sm_setcred
Mar 16 17:38:47 akideck sddm-helper[6490]: [PAM] Ended.
Mar 16 17:38:47 akideck sddm[1091]: Auth: sddm-helper exited successfully
Mar 16 17:38:47 akideck systemd[1]: session-4.scope: Deactivated successfully.
Mar 16 17:38:47 akideck sddm[1091]: Removing display SDDM::Display(0x7f7e9000a710) ...
Mar 16 17:38:47 akideck systemd-logind[871]: Removed session 4.
Mar 16 17:38:47 akideck sddm[1091]: Adding new display...
Mar 16 17:38:47 akideck sddm[1091]: Loaded empty theme configuration
Mar 16 17:38:47 akideck sddm[1091]: Using VT 1
Mar 16 17:38:47 akideck sddm[1091]: Display server started.
Mar 16 17:38:47 akideck sddm[1091]: Reading from "/usr/local/share/xsessions/plasma-steamos-oneshot.desktop"
Mar 16 17:38:47 akideck sddm[1091]: Reading from "/usr/share/xsessions/plasma-steamos-oneshot.desktop"
Mar 16 17:38:47 akideck sddm[1091]: Session "/usr/share/xsessions/plasma-steamos-oneshot.desktop" selected, command: "/usr/bin/startplasma-steamos-oneshot /usr/bin/startplasma-x11" for VT 1
Mar 16 17:38:47 akideck wireplumber[1450]: wplua: [string "alsa.lua"]:448: table index is nil
                                           stack traceback:
                                                   [string "alsa.lua"]:448: in function <[string "alsa.lua"]:434>
Mar 16 17:38:47 akideck sddm-helper[11813]: [PAM] Starting...
Mar 16 17:38:47 akideck sddm-helper[11813]: [PAM] Authenticating...
Mar 16 17:38:47 akideck sddm-helper[11813]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: pam_sm_authenticate
Mar 16 17:38:47 akideck sddm-helper[11813]: [PAM] Preparing to converse...
Mar 16 17:38:47 akideck sddm-helper[11813]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Couldn't get password (it is empty)
Mar 16 17:38:47 akideck sddm-helper[11813]: [PAM] Conversation with 1 messages
Mar 16 17:38:47 akideck sddm-helper[11813]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Empty or missing password, doing nothing
Mar 16 17:38:47 akideck sddm-helper[11813]: [PAM] returning.
Mar 16 17:38:47 akideck sddm[1091]: Authentication for user  "deck"  successful
Mar 16 17:38:47 akideck sddm-helper[11813]: pam_kwallet5(sddm-autologin:setcred): pam_kwallet5: pam_sm_setcred
Mar 16 17:38:47 akideck sddm-helper[11813]: pam_unix(sddm-autologin:session): session opened for user deck(uid=1000) by deck(uid=0)
Mar 16 17:38:47 akideck systemd-logind[871]: New session 6 of user deck.
Mar 16 17:38:47 akideck systemd[1]: Started Session 6 of User deck.
Mar 16 17:38:47 akideck sddm-helper[11813]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: pam_sm_open_session
Mar 16 17:38:47 akideck sddm-helper[11813]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: open_session called without kwallet5_key
Mar 16 17:38:47 akideck sddm-helper[11813]: Starting X11 session: "/usr/bin/X -nolisten tcp -background none -seat seat0 -noreset -keeptty -novtswitch -verbose 3" "/usr/share/sddm/scripts/Xsession \"/usr/bin/startplasma-steamos-oneshot /usr/bin/startplasma-x11\""
Mar 16 17:38:47 akideck sddm-helper[11820]: Jumping to VT 1
Mar 16 17:38:47 akideck sddm-helper[11820]: VT mode didn't need to be fixed
Mar 16 17:38:47 akideck sddm[1091]: Session started true
Mar 16 17:38:47 akideck sddm-helper-start-x11user[11820]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
                                                          Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
                                                          If this causes problems, reconfigure your locale. See the locale(1) manual
                                                          for more information.
Mar 16 17:38:47 akideck sddm-helper-start-x11user[11820]: Xauthority path: "/run/user/1000/xauth_fspluN"
Mar 16 17:38:47 akideck sddm-helper-start-x11user[11820]: Running server: /usr/bin/X -nolisten tcp -background none -seat seat0 -noreset -keeptty -novtswitch -verbose 3 -auth /run/user/1000/xauth_fspluN -displayfd 13 vt1
Mar 16 17:38:47 akideck sddm-helper-start-x11user[11820]: X11 display: :0
Mar 16 17:38:47 akideck sddm-helper-start-x11user[11820]: starting XOrg Greeter... ":0"
Mar 16 17:38:47 akideck sddm-helper-start-x11user[11820]: Writing cookie to "/run/user/1000/xauth_fspluN"
Mar 16 17:38:47 akideck sddm-helper-start-x11user[11820]: Setting default cursor...
Mar 16 17:38:47 akideck sddm-helper-start-x11user[11820]: Running display setup script: /usr/lib/steamos/steamos-rotate-x11-screen
Mar 16 17:38:47 akideck sddm-helper-start-x11user[11820]: "Output eDP has panel orientation \"Right Side Up \" rotating right\n"
Mar 16 17:38:48 akideck pkexec[11858]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:38:48 akideck pkexec[11858]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck] [COMMAND=/usr/bin/steamos-session-select gamescope --sentinel-created]
Mar 16 17:38:48 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 16 17:38:48 akideck sddm-helper-start-x11user[11820]: "(--) Log file renamed from \"/home/deck/.local/share/xorg/Xorg.pid-11821.log\" to \"/home/deck/.local/share/xorg/Xorg.0.log\"\n\nX.Org X Server 1.21.1.16\nX Protocol Version 11, Revision 0\nCurrent Operating System: Linux akideck 6.11.11-valve8-1-neptune-611-g9b073eb8166e #1 SMP PREEMPT_DYNAMIC Thu, 13 Mar 2025 00:07:06 +0000 x86_64\nKernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-neptune-611 console=tty1 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0 rd.systemd.gpt_auto=no log_buf_len=4M amd_iommu=off amdgpu.lockup_timeout=5000,10000,10000,5000 amdgpu.gttsize=8128 amdgpu.sched_hw_submission=4 audit=0 fsck.mode=auto fsck.repair=preen loglevel=3 splash quiet plymouth.ignore-serial-consoles fbcon=vc:4-6 steamos.efi=PARTUUID=3aa080ee-ef49-4929-a90f-4dfb6b93d329\n \nCurrent version of pixman: 0.44.2\n\tBefore reporting problems, check http://wiki.x.org\n\tto make sure that you have the latest version.\nMarkers: (--) probed, (**) from config file, (==) default setting,\n\t(++) from command line, (!!) notice, (II) informational,\n\t(WW) warning, (EE) error, (NI) not implemented, (??) unknown.\n(==) Log file: \"/home/deck/.local/share/xorg/Xorg.0.log\", Time: Sun Mar 16 17:38:47 2025\n(==) Using system config directory \"/usr/share/X11/xorg.conf.d\"\n(==) No Layout section.  Using the first Screen section.\n(**) |-->Screen \"Default Screen\" (0)\n(**) |   |-->Monitor \"<default monitor>\"\n(==) No monitor specified for screen \"Default Screen\".\n\tUsing a default monitor configuration.\n(**) Allowing byte-swapped clients\n(==) Automatically adding devices\n(==) Automatically enabling devices\n(==) Automatically adding GPU devices\n(==) Automatically binding GPU devices\n(==) Max clients allowed: 256, resource mask: 0x1fffff\n(WW) The directory \"/usr/share/fonts/misc\" does not exist.\n\tEntry deleted from font path.\n(WW) `fonts.dir' not found (or not valid) in \"/usr/share/fonts/TTF\".\n\tEntry deleted from font path.\n\t(Run 'mkfontdir' on \"/usr/share/fonts/TTF\").\n(WW) The directory \"/usr/share/fonts/OTF\" does not exist.\n\tEntry deleted from font path.\n(WW) The directory \"/usr/share/fonts/Type1\" does not exist.\n\tEntry deleted from font path.\n(WW) The directory \"/usr/share/fonts/100dpi\" does not exist.\n\tEntry deleted from font path.\n(WW) The directory \"/usr/share/fonts/75dpi\" does not exist.\n\tEntry deleted from font path.\n(==) FontPath set to:\n\t\n(==) ModulePath set to \"/usr/lib/xorg/modules\"\n(II) The server relies on udev to provide the list of input devices.\n\tIf no devices become available, reconfigure udev or disable AutoAddDevices.\n(II) Module ABI versions:\n\tX.Org ANSI C Emulation: 0.4\n\tX.Org Video Driver: 25.2\n\tX.Org XInput driver : 24.4\n\tX.Org Server Extension : 10.0\n(++) using VT number 1\n\n(II) systemd-logind: took control of session /org/freedesktop/login1/session/_36\n(II) xfree86: Adding drm device (/dev/dri/card0)\n(II) Platform probe for /sys/devices/pci0000:00/0000:00:08.1/0000:04:00.0/drm/card0\n(II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 14 paused 0\n(--) PCI:*(4@0:0:0) 1002:1435:1002:0123 rev 174, Mem @ 0xf8e0000000/268435456, 0xf8f0000000/2097152, 0x80500000/524288, I/O @ 0x00001000/256\n(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)\n(II) LoadModule: \"glx\"\n(II) Loading /usr/lib/xorg/modules/extensions/libglx.so\n(II) Module glx: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.16, module version = 1.0.0\n\tABI class: X.Org Server Extension, version 10.0\n(II) Applying OutputClass \"AMDgpu\" to /dev/dri/card0\n\tloading driver: amdgpu\n(==) Matched amdgpu as autoconfigured driver 0\n(==) Matched ati as autoconfigured driver 1\n(==) Matched modesetting as autoconfigured driver 2\n(==) Matched fbdev as autoconfigured driver 3\n(==) Matched vesa as autoconfigured driver 4\n(==) Assigned the driver to the xf86ConfigLayout\n(II) LoadModule: \"amdgpu\"\n(II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so\n(II) Module amdgpu: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.11, module version = 23.0.0\n\tModule class: X.Org Video Driver\n\tABI class: X.Org Video Driver, version 25.2\n(II) LoadModule: \"ati\"\n(WW) Warning, couldn't open module ati\n(EE) Failed to load module \"ati\" (module does not exist, 0)\n(II) LoadModule: \"modesetting\"\n(II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so\n(II) Module modesetting: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.16, module version = 1.21.1\n\tModule class: X.Org Video Driver\n\tABI class: X.Org Video Driver, version 25.2\n(II) LoadModule: \"fbdev\"\n(WW) Warning, couldn't open module fbdev\n(EE) Failed to load module \"fbdev\" (module does not exist, 0)\n(II) LoadModule: \"vesa\"\n(WW) Warning, couldn't open module vesa\n(EE) Failed to load module \"vesa\" (module does not exist, 0)\n(II) AMDGPU: Driver for AMD Radeon:\n\tAll GPUs supported by the amdgpu kernel driver\n(II) modesetting: Driver for Modesetting Kernel Drivers: kms\n(WW) Falling back to old probe method for modesetting\n(WW) VGA arbiter: cannot open kernel arbiter, no multi-card support\n(II) AMDGPU(0): Creating default Display subsection in Screen section\n\t\"Default Screen\" for depth/fbbpp 24/32\n(**) AMDGPU(0): Depth 24, (--) framebuffer bpp 32\n(II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)\n(==) AMDGPU(0): Default visual is TrueColor\n(II) Applying OutputClass \"AMDgpu\" options to /dev/dri/card0\n(==) AMDGPU(0): RGB weight 888\n(II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC)\n(--) AMDGPU(0): Chipset: \"AMD Custom GPU 0932\" (ChipID = 0x1435)\n(II) Loading sub module \"fb\"\n(II) LoadModule: \"fb\"\n(II) Module \"fb\" already built-in\n(II) Loading sub module \"dri2\"\n(II) LoadModule: \"dri2\"\n(II) Module \"dri2\" already built-in\n(II) Loading sub module \"glamoregl\"\n(II) LoadModule: \"glamoregl\"\n(II) Loading /usr/lib/xorg/modules/libglamoregl.so\n(II) Module glamoregl: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.16, module version = 1.0.1\n\tABI class: X.Org ANSI C Emulation, version 0.4\n(II) AMDGPU(0): glamor X acceleration enabled on AMD Custom GPU 0932 (radeonsi, vangogh, LLVM 18.1.8, DRM 3.59, 6.11.11-valve8-1-neptune-611-g9b073eb8166e)\n(II) AMDGPU(0): glamor detected, initialising EGL layer.\n(==) AMDGPU(0): TearFree property default: auto\n(==) AMDGPU(0): VariableRefresh: disabled\n(==) AMDGPU(0): AsyncFlipSecondaries: disabled\n(II) AMDGPU(0): KMS Pageflipping: enabled\n(II) AMDGPU(0): Output eDP has no monitor section\n(II) AMDGPU(0): Output DisplayPort-0 has no monitor section\n(**) AMDGPU(0): Option \"NoOutputInitialSize\" \"1920 1080\"\n(II) AMDGPU(0): EDID for output eDP\n(II) AMDGPU(0): Manufacturer: VLV  Model: 3004  Serial#: 1\n(II) AMDGPU(0): Year: 2022  Week: 255\n(II) AMDGPU(0): EDID Version: 1.4\n(II) AMDGPU(0): Digital Display Input\n(II) AMDGPU(0): 8 bits per channel\n(II) AMDGPU(0): Digital interface is DisplayPort\n(II) AMDGPU(0): Max Image Size [cm]: horiz.: 10  vert.: 16\n(II) AMDGPU(0): Gamma: 2.20\n(II) AMDGPU(0): No DPMS capabilities specified\n(II) AMDGPU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:2:2\n(II) AMDGPU(0): Default color space is primary color space\n(II) AMDGPU(0): First detailed timing is preferred mode\n(II) AMDGPU(0): Preferred mode is native pixel format and refresh rate\n(II) AMDGPU(0): Display is continuous-frequency\n(II) AMDGPU(0): redX: 0.685 redY: 0.314   greenX: 0.245 greenY: 0.715\n(II) AMDGPU(0): blueX: 0.138 blueY: 0.050   whiteX: 0.312 whiteY: 0.329\n(II) AMDGPU(0): Manufacturer's mask: 0\n(II) AMDGPU(0): Supported detailed timing:\n(II) AMDGPU(0): clock: 102.0 MHz   Image Size:  100 x 160 mm\n(II) AMDGPU(0): h_active: 800  h_sync: 818  h_sync_end 822 h_blank_end 858 h_border: 0\n(II) AMDGPU(0): v_active: 1280  v_sync: 1288  v_sync_end 1290 v_blanking: 1320 v_border: 0\n(II) AMDGPU(0): Monitor name: ANX7530 U\n(II) AMDGPU(0): Ranges: V min: 45 V max: 90 Hz, H min: 118 H max: 119 kHz, PixClock max 145 MHz\n(II) AMDGPU(0): Number of EDID sections to follow: 1\n(II) AMDGPU(0): EDID (in hex):\n(II) AMDGPU(0): \t00ffffffffffff005996043001000000\n(II) AMDGPU(0): \tff200104a50a1078176c71af503eb723\n(II) AMDGPU(0): \t0c505400000001010101010101010101\n(II) AMDGPU(0): \t010101010101d827203a300028501204\n(II) AMDGPU(0): \t820064a00000001e000000fc00414e58\n(II) AMDGPU(0): \t3735333020550a202020000000fd002d\n(II) AMDGPU(0): \t5a76770e000a20202020202000000010\n(II) AMDGPU(0): \t00000000000000000000000000000116\n(II) AMDGPU(0): \t02030b00e60601016a6a030000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t00000000000000000000000000000000\n(II) AMDGPU(0): \t0000000000000000000000000000002b\n(II) AMDGPU(0): Printing probed modes for output eDP\n(II) AMDGPU(0): Modeline \"800x1280\"x90.1  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n(II) AMDGPU(0): EDID for output DisplayPort-0\n(II) AMDGPU(0): Output eDP connected\n(II) AMDGPU(0): Output DisplayPort-0 disconnected\n(II) AMDGPU(0): Using exact sizes for initial modes\n(II) AMDGPU(0): Output eDP using initial mode 800x1280 +0+0\n(II) AMDGPU(0): mem size init: gart size :1fb298000 vram size: s:3e45d000 visible:3e45d000\n(==) AMDGPU(0): DPI set to (96, 96)\n(==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0)\n(II) Loading sub module \"ramdac\"\n(II) LoadModule: \"ramdac\"\n(II) Module \"ramdac\" already built-in\n(II) UnloadModule: \"modesetting\"\n(II) Unloading modesetting\n(II) AMDGPU(0): [DRI2] Setup complete\n(II) AMDGPU(0): [DRI2]   DRI driver: radeonsi\n(II) AMDGPU(0): [DRI2]   VDPAU driver: radeonsi\n(II) AMDGPU(0): Front buffer pitch: 3584 bytes\n(II) AMDGPU(0): SYNC extension fences enabled\n(II) AMDGPU(0): Present extension enabled\n(==) AMDGPU(0): DRI3 enabled\n(==) AMDGPU(0): Backing store enabled\n(II) AMDGPU(0): Direct rendering enabled\n(II) AMDGPU(0): Use GLAMOR acceleration.\n(II) AMDGPU(0): Acceleration enabled\n(==) AMDGPU(0): DPMS enabled\n(==) AMDGPU(0): Silken mouse enabled\n(II) AMDGPU(0): Set up textured video (glamor)\n(WW) AMDGPU(0): Option \"HotplugDriver\" is not used\n(WW) AMDGPU(0): Option \"AllowEmptyInitialConfiguration\" is not used\n(II) Initializing extension Generic Event Extension\n(II) Initializing extension SHAPE\n(II) Initializing extension MIT-SHM\n(II) Initializing extension XInputExtension\n(II) Initializing extension XTEST\n(II) Initializing extension BIG-REQUESTS\n(II) Initializing extension SYNC\n(II) Initializing extension XKEYBOARD\n(II) Initializing extension XC-MISC\n(II) Initializing extension SECURITY\n(II) Initializing extension XFIXES\n(II) Initializing extension RENDER\n(II) Initializing extension RANDR\n(II) Initializing extension COMPOSITE\n(II) Initializing extension DAMAGE\n(II) Initializing extension MIT-SCREEN-SAVER\n(II) Initializing extension DOUBLE-BUFFER\n(II) Initializing extension RECORD\n(II) Initializing extension DPMS\n(II) Initializing extension Present\n(II) Initializing extension DRI3\n(II) Initializing extension X-Resource\n(II) Initializing extension XVideo\n(II) Initializing extension XVideo-MotionCompensation\n(II) Initializing extension GLX\n(II) AIGLX: Loaded and initialized radeonsi\n(II) GLX: Initialized DRI2 GL provider for screen 0\n(II) Initializing extension XFree86-VidModeExtension\n(II) Initializing extension XFree86-DGA\n(II) Initializing extension XFree86-DRI\n(II) Initializing extension DRI2\n(II) AMDGPU(0): Setting screen physical size to 211 x 338\n(II) config/udev: Adding input device Power Button (/dev/input/event2)\n(**) Power Button: Applying InputClass \"libinput keyboard catchall\"\n(II) LoadModule: \"libinput\"\n(II) Loading /usr/lib/xorg/modules/input/libinput_drv.so\n(II) Module libinput: vendor=\"X.Org Foundation\"\n\tcompiled for 1.21.1.13, module version = 1.5.0\n\tModule class: X.Org XInput Driver\n\tABI class: X.Org XInput driver, version 24.4\n(II) Using input driver 'libinput' for 'Power Button'\n(II) systemd-logind: got fd for /dev/input/event2 13:66 fd 27 paused 0\n(**) Power Button: always reports core events\n(**) Option \"Device\" \"/dev/input/event2\"\n(II) event2  - Power Button: is tagged by udev as: Keyboard\n(II) event2  - Power Button: device is a keyboard\n(II) event2  - Power Button: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2\"\n(II) XINPUT: Adding extended input device \"Power Button\" (type: KEYBOARD, id 6)\n(II) event2  - Power Button: is tagged by udev as: Keyboard\n(II) event2  - Power Button: device is a keyboard\n(II) config/udev: Adding input device Video Bus (/dev/input/event3)\n(**) Video Bus: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'Video Bus'\n(II) systemd-logind: got fd for /dev/input/event3 13:67 fd 30 paused 0\n(**) Video Bus: always reports core events\n(**) Option \"Device\" \"/dev/input/event3\"\n(II) event3  - Video Bus: is tagged by udev as: Keyboard\n(II) event3  - Video Bus: device is a keyboard\n(II) event3  - Video Bus: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d/LNXVIDEO:01/input/input3/event3\"\n(II) XINPUT: Adding extended input device \"Video Bus\" (type: KEYBOARD, id 7)\n(II) event3  - Video Bus: is tagged by udev as: Keyboard\n(II) event3  - Video Bus: device is a keyboard\n(II) config/udev: Adding input device Power Button (/dev/input/event0)\n(**) Power Button: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'Power Button'\n(II) systemd-logind: got fd for /dev/input/event0 13:64 fd 31 paused 0\n(**) Power Button: always reports core events\n(**) Option \"Device\" \"/dev/input/event0\"\n(II) event0  - Power Button: is tagged by udev as: Keyboard\n(II) event0  - Power Button: device is a keyboard\n(II) event0  - Power Button: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0\"\n(II) XINPUT: Adding extended input device \"Power Button\" (type: KEYBOARD, id 8)\n(II) event0  - Power Button: is tagged by udev as: Keyboard\n(II) event0  - Power Button: device is a keyboard\n(II) config/udev: Adding input device Lid Switch (/dev/input/event1)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event10)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=7 (/dev/input/event11)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=8 (/dev/input/event12)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=9 (/dev/input/event13)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device Valve Software Steam Controller (/dev/input/event5)\n(**) Valve Software Steam Controller: Applying InputClass \"libinput pointer catchall\"\n(**) Valve Software Steam Controller: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Valve Software Steam Controller'\n(II) systemd-logind: got fd for /dev/input/event5 13:69 fd 32 paused 0\n(**) Valve Software Steam Controller: always reports core events\n(**) Option \"Device\" \"/dev/input/event5\"\n(II) event5  - Valve Software Steam Controller: is tagged by udev as: Mouse\n(II) event5  - Valve Software Steam Controller: device is a pointer\n(II) event5  - Valve Software Steam Controller: device removed\n(**) Option \"AccelSpeed\" \"0\"\n(**) Option \"AccelProfile\" \"flat\"\n(II) libinput: Valve Software Steam Controller: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Valve Software Steam Controller: Step value 0 was provided, libinput Fallback acceleration function is used.\n(II) libinput: Valve Software Steam Controller: Step value 0 was provided, libinput Fallback acceleration function is used.\n(**) Option \"config_info\" \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.0/0003:28DE:1205.0001/input/input16/event5\"\n(II) XINPUT: Adding extended input device \"Valve Software Steam Controller\" (type: MOUSE, id 9)\n(**) Option \"AccelerationScheme\" \"none\"\n(**) Valve Software Steam Controller: (accel) selected scheme none/0\n(**) Valve Software Steam Controller: (accel) acceleration factor: 2.000\n(**) Valve Software Steam Controller: (accel) acceleration threshold: 4\n(II) event5  - Valve Software Steam Controller: is tagged by udev as: Mouse\n(II) event5  - Valve Software Steam Controller: device is a pointer\n(II) config/udev: Adding input device Valve Software Steam Controller (/dev/input/mouse0)\n(**) Valve Software Steam Controller: Applying InputClass \"Pointer\"\n(II) Using input driver 'libinput' for 'Valve Software Steam Controller'\n(**) Valve Software Steam Controller: always reports core events\n(**) Option \"Device\" \"/dev/input/mouse0\"\n(II) mouse0  - not using input device '/dev/input/mouse0'.\n(EE) libinput: Valve Software Steam Controller: Failed to create a device for /dev/input/mouse0\n(EE) PreInit returned 2 for \"Valve Software Steam Controller\"\n(II) UnloadModule: \"libinput\"\n(II) config/udev: Adding input device Valve Software Steam Controller (/dev/input/event4)\n(**) Valve Software Steam Controller: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'Valve Software Steam Controller'\n(II) systemd-logind: got fd for /dev/input/event4 13:68 fd 33 paused 0\n(**) Valve Software Steam Controller: always reports core events\n(**) Option \"Device\" \"/dev/input/event4\"\n(II) event4  - Valve Software Steam Controller: is tagged by udev as: Keyboard\n(II) event4  - Valve Software Steam Controller: device is a keyboard\n(II) event4  - Valve Software Steam Controller: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.1/0003:28DE:1205.0002/input/input15/event4\"\n(II) XINPUT: Adding extended input device \"Valve Software Steam Controller\" (type: KEYBOARD, id 10)\n(II) event4  - Valve Software Steam Controller: is tagged by udev as: Keyboard\n(II) event4  - Valve Software Steam Controller: device is a keyboard\n(II) config/udev: Adding input device Steam Deck (/dev/input/event8)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device Steam Deck (/dev/input/js0)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device Steam Deck Motion Sensors (/dev/input/event9)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device Steam Deck Motion Sensors (/dev/input/js1)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) config/udev: Adding input device sof-nau8821-max Headset Jack (/dev/input/event16)\n(**) sof-nau8821-max Headset Jack: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'sof-nau8821-max Headset Jack'\n(II) systemd-logind: got fd for /dev/input/event16 13:80 fd 34 paused 0\n(**) sof-nau8821-max Headset Jack: always reports core events\n(**) Option \"Device\" \"/dev/input/event16\"\n(II) event16 - sof-nau8821-max Headset Jack: is tagged by udev as: Keyboard Switch\n(II) event16 - sof-nau8821-max Headset Jack: device is a keyboard\n(II) event16 - sof-nau8821-max Headset Jack: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.5/nau8821-max/sound/card1/input22/event16\"\n(II) XINPUT: Adding extended input device \"sof-nau8821-max Headset Jack\" (type: KEYBOARD, id 11)\n(II) event16 - sof-nau8821-max Headset Jack: is tagged by udev as: Keyboard Switch\n(II) event16 - sof-nau8821-max Headset Jack: device is a keyboard\n(II) config/udev: Adding input device FTS3528:00 2808:1015 (/dev/input/event14)\n(**) FTS3528:00 2808:1015: Applying InputClass \"libinput touchscreen catchall\"\n(**) FTS3528:00 2808:1015: Applying InputClass \"calibration\"\n(II) Using input driver 'libinput' for 'FTS3528:00 2808:1015'\n(II) systemd-logind: got fd for /dev/input/event14 13:78 fd 35 paused 0\n(**) FTS3528:00 2808:1015: always reports core events\n(**) Option \"Device\" \"/dev/input/event14\"\n(II) event14 - FTS3528:00 2808:1015: is tagged by udev as: Touchscreen\n(II) event14 - FTS3528:00 2808:1015: device is a touch device\n(II) event14 - FTS3528:00 2808:1015: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/platform/AMDI0010:01/i2c-1/i2c-FTS3528:00/0018:2808:1015.0004/input/input19/event14\"\n(II) XINPUT: Adding extended input device \"FTS3528:00 2808:1015\" (type: TOUCHSCREEN, id 12)\n(**) Option \"AccelerationScheme\" \"none\"\n(**) FTS3528:00 2808:1015: (accel) selected scheme none/0\n(**) FTS3528:00 2808:1015: (accel) acceleration factor: 2.000\n(**) FTS3528:00 2808:1015: (accel) acceleration threshold: 4\n(**) Option \"TransformationMatrix\" \"0  1  0 -1  0   1 0  0   1\"\n(II) event14 - FTS3528:00 2808:1015: is tagged by udev as: Touchscreen\n(II) event14 - FTS3528:00 2808:1015: device is a touch device\n(II) config/udev: Adding input device FTS3528:00 2808:1015 (/dev/input/mouse1)\n(**) FTS3528:00 2808:1015: Applying InputClass \"calibration\"\n(II) Using input driver 'libinput' for 'FTS3528:00 2808:1015'\n(**) FTS3528:00 2808:1015: always reports core events\n(**) Option \"Device\" \"/dev/input/mouse1\"\n(EE) xf86OpenSerial: Cannot open device /dev/input/mouse1\n\tPermission denied.\n(II) mouse1: opening input device '/dev/input/mouse1' failed (Permission denied).\n(II) mouse1  - failed to create input device '/dev/input/mouse1'.\n(EE) libinput: FTS3528:00 2808:1015: Failed to create a device for /dev/input/mouse1\n(EE) PreInit returned 2 for \"FTS3528:00 2808:1015\"\n(II) UnloadModule: \"libinput\"\n(II) config/udev: Adding input device FTS3528:00 2808:1015 UNKNOWN (/dev/input/event15)\n(**) FTS3528:00 2808:1015 UNKNOWN: Applying InputClass \"libinput tablet catchall\"\n(**) FTS3528:00 2808:1015 UNKNOWN: Applying InputClass \"calibration\"\n(II) Using input driver 'libinput' for 'FTS3528:00 2808:1015 UNKNOWN'\n(II) systemd-logind: got fd for /dev/input/event15 13:79 fd 36 paused 0\n(**) FTS3528:00 2808:1015 UNKNOWN: always reports core events\n(**) Option \"Device\" \"/dev/input/event15\"\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: is tagged by udev as: Tablet\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device \"FTS3528:00 2808:1015 UNKNOWN\" (2808:1015) is not known to libwacom\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device is a tablet\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/platform/AMDI0010:01/i2c-1/i2c-FTS3528:00/0018:2808:1015.0004/input/input21/event15\"\n(II) XINPUT: Adding extended input device \"FTS3528:00 2808:1015 UNKNOWN\" (type: TABLET, id 13)\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: is tagged by udev as: Tablet\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device \"FTS3528:00 2808:1015 UNKNOWN\" (2808:1015) is not known to libwacom\n(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device is a tablet\n(II) config/udev: Adding input device FTS3528:00 2808:1015 UNKNOWN (/dev/input/mouse2)\n(**) FTS3528:00 2808:1015 UNKNOWN: Applying InputClass \"calibration\"\n(II) Using input driver 'libinput' for 'FTS3528:00 2808:1015 UNKNOWN'\n(**) FTS3528:00 2808:1015 UNKNOWN: always reports core events\n(**) Option \"Device\" \"/dev/input/mouse2\"\n(EE) xf86OpenSerial: Cannot open device /dev/input/mouse2\n\tPermission denied.\n(II) mouse2: opening input device '/dev/input/mouse2' failed (Permission denied).\n(II) mouse2  - failed to create input device '/dev/input/mouse2'.\n(EE) libinput: FTS3528:00 2808:1015 UNKNOWN: Failed to create a device for /dev/input/mouse2\n(EE) PreInit returned 2 for \"FTS3528:00 2808:1015 UNKNOWN\"\n(II) UnloadModule: \"libinput\"\n(II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event7)\n(**) AT Translated Set 2 keyboard: Applying InputClass \"libinput keyboard catchall\"\n(II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'\n(II) systemd-logind: got fd for /dev/input/event7 13:71 fd 38 paused 0\n(**) AT Translated Set 2 keyboard: always reports core events\n(**) Option \"Device\" \"/dev/input/event7\"\n(II) event7  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard\n(II) event7  - AT Translated Set 2 keyboard: device is a keyboard\n(II) event7  - AT Translated Set 2 keyboard: device removed\n(**) Option \"config_info\" \"udev:/sys/devices/platform/i8042/serio0/input/input6/event7\"\n(II) XINPUT: Adding extended input device \"AT Translated Set 2 keyboard\" (type: KEYBOARD, id 14)\n(II) event7  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard\n(II) event7  - AT Translated Set 2 keyboard: device is a keyboard\n(II) config/udev: Adding input device PC Speaker (/dev/input/event6)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using EDID range info for horizontal sync\n(II) AMDGPU(0): Using EDID range info for vertical refresh\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n(EE) AMDGPU(0): drmmode_do_crtc_dpms cannot get last vblank counter\n(II) AMDGPU(0): Allocate new frame buffer 1280x800\n(II) AMDGPU(0):  => pitch 5120 bytes\n"
Mar 16 17:38:48 akideck systemd[1202]: Reload requested from client PID 11835 ('startplasma-x11')...
Mar 16 17:38:48 akideck systemd[1202]: Reloading...
Mar 16 17:38:49 akideck wireplumber[1450]: spa.alsa: Failed to enable UCM device Speaker
Mar 16 17:38:49 akideck systemd[1202]: Reloading finished in 391 ms.
Mar 16 17:38:49 akideck systemd[1202]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/deck/.cache/drkonqi/sentry-envelopes/*).
Mar 16 17:38:49 akideck systemd[1202]: Reached target Session services which should run early before the graphical session is brought up.
Mar 16 17:38:49 akideck systemd[1202]: Starting KDE Config Module Initialization...
Mar 16 17:38:49 akideck systemd[1202]: Starting KDE Global Shortcuts Server...
Mar 16 17:38:49 akideck systemd[1202]: Starting Baloo File Indexer Daemon...
Mar 16 17:38:49 akideck systemd[1202]: Starting Portal service...
Mar 16 17:38:49 akideck systemd[1202]: Started Baloo File Indexer Daemon.
Mar 16 17:38:49 akideck systemd[1202]: Starting flatpak document portal service...
Mar 16 17:38:49 akideck systemd[1202]: Starting sandboxed app permission store...
Mar 16 17:38:49 akideck systemd[1202]: Started sandboxed app permission store.
Mar 16 17:38:49 akideck systemd[1202]: Started flatpak document portal service.
Mar 16 17:38:49 akideck xdg-desktop-por[11919]: Choosing gtk.portal for org.freedesktop.impl.portal.Lockdown as a last-resort fallback
Mar 16 17:38:49 akideck xdg-desktop-por[11919]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file
Mar 16 17:38:49 akideck kcminit_startup[11916]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
Mar 16 17:38:49 akideck systemd[1202]: Starting Portal service (GTK/GNOME implementation)...
Mar 16 17:38:49 akideck kcminit_startup[11916]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_style.so"
Mar 16 17:38:49 akideck kcminit_startup[11916]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_mouse.so"
Mar 16 17:38:49 akideck systemd[1202]: Started KDE Config Module Initialization.
Mar 16 17:38:49 akideck systemd[1202]: Starting KDE Session Management Server...
Mar 16 17:38:49 akideck systemd[1202]: Started Unlock kwallet from pam credentials.
Mar 16 17:38:49 akideck systemd[1202]: Starting KDE Daemon 6...
Mar 16 17:38:49 akideck systemd[1202]: Starting KDE Window Manager...
Mar 16 17:38:49 akideck systemd[1202]: Started KDE Global Shortcuts Server.
Mar 16 17:38:49 akideck systemd[1202]: Starting Accessibility services bus...
Mar 16 17:38:49 akideck systemd[1202]: Started Accessibility services bus.
Mar 16 17:38:49 akideck dbus-broker-launch[11982]: Ready
Mar 16 17:38:49 akideck systemd[1202]: Created slice Slice /app/dbus-:1.158-org.a11y.atspi.Registry.
Mar 16 17:38:49 akideck systemd[1202]: Started dbus-:1.158-org.a11y.atspi.Registry@0.service.
Mar 16 17:38:49 akideck systemd[1202]: Started Portal service (GTK/GNOME implementation).
Mar 16 17:38:49 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 16 17:38:49 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 16 17:38:49 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 16 17:38:49 akideck at-spi2-registryd[11987]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Mar 16 17:38:49 akideck systemd[1202]: Started KDE Daemon 6.
Mar 16 17:38:49 akideck systemd[1202]: Starting KDE Configuration Module Initialization (Phase 1)...
Mar 16 17:38:49 akideck systemd[1202]: Started KDE Session Management Server.
Mar 16 17:38:49 akideck systemd[1202]: Starting KDE Plasma Workspace...
Mar 16 17:38:49 akideck kded6[11959]: org.kde.colorcorrectlocationupdater: Geolocator stopped
Mar 16 17:38:49 akideck kcminit_startup[11916]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so"
Mar 16 17:38:49 akideck kcminit_startup[11916]: Initializing  "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_touchpad.so"
Mar 16 17:38:49 akideck kcminit_startup[11916]: kcm_touchpad: Using X11 backend
Mar 16 17:38:49 akideck systemd[1202]: Finished KDE Configuration Module Initialization (Phase 1).
Mar 16 17:38:49 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n"
Mar 16 17:38:49 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 16 17:38:49 akideck kded6[11959]: QDBusObjectPath: invalid path "/modules/plasma-session-shortcuts"
Mar 16 17:38:49 akideck kded6[11959]: kf.dbusaddons: The kded module name "plasma-session-shortcuts" is invalid!
Mar 16 17:38:49 akideck systemd[1202]: Started KDE Window Manager.
Mar 16 17:38:49 akideck kded6[11959]: org.kde.kameleon: found no RGB LED devices
Mar 16 17:38:49 akideck kded6[11959]: kcm_touchpad: Using X11 backend
Mar 16 17:38:50 akideck NetworkManager[1062]: <info>  [1742171930.0248] agent-manager: agent[a0f5976f3c5a0888,:1.235/org.kde.plasma.networkmanagement/1000]: agent registered
Mar 16 17:38:50 akideck systemd[1202]: Starting KActivityManager Activity manager Service...
Mar 16 17:38:50 akideck kded6[11959]: org.kde.libkbolt: Failed to connect to Bolt manager DBus interface:
Mar 16 17:38:50 akideck kded6[11959]: org.kde.bolt.kded: Couldn't connect to Bolt DBus daemon
Mar 16 17:38:50 akideck systemd[1202]: Started KDE Plasma Workspace.
Mar 16 17:38:50 akideck systemd[1202]: Reached target KDE Plasma Workspace Core.
Mar 16 17:38:50 akideck systemd[1202]: Started Consume pending crashes using DrKonqi.
Mar 16 17:38:50 akideck systemd[1202]: Started Proxies GTK DBus menus to a Plasma readable format.
Mar 16 17:38:50 akideck systemd[1202]: Started KAccess.
Mar 16 17:38:50 akideck systemd[1202]: Starting KDE PolicyKit Authentication Agent...
Mar 16 17:38:50 akideck systemd[1202]: Starting Powerdevil...
Mar 16 17:38:50 akideck kded6[11959]: org.kde.plasma.printmanager.kded: unable to register service to dbus
Mar 16 17:38:50 akideck systemd[1202]: Starting Xdg Desktop Portal For KDE...
Mar 16 17:38:50 akideck systemd[1202]: Started Handle legacy xembed system tray icons.
Mar 16 17:38:50 akideck kconf_update[12097]: kf.config.kconf_update: /usr/share/kconf_update/ark.upd defined Version=5 but Version=6 was expected
Mar 16 17:38:50 akideck kconf_update[12097]: kf.config.kconf_update: /usr/share/kconf_update/dolphin_detailsmodesettings.upd defined Version=5 but Version=6 was expected
Mar 16 17:38:50 akideck kconf_update[12097]: kf.config.kconf_update: /usr/share/kconf_update/dolphin_directorysizemode.upd defined Version=5 but Version=6 was expected
Mar 16 17:38:50 akideck kconf_update[12097]: kf.config.kconf_update: /usr/share/kconf_update/konsole.upd defined Version=5 but Version=6 was expected
Mar 16 17:38:50 akideck kconf_update[12097]: kf.config.kconf_update: /usr/share/kconf_update/okular.upd defined Version=5 but Version=6 was expected
Mar 16 17:38:50 akideck kaccess[12093]: Xlib XKB extension major= 1  minor= 0
Mar 16 17:38:50 akideck kded6[11959]: kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.DBus.Error.NameHasNoOwner" 
                                       "Could not activate remote peer 'org.freedesktop.ModemManager1': activation request failed: unknown unit"
Mar 16 17:38:50 akideck systemd[1202]: Started KActivityManager Activity manager Service.
Mar 16 17:38:50 akideck kded6[12156]: xsettingsd: Loaded 14 settings from /home/deck/.config/xsettingsd/xsettingsd.conf
Mar 16 17:38:50 akideck kded6[12156]: xsettingsd: Created window 0x2a00001 on screen 0 with timestamp 5335786
Mar 16 17:38:50 akideck kded6[12156]: xsettingsd: Selection _XSETTINGS_S0 is owned by 0x0
Mar 16 17:38:50 akideck kded6[12156]: xsettingsd: Took ownership of selection _XSETTINGS_S0
Mar 16 17:38:50 akideck systemd[1202]: Starting KScreen...
Mar 16 17:38:50 akideck systemd[1]: Started dbus-:1.3-org.kde.kded.smart@1.service.
Mar 16 17:38:50 akideck systemd[1202]: Started KDE PolicyKit Authentication Agent.
Mar 16 17:38:50 akideck polkit-kde-authentication-agent-1[12094]: New PolkitAgentListener  0x5596037fec70
Mar 16 17:38:50 akideck polkit-kde-authentication-agent-1[12094]: Adding new listener  PolkitQt1::Agent::Listener(0x5596037fe610) for  0x5596037fec70
Mar 16 17:38:50 akideck polkit-kde-authentication-agent-1[12094]: Listener online
Mar 16 17:38:50 akideck kded6[11959]: kf.bluezqt: PendingCall Error: "The name is not activatable"
Mar 16 17:38:50 akideck kded6[11959]: Known activities: QList("834bdd14-909a-4669-80bd-94f937ee4a8e")
Mar 16 17:38:50 akideck kded6[11959]: Known activities: QList("834bdd14-909a-4669-80bd-94f937ee4a8e")
Mar 16 17:38:50 akideck systemd[1202]: Started KScreen.
Mar 16 17:38:50 akideck polkit-kde-authentication-agent-1[12094]: Authentication agent result: true
Mar 16 17:38:50 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n"
Mar 16 17:38:50 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr: Connected output 82 to CRTC 78
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper: Detected XRandR 1.6
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper: Event Base:  89
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper: Event Error:  147
Mar 16 17:38:50 akideck kaccess[12093]: X server XKB extension major= 1  minor= 0
Mar 16 17:38:50 akideck systemd[1202]: Started Xdg Desktop Portal For KDE.
Mar 16 17:38:50 akideck kded6[11959]: kscreen.kded: PowerDevil SuspendSession action not available!
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr: XRandR::setConfig
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr: Requested screen size is QSize(1280, 800)
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr: Needed CRTCs:  1
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr: Actions to perform:
                                                                  Priorities: true
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr:         Output 82 
                                                                          Old: "0" 
                                                                          New: "1"
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr:         Change Screen Size: false
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr:         Disable outputs: false
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr:         Change outputs: false
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr:         Enable outputs: false
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr: RRSetOutputPrimary 
                                                                  New priority: 1
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr: RRSetOutputPrimary 
                                                                  New priority: 0
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xrandr: XRandR::setConfig done!
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper: RRNotify_OutputProperty (ignored)
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper:         Timestamp:  5335913
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper:         Output:  82
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper:         Property:  "_KDE_SCREEN_INDEX"
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper:         State (newValue, Deleted):  0
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper: RRNotify_OutputProperty (ignored)
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper:         Timestamp:  5335913
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper:         Output:  82
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper:         Property:  "_KDE_SCREEN_INDEX"
Mar 16 17:38:50 akideck kscreen_backend_launcher[12159]: kscreen.xcb.helper:         State (newValue, Deleted):  0
Mar 16 17:38:50 akideck org_kde_powerdevil[12095]: Failed to create wl_display (No such file or directory)
Mar 16 17:38:50 akideck org_kde_powerdevil[12095]: Initializing libddcutil.  ddcutil version: 2.1.4, shared library: /usr/lib/libddcutil.so.5.1.2
Mar 16 17:38:50 akideck org_kde_powerdevil[12095]: Options passed from client:
Mar 16 17:38:50 akideck org_kde_powerdevil[12095]: Applying combined options:
Mar 16 17:38:50 akideck systemd[1202]: Started Portal service.
Mar 16 17:38:50 akideck plasmashell[12021]: kf.plasma.quick: Applet preload policy set to 1
Mar 16 17:38:50 akideck plasmashell[12021]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:178:25: QML FolderViewDropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth":
                                            file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:201:9
Mar 16 17:38:50 akideck plasmashell[12021]: Toolbox not loading, toolbox package is either invalid or disabled.
Mar 16 17:38:50 akideck org_kde_powerdevil[12095]: Library initialization complete.
Mar 16 17:38:50 akideck org_kde_powerdevil[12095]: Watch thread started
Mar 16 17:38:50 akideck systemd[1]: Started dbus-:1.3-org.kde.powerdevil.discretegpuhelper@1.service.
Mar 16 17:38:50 akideck systemd[1]: Started dbus-:1.3-org.kde.powerdevil.chargethresholdhelper@1.service.
Mar 16 17:38:50 akideck systemd[1]: Started dbus-:1.3-org.kde.powerdevil.backlighthelper@1.service.
Mar 16 17:38:50 akideck plasmashell[12021]: org.kde.plasma.kicker: Entry is not valid "org.kde.kontact.desktop" 0x564b37d523a0
Mar 16 17:38:50 akideck plasmashell[12021]: org.kde.plasma.kicker: Entry is not valid "ktp-contactlist.desktop" 0x564b37d523a0
Mar 16 17:38:50 akideck plasmashell[12021]: org.kde.plasma.kicker: Entry is not valid "org.kde.kontact.desktop" 0x564b37d523a0
Mar 16 17:38:50 akideck plasmashell[12021]: org.kde.plasma.kicker: Entry is not valid "ktp-contactlist.desktop" 0x564b37d523a0
Mar 16 17:38:51 akideck org_kde_powerdevil[12095]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds are not supported by the kernel for this hardware"
Mar 16 17:38:51 akideck plasmashell[12021]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:50:9: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
Mar 16 17:38:51 akideck plasmashell[12021]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:50:9: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
Mar 16 17:38:51 akideck systemd[1202]: Started Powerdevil.
Mar 16 17:38:51 akideck systemd[1202]: Reached target KDE Plasma Workspace.
Mar 16 17:38:51 akideck systemd[1202]: Reached target Current graphical user session.
Mar 16 17:38:51 akideck systemd[1202]: Reached target plasma-workspace-x11.target.
Mar 16 17:38:51 akideck systemd[1202]: Starting AT-SPI D-Bus Bus...
Mar 16 17:38:51 akideck systemd[1202]: Starting Default Brightness...
Mar 16 17:38:51 akideck systemd[1202]: Starting Firewall Applet...
Mar 16 17:38:51 akideck systemd[1202]: Starting IBus...
Mar 16 17:38:51 akideck org_kde_powerdevil[12095]: org.kde.powerdevil: Handle button events action could not check for screen configuration
Mar 16 17:38:51 akideck org_kde_powerdevil[12095]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds are not supported by the kernel for this hardware"
Mar 16 17:38:51 akideck systemd[1202]: Starting Discover...
Mar 16 17:38:51 akideck systemd[1202]: Starting KDE Connect...
Mar 16 17:38:51 akideck systemd[1202]: Starting Plasma Session Restore...
Mar 16 17:38:51 akideck systemd[1202]: Starting Setup KWallet...
Mar 16 17:38:51 akideck systemd[1202]: Starting Steam...
Mar 16 17:38:51 akideck systemd[1202]: Starting KSplash "ready" Stage...
Mar 16 17:38:51 akideck systemd[1202]: Starting KDE Session Restoration...
Mar 16 17:38:51 akideck systemd[1202]: Started KDE Connect.
Mar 16 17:38:51 akideck systemd[1202]: Started Firewall Applet.
Mar 16 17:38:51 akideck systemd[1202]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'.
Mar 16 17:38:51 akideck systemd[1202]: Condition check resulted in AT-SPI D-Bus Bus being skipped.
Mar 16 17:38:51 akideck systemd[1202]: Started Default Brightness.
Mar 16 17:38:51 akideck kwin_x11[11960]: kf.config.core: "\"fsrestore1\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 16 17:38:51 akideck kwin_x11[11960]: kf.config.core: "\"fsrestore2\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 16 17:38:51 akideck kwin_x11[11960]: kf.config.core: "\"fsrestore3\" - conversion of \"0,0,0,0\" to QRect failed"
Mar 16 17:38:51 akideck systemd[1202]: Finished KSplash "ready" Stage.
Mar 16 17:38:51 akideck systemd[1202]: Started Discover.
Mar 16 17:38:51 akideck systemd[1202]: Started IBus.
Mar 16 17:38:51 akideck systemd[1202]: Started Setup KWallet.
Mar 16 17:38:51 akideck systemd[1202]: Started Steam.
Mar 16 17:38:51 akideck systemd[1202]: Started Plasma Session Restore.
Mar 16 17:38:51 akideck systemd[1202]: Finished KDE Session Restoration.
Mar 16 17:38:51 akideck firewall-applet[12323]: Traceback (most recent call last):
Mar 16 17:38:51 akideck firewall-applet[12323]:   File "/usr/bin/firewall-applet", line 11, in <module>
Mar 16 17:38:51 akideck firewall-applet[12323]:     from PyQt6 import QtGui, QtCore, QtWidgets
Mar 16 17:38:51 akideck firewall-applet[12323]: ModuleNotFoundError: No module named 'PyQt6'
Mar 16 17:38:51 akideck firewall-applet[12323]: During handling of the above exception, another exception occurred:
Mar 16 17:38:51 akideck firewall-applet[12323]: Traceback (most recent call last):
Mar 16 17:38:51 akideck firewall-applet[12323]:   File "/usr/bin/firewall-applet", line 15, in <module>
Mar 16 17:38:51 akideck firewall-applet[12323]:     from PyQt5 import QtGui, QtCore, QtWidgets
Mar 16 17:38:51 akideck firewall-applet[12323]: ModuleNotFoundError: No module named 'PyQt5'
Mar 16 17:38:51 akideck systemd[1202]: Reached target Startup of XDG autostart applications.
Mar 16 17:38:51 akideck systemd[1202]: Started /usr/lib/DiscoverNotifier.
Mar 16 17:38:51 akideck systemd[1202]: Started Konsole - Terminal.
Mar 16 17:38:51 akideck systemd[1202]: app-firewall\x2dapplet@autostart.service: Main process exited, code=exited, status=1/FAILURE
Mar 16 17:38:51 akideck systemd[1202]: app-firewall\x2dapplet@autostart.service: Failed with result 'exit-code'.
Mar 16 17:38:51 akideck steam-runtime-steam-remote[12392]: steam-runtime-steam-remote: Steam is not running: No such device or address
Mar 16 17:38:51 akideck systemd[1202]: Started dbus-:1.2-org.freedesktop.portal.IBus@3.service.
Mar 16 17:38:51 akideck systemd[1202]: Created slice Slice /app/dbus-:1.2-org.kde.kdeconnect.
Mar 16 17:38:51 akideck systemd[1202]: Started dbus-:1.2-org.kde.kdeconnect@0.service.
Mar 16 17:38:51 akideck DiscoverNotifier[12348]: couldn't load "/usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so: libpackagekitqt6.so.1: cannot open shared object file: No such file or directory"
Mar 16 17:38:51 akideck DiscoverNotifier[12363]: couldn't load "/usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so: libpackagekitqt6.so.1: cannot open shared object file: No such file or directory"
Mar 16 17:38:51 akideck plasmashell[12021]: qt.dbus.integration: Could not connect "org.cups.cupsd.Notifier" to PrinterFinishingsChanged(QString, QString, QString, uint, QString, bool) :
Mar 16 17:38:51 akideck systemd[1202]: Started app-org.kde.konsole-12367.scope.
Mar 16 17:38:52 akideck plasmashell[12021]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Mar 16 17:38:52 akideck plasmashell[12021]: error getting max keyboard brightness via dbus QDBusError("org.freedesktop.DBus.Error.UnknownObject", "No such object path '/org/kde/Solid/PowerManagement/Actions/KeyboardBrightnessControl'")
Mar 16 17:38:52 akideck steam[12352]: steam.sh[12352]: Running Steam on steamos rolling 64-bit
Mar 16 17:38:52 akideck steam[12352]: steam.sh[12352]: STEAM_RUNTIME is enabled automatically
Mar 16 17:38:52 akideck steam[12577]: setup.sh[12577]: Steam runtime environment up-to-date!
Mar 16 17:38:54 akideck steam[12613]: steam.sh[12352]: Using supervisor /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 16 17:38:54 akideck steam[12613]: steam.sh[12352]: Steam client's requirements are satisfied
Mar 16 17:38:54 akideck steam[12613]: CProcessEnvironmentManager is ready, 6 preallocated environment variables.
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Startup - updater built Mar 11 2025 20:39:15
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Startup - Steam Client launched with: '/home/deck/.local/share/Steam/ubuntu12_32/steam' '-srt-logger-opened' '-steamdeck' '-silent'
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Opted in to client beta 'steamdeck_publicbeta' via beta file
Mar 16 17:38:54 akideck steam[12613]: You are in the 'steamdeck_publicbeta' client beta.
Mar 16 17:38:54 akideck steam[12613]: 03/16 17:38:54 minidumps folder is set to /tmp/dumps
Mar 16 17:38:54 akideck steam[12613]: 03/16 17:38:54 Init: Installing breakpad exception handler for appid(steam)/version(1741737356)/tid(12648)
Mar 16 17:38:54 akideck steam[12613]: Looks like steam didn't shutdown cleanly, scheduling immediate update check
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Loading cached metrics from disk (/home/deck/.local/share/Steam/package/steam_client_metrics.bin)
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Using the following download hosts for Public, Realm steamglobal
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] 1. https://client-update.fastly.steamstatic.com, /, Realm 'steamglobal', weight was 900, source = 'update_hosts_cached.vdf'
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] 2. https://client-update.akamai.steamstatic.com, /, Realm 'steamglobal', weight was 100, source = 'update_hosts_cached.vdf'
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] 3. https://client-update.steamstatic.com, /, Realm 'steamglobal', weight was 1, source = 'baked in'
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Checking for update on startup
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Checking for available updates...
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Manifest download: send request
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Manifest download: waiting for download to finish
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Manifest download: finished
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Download skipped: /steam_client_steamdeck_publicbeta_ubuntu12 version 1741737356, installed version 1741737356, existing pending version 0
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Nothing to do
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Verifying installation...
Mar 16 17:38:54 akideck steam[12613]: [2025-03-16 17:38:54] Verifying all executable checksums
Mar 16 17:38:55 akideck steam[12613]: [2025-03-16 17:38:55] Verification complete
Mar 16 17:38:55 akideck steam[12613]: UpdateUI: skip show logo
Mar 16 17:38:56 akideck steam[12613]: Steam logging initialized: directory: /home/deck/.local/share/Steam/logs
Mar 16 17:38:56 akideck steam[12613]: XRRGetOutputInfo Workaround: initialized with override: 0 real: 0xf7629370
Mar 16 17:38:56 akideck steam[12613]: XRRGetCrtcInfo Workaround: initialized with override: 0 real: 0xf7627cc0
Mar 16 17:38:56 akideck steam[12613]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/entry:70: error: unexpected identifier 'direction', expected character '}'
Mar 16 17:38:56 akideck steam[12613]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/styles:36: error: invalid string constant "combobox_entry", expected valid string constant
Mar 16 17:38:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n"
Mar 16 17:38:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 16 17:38:56 akideck steam[12613]: 03/16 17:38:56 minidumps folder is set to /tmp/dumps
Mar 16 17:38:56 akideck steam[12613]: 03/16 17:38:56 Init: Installing breakpad exception handler for appid(steamsysinfo)/version(1741737356)/tid(12676)
Mar 16 17:38:56 akideck steam[12613]: Running query: 1 - GpuTopology
Mar 16 17:38:56 akideck steam[12613]: Response: gpu_topology {
Mar 16 17:38:56 akideck steam[12613]:   gpus {
Mar 16 17:38:56 akideck steam[12613]:     id: 1
Mar 16 17:38:56 akideck steam[12613]:     name: "AMD Custom GPU 0932 (RADV VANGOGH)"
Mar 16 17:38:56 akideck steam[12613]:     vram_size_bytes: 6397714432
Mar 16 17:38:56 akideck steam[12613]:     driver_id: k_EGpuDriverId_MesaRadv
Mar 16 17:38:56 akideck steam[12613]:     driver_version_major: 24
Mar 16 17:38:56 akideck steam[12613]:     driver_version_minor: 2
Mar 16 17:38:56 akideck steam[12613]:     driver_version_patch: 99
Mar 16 17:38:56 akideck steam[12613]:   }
Mar 16 17:38:56 akideck steam[12613]:   default_gpu_id: 1
Mar 16 17:38:56 akideck steam[12613]: }
Mar 16 17:38:56 akideck steam[12613]: Exit code: 0
Mar 16 17:38:56 akideck steam[12613]: Saving response to: /tmp/steamDJkmOn - 58 bytes
Mar 16 17:38:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n"
Mar 16 17:38:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 16 17:38:56 akideck steamwebhelper[12699]: steamwebhelper.sh[12690]: Using supervisor /home/deck/.steam/root/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 16 17:38:56 akideck steamwebhelper[12699]: steamwebhelper.sh[12690]: Starting steamwebhelper under bootstrap sniper steam runtime via /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper.sh
Mar 16 17:38:56 akideck steamwebhelper[12699]: steamwebhelper.sh[12690]: CEF sandbox already disabled
Mar 16 17:38:56 akideck steamwebhelper[12699]: steamwebhelper.sh[12690]: Starting steamwebhelper with Sniper steam runtime at /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper/_v2-entry-point
Mar 16 17:38:57 akideck systemd[1]: efi.automount: Got automount request for /efi, triggered by 871 (systemd-logind)
Mar 16 17:38:57 akideck systemd[1]: Mounting /efi...
Mar 16 17:38:57 akideck rtkit-daemon[1455]: Successfully made thread 12764 of process 12648 owned by '1000' high priority at nice level -10.
Mar 16 17:38:57 akideck rtkit-daemon[1455]: Supervising 1 threads of 1 processes of 1 users.
Mar 16 17:38:57 akideck rtkit-daemon[1455]: Successfully made thread 12765 of process 12648 owned by '1000' high priority at nice level -10.
Mar 16 17:38:57 akideck rtkit-daemon[1455]: Supervising 2 threads of 1 processes of 1 users.
Mar 16 17:38:57 akideck systemd[1]: Mounted /efi.
Mar 16 17:38:57 akideck pkexec[12774]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:38:57 akideck pkexec[12774]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 2]
Mar 16 17:38:57 akideck pkexec[12783]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:38:57 akideck pkexec[12783]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 4]
Mar 16 17:38:57 akideck steam[12613]: Steam Runtime Launch Service: starting steam-runtime-launcher-service
Mar 16 17:38:57 akideck steam[12613]: Steam Runtime Launch Service: steam-runtime-launcher-service is running pid 12796
Mar 16 17:38:57 akideck steam[12613]: bus_name=com.steampowered.PressureVessel.LaunchAlongsideSteam
Mar 16 17:38:58 akideck steamwebhelper[12699]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 16 17:38:58 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-120) graph xrun not-triggered (0 suppressed)
Mar 16 17:38:58 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-120) xrun state:0x7f63f452e008 pending:1/1 s:0 a:0 f:0 waiting:0 process:0 status:triggered
Mar 16 17:38:58 akideck steamwebhelper[12699]: exec ./steamwebhelper -nocrashdialog -lang=en_US -cachedir=/home/deck/.local/share/Steam/config/htmlcache -steampid=12648 -buildid=1741737356 -steamid=0 -logdir=/home/deck/.local/share/Steam/logs -uimode=7 -startcount=0 -steamdeck -steamuniverse=Public -realm=Global -clientui=/home/deck/.local/share/Steam/clientui -steampath=/home/deck/.local/share/Steam/ubuntu12_32/steam -launcher=0 -no-restart-on-ui-mode-change --valve-enable-site-isolation --enable-smooth-scrolling --no-sandbox --password-store=basic --log-file=/home/deck/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --enable-features=PlatformHEVCDecoderSupport --disable-features=SpareRendererForSitePerProcess,DcheckIsFatal,ValveFFmpegAllowLowDelayHEVC
Mar 16 17:38:59 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 16 17:38:59 akideck kernel: input: Microsoft X-Box 360 pad 0 as /devices/virtual/input/input52
Mar 16 17:38:59 akideck sddm-helper-start-x11user[11820]: "(II) config/udev: Adding input device Microsoft X-Box 360 pad 0 (/dev/input/js0)\n"
Mar 16 17:38:59 akideck sddm-helper-start-x11user[11820]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 16 17:38:59 akideck sddm-helper-start-x11user[11820]: "(II) config/udev: Adding input device Microsoft X-Box 360 pad 0 (/dev/input/event8)\n(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 16 17:39:00 akideck systemd[1]: dbus-:1.3-org.kde.kded.smart@1.service: Deactivated successfully.
Mar 16 17:39:00 akideck systemd[1]: dbus-:1.3-org.kde.powerdevil.discretegpuhelper@1.service: Deactivated successfully.
Mar 16 17:39:01 akideck systemd[1]: dbus-:1.3-org.kde.powerdevil.chargethresholdhelper@1.service: Deactivated successfully.
Mar 16 17:39:01 akideck systemd[1]: dbus-:1.3-org.kde.powerdevil.backlighthelper@1.service: Deactivated successfully.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/01%20Exposing%20Hostile.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/02%20Valve%20Alyx.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/03%20Coetaneous%20Entanglement.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/04%20Construction%20Strider.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/05%20Engage%20Quell%20Inquire.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/06%20Insubordinate%20Relocation.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/07%20City%2017%20Strider.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/08%20Thirty%20Seven%20After%20Six.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/09%20From%20Here%20to%20There%20in%20Under%20a%20Second.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/10%20Quaranta%20Giorni.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/11%20Xombies.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/12%20Only%20One.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/13%20Matter%20of%20Perspective.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/14%20Severed%20from%20the%20Vortessence.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/15%20Is%20Or%20Will%20Be.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/16%20What%20Did%20it%20Taste%20Like.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/17%20I%20Love%20This%20Gun.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/18%20Extra%20Dimensional%20Darkness.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/19%20Quantum%20Cubicles.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/20%20Infestation%20Control.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/21%20Deployed%20and%20Designated%20to%20Prosecute.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/22%20B3PbIBONACHOCTb.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/23%20Anti-Citizen.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/24%20Tri-Vector%20Pre-Reverberation.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/25%20Harsh%20Industrial%20Train%20Crash.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/26%20The%20Advisors.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/27%20Prisoner%20Pod.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/28-Charger.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/29-Scanning%20Hostile%20Biodats.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/30-Substation.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/31-Alien%20Flora.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/32-Alien%20Fauna.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/33-Requiem%20Vortessence.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/34-Lightning%20Dog.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/35-Arachnophobia.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/36-Rabid%20Lightning.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/37-Extract.%20Resonate.%20Isolate.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/38-Level-5%20Anti-Civil%20Activities.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/39-Vortessence%20Lux.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/40-Hacking.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/41-Outbreak%20is%20Uncontained.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/42-Processing%20Tripmines.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/43-Xenfestation%20Control.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/44-Sunset%20Vault.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/45-Ear%20Like%20Mozart.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/46-Jeff.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/47-Elevatormuzik.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/48-Trash%20Compactor%20Waltz.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/49-Quantum%20Antlion%20Tunnel.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/50-Cats.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/51-Beasts%20of%20Prey.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/52-Insects%20and%20Reptiles.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/53-The%20Last%20Substation.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/54-Trans%20Human%20Crossfire.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/55-Let%20Me%20Talk%20to%20Your%20Super-Advisor.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/56-Terin%20%236.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/57-Infestation%20Ambience.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/58-A%20Gentle%20Docking.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/59-Overload%20Protocol.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/60-Cauterizer.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/61-P1.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/62-Gravity%20Perforation%20Detail.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/63-Reality%20Disruption%20Pulse.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/64-Icosahedron.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/65-Supersymmetry%20Dilation.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/66-Stringularity.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/67-Ekpyrosis.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/68-Alice%20Matter.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/69-Gravity%20Grenade%20Conflict.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/70-Superimposition.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/71-Consequences.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/72-HIRE.flac
Mar 16 17:39:01 akideck steam[12613]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:39:01 akideck steam[12613]: Desktop state changed: desktop: { pos:    0,   0 size: 1280, 800 } primary: { pos:    0,   0 size: 1280, 800 }
Mar 16 17:39:01 akideck steam[12613]: Caching cursor image for , size 32x32, serial 9, cache size = 0
Mar 16 17:39:02 akideck kded6[11959]: Registering ":1.193/org/ayatana/NotificationItem/steam" to system tray
Mar 16 17:39:02 akideck plasmashell[12021]: qt.gui.imageio: libpng warning: iCCP: known incorrect sRGB profile
Mar 16 17:39:02 akideck plasmashell[12021]: kameleon supported false
Mar 16 17:39:02 akideck plasmashell[12021]: kameleon enabled true
Mar 16 17:39:05 akideck plasmashell[12021]: qt.qml.signalhandler: Property 'onPressed' of object QQuickMouseArea_QML_185(0x564b37f9bc40) is a signal handler. You should not call it directly. Make it a proper function and call that or emit the signal.
Mar 16 17:39:06 akideck NetworkManager[1062]: <error> [1742171946.7699] audit: failed to open auditd socket: Protocol not supported
Mar 16 17:39:06 akideck NetworkManager[1062]: <info>  [1742171946.7701] audit: op="statistics" interface="wlan0" ifindex=3 args="2000" pid=12021 uid=1000 result="success"
Mar 16 17:39:08 akideck plasmashell[12021]: qrc:/qt/qml/org/kde/plasma/components/ScrollView.qml:53:29: QML ScrollBar: Binding loop detected for property "visible":
                                            qrc:/qt/qml/org/kde/plasma/components/ScrollBar.qml:24:5
Mar 16 17:39:08 akideck plasmashell[12021]: qrc:/qt/qml/org/kde/plasma/components/ScrollView.qml:53:29: QML ScrollBar: Binding loop detected for property "visible":
                                            qrc:/qt/qml/org/kde/plasma/components/ScrollBar.qml:24:5
Mar 16 17:39:12 akideck systemd[1]: Starting Locale Service...
Mar 16 17:39:12 akideck systemd[1]: Started Locale Service.
Mar 16 17:39:12 akideck kded6[11959]: Registering ":1.201/StatusNotifierItem" to system tray
Mar 16 17:39:24 akideck systemd[1202]: Started Discover - Software Center.
Mar 16 17:39:25 akideck plasma-discover[13311]: libs QList("/usr/lib/qt6/plugins", "/usr/bin")
Mar 16 17:39:25 akideck plasma-discover[13311]: org.kde.plasma.libdiscover: OdrsReviewsBackend: Fetch ratings: true
Mar 16 17:39:25 akideck systemd[1]: Starting Load Kernel Module sd_mod...
Mar 16 17:39:25 akideck systemd[1]: modprobe@sd_mod.service: Deactivated successfully.
Mar 16 17:39:25 akideck systemd[1]: Finished Load Kernel Module sd_mod.
Mar 16 17:39:25 akideck systemd[1]: Starting Firmware update daemon...
Mar 16 17:39:25 akideck systemd[1202]: Started Discover - Software Center.
Mar 16 17:39:26 akideck systemd[1202]: Started Discover - Software Center.
Mar 16 17:39:26 akideck plasma-discover[13311]: libostree pull from 'flathub' for appstream2/x86_64 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 7 content: 126
                                                transfer: secs: 0 size: 9.0 MB
Mar 16 17:39:26 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/repo-G8Qjzy: Pulled appstream2/x86_64 from flathub
Mar 16 17:39:26 akideck systemd[1]: Starting flatpak system helper...
Mar 16 17:39:26 akideck systemd[1]: Started flatpak system helper.
Mar 16 17:39:26 akideck udisksd[1192]: Mounted /dev/nvme0n1p1 (system) at /esp on behalf of uid 0
Mar 16 17:39:26 akideck flatpak-system-helper[13392]: system: Pulled appstream2/x86_64 from /var/tmp/flatpak-cache-HIVE32/repo-G8Qjzy
Mar 16 17:39:26 akideck udisksd[1192]: Cleaning up mount point /esp (device 259:1 is not mounted)
Mar 16 17:39:26 akideck udisksd[1192]: Unmounted /dev/nvme0n1p1 on behalf of uid 0
Mar 16 17:39:26 akideck systemd[1]: esp.mount: Deactivated successfully.
Mar 16 17:39:26 akideck udisksd[1192]: Mounted /dev/nvme0n1p3 at /run/media/root/efi on behalf of uid 0
Mar 16 17:39:26 akideck systemd[1]: run-media-root-efi.mount: Deactivated successfully.
Mar 16 17:39:26 akideck udisksd[1192]: Cleaning up mount point /run/media/root/efi (device 259:3 is not mounted)
Mar 16 17:39:26 akideck udisksd[1192]: Unmounted /dev/nvme0n1p3 on behalf of uid 0
Mar 16 17:39:26 akideck udisksd[1192]: Mounted /dev/nvme0n1p1 (system) at /esp on behalf of uid 0
Mar 16 17:39:26 akideck udisksd[1192]: Cleaning up mount point /esp (device 259:1 is not mounted)
Mar 16 17:39:26 akideck udisksd[1192]: Unmounted /dev/nvme0n1p1 on behalf of uid 0
Mar 16 17:39:26 akideck udisksd[1192]: Mounted /dev/nvme0n1p3 at /run/media/root/efi on behalf of uid 0
Mar 16 17:39:26 akideck systemd[1202]: Started Discover - Software Center.
Mar 16 17:39:26 akideck udisksd[1192]: Cleaning up mount point /run/media/root/efi (device 259:3 is not mounted)
Mar 16 17:39:26 akideck udisksd[1192]: Unmounted /dev/nvme0n1p3 on behalf of uid 0
Mar 16 17:39:27 akideck fwupd[13341]: 00:39:27.005 FuMain               Daemon ready for requests (locale en_US.UTF-8)
Mar 16 17:39:27 akideck systemd[1]: Started Firmware update daemon.
Mar 16 17:39:27 akideck plasma-discover[13311]: org.kde.plasma.libdiscover: error loading "packagekit-backend" "Cannot load library /usr/lib/qt6/plugins/discover/packagekit-backend.so: libpackagekitqt6.so.1: cannot open shared object file: No such file or directory" QJsonObject({"IID":"org.kde.muon.AbstractResourcesBackendFactory","archlevel":1,"className":"PackageKitBackendFactory","debug":false,"version":395264})
Mar 16 17:39:27 akideck plasma-discover[13311]: qrc:/qt/qml/org/kde/discover/qml/LoadingPage.qml:3:1: QML LoadingPage: Created graphical object was not placed in the graphics scene.
Mar 16 17:39:27 akideck plasma-discover[13311]: qrc:/qt/qml/org/kde/discover/qml/UpdatesPage.qml:11:1: QML UpdatesPage: Created graphical object was not placed in the graphics scene.
Mar 16 17:39:27 akideck plasma-discover[13311]: qrc:/qt/qml/org/kde/discover/qml/UpdatesPage.qml:40:5: QML OverlaySheet: Binding loop detected for property "implicitHeight":
                                                file:///usr/lib/qt6/qml/org/kde/kirigami/templates/OverlaySheet.qml:132:5
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654585f20) fetching SearchRequest(id: 0,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654585f20) loading entries from provider KNSCore::AtticaProvider(0x7f748801ec80)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636555c8c90) fetching SearchRequest(id: 1,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636555c8c90) loading entries from provider KNSCore::AtticaProvider(0x56365467c3d0)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563653cdca50) fetching SearchRequest(id: 2,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563653cdca50) loading entries from provider KNSCore::AtticaProvider(0x5636545d1dc0)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636549cc510) fetching SearchRequest(id: 3,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636549cc510) loading entries from provider KNSCore::AtticaProvider(0x56365482ed60)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654902270) fetching SearchRequest(id: 4,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654902270) loading entries from provider KNSCore::AtticaProvider(0x563654721100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654290d30) fetching SearchRequest(id: 5,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654290d30) loading entries from provider KNSCore::AtticaProvider(0x563653cb9df0)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654642620) fetching SearchRequest(id: 6,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654642620) loading entries from provider KNSCore::AtticaProvider(0x5636555c3e50)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654694bf0) fetching SearchRequest(id: 7,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654694bf0) loading entries from provider KNSCore::AtticaProvider(0x563654705190)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x56365465dfd0) fetching SearchRequest(id: 8,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x56365465dfd0) loading entries from provider KNSCore::AtticaProvider(0x56365498fd00)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636547102e0) fetching SearchRequest(id: 9,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636547102e0) loading entries from provider KNSCore::AtticaProvider(0x56365463cd00)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636547bf190) fetching SearchRequest(id: 10,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636547bf190) loading entries from provider KNSCore::AtticaProvider(0x563654676670)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636555ae240) fetching SearchRequest(id: 11,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636555ae240) loading entries from provider KNSCore::AtticaProvider(0x563654d3a740)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654ca92d0) fetching SearchRequest(id: 12,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654ca92d0) loading entries from provider KNSCore::AtticaProvider(0x56365454e370)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654840d00) fetching SearchRequest(id: 13,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654840d00) loading entries from provider KNSCore::AtticaProvider(0x5636543d79c0)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654840df0) fetching SearchRequest(id: 14,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654840df0) loading entries from provider KNSCore::AtticaProvider(0x563654908a90)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654681f40) fetching SearchRequest(id: 15,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654681f40) loading entries from provider KNSCore::AtticaProvider(0x5636545b5c80)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636547e21b0) fetching SearchRequest(id: 16,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636547e21b0) loading entries from provider KNSCore::AtticaProvider(0x56365458bca0)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636549ea1f0) fetching SearchRequest(id: 17,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636549ea1f0) loading entries from provider KNSCore::AtticaProvider(0x5636549c3360)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654732fb0) fetching SearchRequest(id: 18,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654732fb0) loading entries from provider KNSCore::AtticaProvider(0x5636549220b0)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636549c1aa0) fetching SearchRequest(id: 19,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636549c1aa0) loading entries from provider KNSCore::AtticaProvider(0x5636545b3550)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636548c2540) fetching SearchRequest(id: 20,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636548c2540) loading entries from provider KNSCore::AtticaProvider(0x5636553cdd10)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x56365467a220) fetching SearchRequest(id: 21,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x56365467a220) loading entries from provider KNSCore::AtticaProvider(0x5636545ac670)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636545a5990) fetching SearchRequest(id: 22,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636545a5990) loading entries from provider KNSCore::AtticaProvider(0x56365477f400)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654763980) fetching SearchRequest(id: 23,searchTerm: "",categories: QList(),filter: KNSCore::Filter::Updates,page: -1,pageSize: 100)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654763980) loading entries from provider KNSCore::StaticXmlProvider(0x7f73a00217b0)
Mar 16 17:39:27 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654763980) Finishing KNSCore::StaticXmlProvider(0x7f73a00217b0) 23
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654585f20) Finishing KNSCore::AtticaProvider(0x7f748801ec80) 0
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636555c8c90) Finishing KNSCore::AtticaProvider(0x56365467c3d0) 1
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563653cdca50) Finishing KNSCore::AtticaProvider(0x5636545d1dc0) 2
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636549cc510) Finishing KNSCore::AtticaProvider(0x56365482ed60) 3
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654902270) Finishing KNSCore::AtticaProvider(0x563654721100) 4
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654290d30) Finishing KNSCore::AtticaProvider(0x563653cb9df0) 5
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654642620) Finishing KNSCore::AtticaProvider(0x5636555c3e50) 6
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654694bf0) Finishing KNSCore::AtticaProvider(0x563654705190) 7
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x56365465dfd0) Finishing KNSCore::AtticaProvider(0x56365498fd00) 8
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636547102e0) Finishing KNSCore::AtticaProvider(0x56365463cd00) 9
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636547bf190) Finishing KNSCore::AtticaProvider(0x563654676670) 10
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636555ae240) Finishing KNSCore::AtticaProvider(0x563654d3a740) 11
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654ca92d0) Finishing KNSCore::AtticaProvider(0x56365454e370) 12
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654840d00) Finishing KNSCore::AtticaProvider(0x5636543d79c0) 13
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654840df0) Finishing KNSCore::AtticaProvider(0x563654908a90) 14
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654681f40) Finishing KNSCore::AtticaProvider(0x5636545b5c80) 15
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636547e21b0) Finishing KNSCore::AtticaProvider(0x56365458bca0) 16
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636549ea1f0) Finishing KNSCore::AtticaProvider(0x5636549c3360) 17
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x563654732fb0) Finishing KNSCore::AtticaProvider(0x5636549220b0) 18
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636549c1aa0) Finishing KNSCore::AtticaProvider(0x5636545b3550) 19
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636548c2540) Finishing KNSCore::AtticaProvider(0x5636553cdd10) 20
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x56365467a220) Finishing KNSCore::AtticaProvider(0x5636545ac670) 21
Mar 16 17:39:28 akideck plasma-discover[13311]: KNSCore::ResultsStream(0x5636545a5990) Finishing KNSCore::AtticaProvider(0x56365477f400) 22
Mar 16 17:39:39 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.freedesktop.Platform.GL.default/x86_64/24.08 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 13 content: 32
                                                transfer: secs: 3 size: 62.9 MB
Mar 16 17:39:39 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.freedesktop.Platform.GL.default-0QAS32/repo-jmRiIN: Pulled runtime/org.freedesktop.Platform.GL.default/x86_64/24.08 from flathub
Mar 16 17:39:39 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform.GL.default\x2d0QAS32.mount: Deactivated successfully.
Mar 16 17:39:39 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform.GL.default\x2d0QAS32.mount: Deactivated successfully.
Mar 16 17:39:39 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.freedesktop.Platform.GL.default/x86_64/24.08 from /var/lib/flatpak/repo/tmp/flatpak-cache-PRZQ32/repo-jmRiIN
Mar 16 17:39:39 akideck flatpak-system-helper[13392]: system: Updated runtime/org.freedesktop.Platform.GL.default/x86_64/24.08 from flathub
Mar 16 17:39:41 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.freedesktop.Platform.GL.default/x86_64/24.08extra complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 10 content: 7
                                                transfer: secs: 2 size: 24.3 MB
Mar 16 17:39:41 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.freedesktop.Platform.GL.default-JQZ922/repo-x89LuU: Pulled runtime/org.freedesktop.Platform.GL.default/x86_64/24.08extra from flathub
Mar 16 17:39:41 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform.GL.default\x2dJQZ922.mount: Deactivated successfully.
Mar 16 17:39:41 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform.GL.default\x2dJQZ922.mount: Deactivated successfully.
Mar 16 17:39:42 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.freedesktop.Platform.GL.default/x86_64/24.08extra from /var/lib/flatpak/repo/tmp/flatpak-cache-T1V922/repo-x89LuU
Mar 16 17:39:43 akideck flatpak-system-helper[13392]: system: Updated runtime/org.freedesktop.Platform.GL.default/x86_64/24.08extra from flathub
Mar 16 17:39:43 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.freedesktop.Platform.Locale/x86_64/24.08 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 4 content: 0
                                                transfer: secs: 0 size: 18.4 kB
Mar 16 17:39:43 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.freedesktop.Platform.Locale-LJHE32/repo-Me1Jms: Pulled runtime/org.freedesktop.Platform.Locale/x86_64/24.08 from flathub
Mar 16 17:39:43 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform.Locale\x2dLJHE32.mount: Deactivated successfully.
Mar 16 17:39:43 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform.Locale\x2dLJHE32.mount: Deactivated successfully.
Mar 16 17:39:43 akideck systemd[1202]: Started Firefox - Web Browser.
Mar 16 17:39:43 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.freedesktop.Platform.Locale/x86_64/24.08 from /var/lib/flatpak/repo/tmp/flatpak-cache-HWPE32/repo-Me1Jms
Mar 16 17:39:43 akideck flatpak-system-helper[13392]: system: Updated runtime/org.freedesktop.Platform.Locale/x86_64/24.08 from flathub
Mar 16 17:39:44 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.freedesktop.Platform.openh264/x86_64/2.5.1 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                delta: parts: 1 loose: 3
                                                transfer: secs: 0 size: 294.1 kB
Mar 16 17:39:44 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.freedesktop.Platform.openh264-D7ZL32/repo-OB4BkC: Pulled runtime/org.freedesktop.Platform.openh264/x86_64/2.5.1 from flathub
Mar 16 17:39:44 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform.openh264\x2dD7ZL32.mount: Deactivated successfully.
Mar 16 17:39:44 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform.openh264\x2dD7ZL32.mount: Deactivated successfully.
Mar 16 17:39:44 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.freedesktop.Platform.openh264/x86_64/2.5.1 from /var/lib/flatpak/repo/tmp/flatpak-cache-XC9L32/repo-OB4BkC
Mar 16 17:39:45 akideck flatpak-system-helper[13392]: system: Installed runtime/org.freedesktop.Platform.openh264/x86_64/2.5.1 from flathub
Mar 16 17:39:45 akideck systemd[1202]: Starting flatpak session helper...
Mar 16 17:39:45 akideck systemd[1202]: Started flatpak session helper.
Mar 16 17:39:45 akideck systemd[1202]: Started app-flatpak-org.mozilla.firefox-13617.scope.
Mar 16 17:39:45 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.gnome.Platform.Locale/x86_64/46 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 2 content: 0
                                                transfer: secs: 0 size: 1.5 kB
Mar 16 17:39:45 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.gnome.Platform.Locale-CZYF32/repo-k9l4A4: Pulled runtime/org.gnome.Platform.Locale/x86_64/46 from flathub
Mar 16 17:39:45 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.gnome.Platform.Locale\x2dCZYF32.mount: Deactivated successfully.
Mar 16 17:39:45 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.gnome.Platform.Locale\x2dCZYF32.mount: Deactivated successfully.
Mar 16 17:39:45 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.gnome.Platform.Locale/x86_64/46 from /var/lib/flatpak/repo/tmp/flatpak-cache-FVVF32/repo-k9l4A4
Mar 16 17:39:45 akideck flatpak-system-helper[13392]: system: Updated runtime/org.gnome.Platform.Locale/x86_64/46 from flathub
Mar 16 17:39:45 akideck firefox-bin[13682]: Failed to load module "canberra-gtk-module"
Mar 16 17:39:45 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.gtk.Gtk3theme.Breeze/x86_64/3.22 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 9 content: 3
                                                transfer: secs: 0 size: 6.3 kB
Mar 16 17:39:45 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.gtk.Gtk3theme.Breeze-5A5822/repo-u9Ngw0: Pulled runtime/org.gtk.Gtk3theme.Breeze/x86_64/3.22 from flathub
Mar 16 17:39:45 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.gtk.Gtk3theme.Breeze\x2d5A5822.mount: Deactivated successfully.
Mar 16 17:39:45 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.gtk.Gtk3theme.Breeze\x2d5A5822.mount: Deactivated successfully.
Mar 16 17:39:45 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.gtk.Gtk3theme.Breeze/x86_64/3.22 from /var/lib/flatpak/repo/tmp/flatpak-cache-2K1822/repo-u9Ngw0
Mar 16 17:39:45 akideck flatpak-system-helper[13392]: system: Updated runtime/org.gtk.Gtk3theme.Breeze/x86_64/3.22 from flathub
Mar 16 17:39:46 akideck flatpak[13682]: ATTENTION: default value of option mesa_glthread overridden by environment.
Mar 16 17:39:50 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.freedesktop.Platform/x86_64/24.08 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 124 content: 732
                                                transfer: secs: 4 size: 64.3 MB
Mar 16 17:39:50 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.freedesktop.Platform-6Q5M32/repo-iOVAap: Pulled runtime/org.freedesktop.Platform/x86_64/24.08 from flathub
Mar 16 17:39:50 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform\x2d6Q5M32.mount: Deactivated successfully.
Mar 16 17:39:50 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.freedesktop.Platform\x2d6Q5M32.mount: Deactivated successfully.
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 5826 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5826.1739382549000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 5836 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5836.1739382549000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 5866 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5866.1739382550000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 5893 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5893.1739382550000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 5916 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5916.1739382551000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 5940 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5940.1739382552000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 5964 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5964.1739382552000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 5987 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.5987.1739382553000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6010 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6010.1739382554000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6033 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6033.1739382555000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6056 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6056.1739382556000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6079 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6079.1739382557000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6102 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6102.1739382558000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6131 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6131.1739382559000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6154 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6154.1739382560000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6177 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6177.1739382561000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6200 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6200.1739382562000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6223 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6223.1739382563000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/app/extra/share/spotify/spotify" 6246 "/var/lib/systemd/coredump/core.spotify.1000.5f333d9cd93f47d3ba59d9dc50265cf1.6246.1739382565000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/home/deck/.local/share/Steam/ubuntu12_64/steamwebhelper" 4053 "/var/lib/systemd/coredump/core.steamwebhelper.1000.5f333d9cd93f47d3ba59d9dc50265cf1.4053.1739382772000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/home/deck/.local/share/Steam/ubuntu12_64/steamwebhelper" 5579 "/var/lib/systemd/coredump/core.steamwebhelper.1000.d46abbdedd9943d18d28ccf811cfa762.5579.1740354829000000.zst"
Mar 16 17:39:50 akideck drkonqi-coredump-processor[12091]: "/home/deck/.local/share/Steam/ubuntu12_32/steam" 9082 "/var/lib/systemd/coredump/core.steam.1000.d46abbdedd9943d18d28ccf811cfa762.9082.1740767285000000.zst"
Mar 16 17:39:50 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.freedesktop.Platform/x86_64/24.08 from /var/lib/flatpak/repo/tmp/flatpak-cache-FW1M32/repo-iOVAap
Mar 16 17:39:54 akideck flatpak-system-helper[13392]: system: Updated runtime/org.freedesktop.Platform/x86_64/24.08 from flathub
Mar 16 17:39:55 akideck plasma-discover[13311]: libostree pull from 'flathub' for app/com.spotify.Client/x86_64/stable complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 17 content: 18
                                                transfer: secs: 0 size: 2.7 MB
Mar 16 17:40:01 akideck systemd[1]: systemd-localed.service: Deactivated successfully.
Mar 16 17:40:08 akideck systemd[1202]: Started Dolphin - File Manager.
Mar 16 17:40:10 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/com.spotify.Client-KP7922/repo-FmyRIN: Pulled app/com.spotify.Client/x86_64/stable from flathub
Mar 16 17:40:10 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-com.spotify.Client\x2dKP7922.mount: Deactivated successfully.
Mar 16 17:40:10 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-com.spotify.Client\x2dKP7922.mount: Deactivated successfully.
Mar 16 17:40:14 akideck flatpak-system-helper[13392]: system: Pulled app/com.spotify.Client/x86_64/stable from /var/lib/flatpak/repo/tmp/flatpak-cache-W13922/repo-FmyRIN
Mar 16 17:40:22 akideck flatpak-system-helper[13392]: system: Updated app/com.spotify.Client/x86_64/stable from flathub
Mar 16 17:40:23 akideck kded6[11959]: org.kde.colorcorrectlocationupdater: Geolocator stopped
Mar 16 17:40:31 akideck plasma-discover[13311]: libostree pull from 'flathub' for app/com.discordapp.Discord/x86_64/stable complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 19 content: 75
                                                transfer: secs: 9 size: 97.7 MB
Mar 16 17:40:31 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/com.discordapp.Discord-4QLI32/repo-1Ka18r: Pulled app/com.discordapp.Discord/x86_64/stable from flathub
Mar 16 17:40:31 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-com.discordapp.Discord\x2d4QLI32.mount: Deactivated successfully.
Mar 16 17:40:31 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-com.discordapp.Discord\x2d4QLI32.mount: Deactivated successfully.
Mar 16 17:40:32 akideck systemd[1]: esp.automount: Got automount request for /esp, triggered by 14176 (KIO::WorkerThre)
Mar 16 17:40:32 akideck systemd[1]: Mounting /esp...
Mar 16 17:40:32 akideck systemd[1]: Mounted /esp.
Mar 16 17:40:32 akideck flatpak-system-helper[13392]: system: Pulled app/com.discordapp.Discord/x86_64/stable from /var/lib/flatpak/repo/tmp/flatpak-cache-PVII32/repo-1Ka18r
Mar 16 17:40:33 akideck flatpak-system-helper[13392]: system: Updated app/com.discordapp.Discord/x86_64/stable from flathub
Mar 16 17:40:33 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.gnome.Platform/x86_64/46 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                delta: parts: 1 loose: 3
                                                transfer: secs: 0 size: 11.5 kB
Mar 16 17:40:33 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.gnome.Platform-37MF32/repo-vqSWi9: Pulled runtime/org.gnome.Platform/x86_64/46 from flathub
Mar 16 17:40:33 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.gnome.Platform\x2d37MF32.mount: Deactivated successfully.
Mar 16 17:40:33 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.gnome.Platform\x2d37MF32.mount: Deactivated successfully.
Mar 16 17:40:34 akideck kded6[11959]: org.kde.colorcorrectlocationupdater: Geolocator stopped
Mar 16 17:40:35 akideck kioworker[14187]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:40:35 akideck kioworker[14187]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:40:35 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.gnome.Platform/x86_64/46 from /var/lib/flatpak/repo/tmp/flatpak-cache-DSJF32/repo-vqSWi9
Mar 16 17:40:37 akideck flatpak-system-helper[13392]: system: Updated runtime/org.gnome.Platform/x86_64/46 from flathub
Mar 16 17:40:37 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.kde.Platform.Locale/x86_64/5.15-24.08 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 4 content: 0
                                                transfer: secs: 0 size: 18.5 kB
Mar 16 17:40:37 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.kde.Platform.Locale-9N1H32/repo-lJj1KR: Pulled runtime/org.kde.Platform.Locale/x86_64/5.15-24.08 from flathub
Mar 16 17:40:37 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.kde.Platform.Locale\x2d9N1H32.mount: Deactivated successfully.
Mar 16 17:40:37 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.kde.Platform.Locale\x2d9N1H32.mount: Deactivated successfully.
Mar 16 17:40:37 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.kde.Platform.Locale/x86_64/5.15-24.08 from /var/lib/flatpak/repo/tmp/flatpak-cache-M2XH32/repo-lJj1KR
Mar 16 17:40:37 akideck flatpak-system-helper[13392]: system: Updated runtime/org.kde.Platform.Locale/x86_64/5.15-24.08 from flathub
Mar 16 17:40:42 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.kde.Platform/x86_64/5.15-24.08 complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 67 content: 111
                                                transfer: secs: 4 size: 43.0 MB
Mar 16 17:40:42 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.kde.Platform-NOW922/repo-LtdpTE: Pulled runtime/org.kde.Platform/x86_64/5.15-24.08 from flathub
Mar 16 17:40:42 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.kde.Platform\x2dNOW922.mount: Deactivated successfully.
Mar 16 17:40:42 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.kde.Platform\x2dNOW922.mount: Deactivated successfully.
Mar 16 17:40:43 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.kde.Platform/x86_64/5.15-24.08 from /var/lib/flatpak/repo/tmp/flatpak-cache-JCR822/repo-LtdpTE
Mar 16 17:40:46 akideck flatpak-system-helper[13392]: system: Updated runtime/org.kde.Platform/x86_64/5.15-24.08 from flathub
Mar 16 17:40:47 akideck plasma-discover[13311]: libostree pull from 'flathub' for app/info.mumble.Mumble/x86_64/stable complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 12 content: 15
                                                transfer: secs: 1 size: 13.4 MB
Mar 16 17:40:47 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/info.mumble.Mumble-ARAJ32/repo-Xpgee5: Pulled app/info.mumble.Mumble/x86_64/stable from flathub
Mar 16 17:40:47 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-info.mumble.Mumble\x2dARAJ32.mount: Deactivated successfully.
Mar 16 17:40:47 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-info.mumble.Mumble\x2dARAJ32.mount: Deactivated successfully.
Mar 16 17:40:47 akideck flatpak-system-helper[13392]: system: Pulled app/info.mumble.Mumble/x86_64/stable from /var/lib/flatpak/repo/tmp/flatpak-cache-TG7I32/repo-Xpgee5
Mar 16 17:40:47 akideck flatpak-system-helper[13392]: system: Updated app/info.mumble.Mumble/x86_64/stable from flathub
Mar 16 17:40:47 akideck plasma-discover[13311]: libostree pull from 'flathub' for runtime/org.mozilla.firefox.Locale/x86_64/stable complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 5 content: 2
                                                transfer: secs: 0 size: 690.3 kB
Mar 16 17:40:47 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.mozilla.firefox.Locale-O57S32/repo-TI5QT3: Pulled runtime/org.mozilla.firefox.Locale/x86_64/stable from flathub
Mar 16 17:40:47 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.mozilla.firefox.Locale\x2dO57S32.mount: Deactivated successfully.
Mar 16 17:40:47 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.mozilla.firefox.Locale\x2dO57S32.mount: Deactivated successfully.
Mar 16 17:40:48 akideck flatpak-system-helper[13392]: system: Pulled runtime/org.mozilla.firefox.Locale/x86_64/stable from /var/lib/flatpak/repo/tmp/flatpak-cache-Z6GT32/repo-TI5QT3
Mar 16 17:40:48 akideck flatpak-system-helper[13392]: system: Updated runtime/org.mozilla.firefox.Locale/x86_64/stable from flathub
Mar 16 17:40:49 akideck kded6[11959]: org.kde.colorcorrectlocationupdater: Geolocator stopped
Mar 16 17:40:50 akideck kioworker[14440]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:40:50 akideck kioworker[14440]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:40:57 akideck plasma-discover[13311]: libostree pull from 'flathub' for app/org.mozilla.firefox/x86_64/stable complete
                                                security: GPG: summary+commit 
                                                security: SIGN: disabled http: TLS
                                                non-delta: meta: 18 content: 41
                                                transfer: secs: 8 size: 101.4 MB
Mar 16 17:40:57 akideck plasma-discover[13311]: /var/tmp/flatpak-cache-HIVE32/org.mozilla.firefox-YTLF32/repo-arCYYW: Pulled app/org.mozilla.firefox/x86_64/stable from flathub
Mar 16 17:40:57 akideck systemd[1]: home-.steamos-offload-var-tmp-flatpak\x2dcache\x2dHIVE32-org.mozilla.firefox\x2dYTLF32.mount: Deactivated successfully.
Mar 16 17:40:57 akideck systemd[1]: var-tmp-flatpak\x2dcache\x2dHIVE32-org.mozilla.firefox\x2dYTLF32.mount: Deactivated successfully.
Mar 16 17:40:57 akideck flatpak-system-helper[13392]: system: Pulled app/org.mozilla.firefox/x86_64/stable from /var/lib/flatpak/repo/tmp/flatpak-cache-0FIF32/repo-arCYYW
Mar 16 17:40:57 akideck steam[12613]: [2025-03-16 17:40:57] Background update loop checking for update. . .
Mar 16 17:40:57 akideck steam[12613]: [2025-03-16 17:40:57] Checking for available updates...
Mar 16 17:40:57 akideck steam[12613]: [2025-03-16 17:40:57] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 16 17:40:57 akideck flatpak-system-helper[13392]: system: Updated app/org.mozilla.firefox/x86_64/stable from flathub
Mar 16 17:40:57 akideck dbus-broker-launch[1326]: Service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Mar 16 17:40:57 akideck dbus-broker-launch[1326]: Service file '/usr/share//dbus-1/services/org.kde.kscreen.service' is not named after the D-Bus name 'org.kde.KScreen'.
Mar 16 17:40:57 akideck dbus-broker-launch[1326]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Mar 16 17:40:57 akideck dbus-broker-launch[1326]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Mar 16 17:40:57 akideck dbus-broker-launch[1326]: Service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Mar 16 17:40:57 akideck steam[12613]: [2025-03-16 17:40:57] Manifest download: send request
Mar 16 17:40:57 akideck kioworker[14549]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:40:57 akideck kioworker[14549]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:40:57 akideck steam[12613]: [2025-03-16 17:40:57] Manifest download: waiting for download to finish
Mar 16 17:40:58 akideck kded6[11959]: Service  ":1.201" unregistered
Mar 16 17:40:58 akideck steam[12613]: [2025-03-16 17:40:58] Manifest download: finished
Mar 16 17:40:58 akideck steam[12613]: [2025-03-16 17:40:58] Download skipped by HTTP 304 Not Modified
Mar 16 17:40:58 akideck steam[12613]: [2025-03-16 17:40:58] Nothing to do
Mar 16 17:40:59 akideck kioworker[14608]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:40:59 akideck kioworker[14608]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:40:59 akideck kded6[11959]: org.kde.colorcorrectlocationupdater: Geolocator stopped
Mar 16 17:41:01 akideck kioworker[14642]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:41:01 akideck kioworker[14642]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:41:01 akideck kioworker[14666]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:41:01 akideck kioworker[14666]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:41:04 akideck kioworker[14711]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:41:04 akideck kioworker[14711]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:41:20 akideck kioworker[14765]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:41:20 akideck kioworker[14765]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:41:20 akideck kioworker[14794]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:41:20 akideck kioworker[14794]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:41:21 akideck kioworker[14816]: kf.kio.core.connection: Socket not connected QLocalSocket::PeerClosedError
Mar 16 17:41:21 akideck kioworker[14816]: kf.kio.core: An error occurred during write. The worker terminates now.
Mar 16 17:41:27 akideck systemd[1202]: app-org.kde.dolphin@7053618c6103417eb067fa967be6748e.service: Consumed 20.022s CPU time, 233M memory peak.
Mar 16 17:41:28 akideck systemd[1202]: app-org.kde.discover@3c48c47188664627ba2ec3708a78a082.service: Consumed 52.525s CPU time, 984.3M memory peak.
Mar 16 17:41:36 akideck flatpak[13682]: ATTENTION: default value of option mesa_glthread overridden by environment.
Mar 16 17:41:43 akideck flatpak[13976]: [Child 238, MediaDecoderStateMachine #1] WARNING: Decoder=7f2cc4575900 state=DECODING_METADATA Decode metadata failed, shutting down decoder: file /builds/worker/checkouts/gecko/dom/media/MediaDecoderStateMachine.cpp:372
Mar 16 17:41:43 akideck flatpak[13976]: [Child 238, MediaDecoderStateMachine #1] WARNING: Decoder=7f2cc4575900 Decode error: NS_ERROR_DOM_MEDIA_METADATA_ERR (0x806e0006) - static MP4Metadata::ResultAndByteBuffer mozilla::MP4Metadata::Metadata(ByteStream *): Cannot parse metadata: file /builds/worker/checkouts/gecko/dom/media/MediaDecoderStateMachineBase.cpp:168
Mar 16 17:41:43 akideck flatpak[13976]: [Child 238, MediaDecoderStateMachine #1] WARNING: Decoder=7f2cce7a2000 state=DECODING_METADATA Decode metadata failed, shutting down decoder: file /builds/worker/checkouts/gecko/dom/media/MediaDecoderStateMachine.cpp:372
Mar 16 17:41:43 akideck flatpak[13976]: [Child 238, MediaDecoderStateMachine #1] WARNING: Decoder=7f2cce7a2000 Decode error: NS_ERROR_DOM_MEDIA_METADATA_ERR (0x806e0006) - static MP4Metadata::ResultAndByteBuffer mozilla::MP4Metadata::Metadata(ByteStream *): Cannot parse metadata: file /builds/worker/checkouts/gecko/dom/media/MediaDecoderStateMachineBase.cpp:168
Mar 16 17:42:33 akideck systemd[1]: Unmounting /esp...
Mar 16 17:42:33 akideck systemd[1]: esp.mount: Deactivated successfully.
Mar 16 17:42:33 akideck systemd[1]: Unmounted /esp.
Mar 16 17:42:40 akideck systemd[1]: Unmounting /efi...
Mar 16 17:42:40 akideck systemd[1]: efi.mount: Deactivated successfully.
Mar 16 17:42:40 akideck systemd[1]: Unmounted /efi.
Mar 16 17:44:40 akideck systemd[1202]: app-org.mozilla.firefox@799b70d760fe4d7c9c28d0836f941073.service: Consumed 224ms CPU time, 70.3M memory peak.
Mar 16 17:44:40 akideck systemd[1202]: app-flatpak-org.mozilla.firefox-13617.scope: Consumed 3min 55.506s CPU time, 1.4G memory peak.
Mar 16 17:44:56 akideck plasmashell[12021]: qt.gui.imageio: libpng warning: iCCP: known incorrect sRGB profile
Mar 16 17:45:51 akideck steam[12613]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 16 17:45:54 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:54 akideck steam[12613]: fsync: up and running.
Mar 16 17:45:54 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:54 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:54 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:54 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:55 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:55 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:56 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n"
Mar 16 17:45:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 16 17:45:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n"
Mar 16 17:45:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 16 17:45:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n"
Mar 16 17:45:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 16 17:45:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): EDID vendor \"VLV\", prod id 12292\n"
Mar 16 17:45:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): Using hsync ranges from config file\n(II) AMDGPU(0): Using vrefresh ranges from config file\n"
Mar 16 17:45:56 akideck sddm-helper-start-x11user[11820]: "(II) AMDGPU(0): Printing DDC gathered Modelines:\n(II) AMDGPU(0): Modeline \"800x1280\"x0.0  102.00  800 818 822 858  1280 1288 1290 1320 +hsync +vsync (118.9 kHz eP)\n"
Mar 16 17:45:56 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:56 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:56 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:57 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:57 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:57 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:57 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:58 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:58 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:58 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:45:59 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:00 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:00 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:00 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:01 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:01 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:02 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:02 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:03 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:03 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:03 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:04 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:05 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:05 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:06 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:07 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:07 akideck systemd[1202]: Started Return to Gaming Mode.
Mar 16 17:46:07 akideck systemd[1202]: Started dbus-:1.2-org.kde.Shutdown@1.service.
Mar 16 17:46:07 akideck systemd[1202]: Started Return to Gaming Mode.
Mar 16 17:46:07 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:08 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:08 akideck steam[12613]: wine: using kernel write watches, use_kernel_writewatch 1.
Mar 16 17:46:10 akideck steam[12613]: Removing HIDAPI device 'Steam Deck' VID 0x28de, PID 0x1205, bluetooth 0, version 768, serial NONE, interface 2, interface_class 0, interface_subclass 0, interface_protocol 0, usage page 0xffff, usage 0x0001, path = /dev/hidraw2, driver = SDL_JOYSTICK_HIDAPI_STEAMDECK (ENABLED)
Mar 16 17:46:10 akideck steam[12613]: [2025-03-16 17:46:10] Shutdown
Mar 16 17:46:10 akideck kernel: input: Steam Deck as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input53
Mar 16 17:46:10 akideck kernel: input: Steam Deck Motion Sensors as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input54
Mar 16 17:46:10 akideck sddm-helper-start-x11user[11820]: "(II) config/udev: Adding input device Steam Deck (/dev/input/js0)\n"
Mar 16 17:46:10 akideck sddm-helper-start-x11user[11820]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 16 17:46:10 akideck sddm-helper-start-x11user[11820]: "(II) config/udev: Adding input device Steam Deck Motion Sensors (/dev/input/js1)\n"
Mar 16 17:46:10 akideck sddm-helper-start-x11user[11820]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 16 17:46:10 akideck sddm-helper-start-x11user[11820]: "(II) config/udev: Adding input device Steam Deck Motion Sensors (/dev/input/event9)\n"
Mar 16 17:46:10 akideck sddm-helper-start-x11user[11820]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 16 17:46:10 akideck sddm-helper-start-x11user[11820]: "(II) config/udev: Adding input device Steam Deck (/dev/input/event8)\n"
Mar 16 17:46:10 akideck sddm-helper-start-x11user[11820]: "(II) No input driver specified, ignoring this device.\n(II) This device may have been added with another device file.\n"
Mar 16 17:46:12 akideck kded6[11959]: Service  ":1.193" unregistered
Mar 16 17:46:12 akideck polkit-kde-authentication-agent-1[12094]: Destroying listener
Mar 16 17:46:12 akideck polkit-kde-authentication-agent-1[12094]: Removing listener  PolkitQt1::Agent::Listener(0x5596037fe610)
Mar 16 17:46:12 akideck plasmashell[12021]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml:136: TypeError: Cannot read property 'screenGeometry' of null
Mar 16 17:46:12 akideck systemd[1202]: app-org.kde.discover.notifier@autostart.service: Consumed 6.767s CPU time, 44.3M memory peak.
Mar 16 17:46:12 akideck plasmashell[12021]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml:250: TypeError: Cannot read property 'plasmoid' of undefined
Mar 16 17:46:12 akideck systemd[1202]: plasma-plasmashell.service: Consumed 8.635s CPU time, 266.1M memory peak.
Mar 16 17:46:12 akideck systemd[1202]: Stopped target plasma-workspace-x11.target.
Mar 16 17:46:12 akideck systemd[1202]: Stopped target KDE Plasma Workspace.
Mar 16 17:46:12 akideck systemd[1202]: Stopped target Startup of XDG autostart applications.
Mar 16 17:46:12 akideck systemd[1202]: Stopping IBus...
Mar 16 17:46:12 akideck systemd[1202]: Stopping Steam...
Mar 16 17:46:12 akideck systemd[1202]: Stopping Accessibility services bus...
Mar 16 17:46:12 akideck systemd[1202]: Stopping Consume pending crashes using DrKonqi...
Mar 16 17:46:12 akideck dbus-broker[11983]: Dispatched 643 messages @ 5(±6)μs / message.
Mar 16 17:46:12 akideck systemd[1202]: Stopping flatpak session helper...
Mar 16 17:46:12 akideck systemd[1202]: Stopping KAccess...
Mar 16 17:46:12 akideck systemd[1202]: Stopping KDE Global Shortcuts Server...
Mar 16 17:46:12 akideck systemd[1202]: Stopping KScreen...
Mar 16 17:46:12 akideck systemd[1202]: Stopping KDE Window Manager...
Mar 16 17:46:12 akideck systemd[1202]: Stopping Powerdevil...
Mar 16 17:46:12 akideck systemd[1202]: Stopping Xdg Desktop Portal For KDE...
Mar 16 17:46:12 akideck systemd[1202]: Stopping Portal service...
Mar 16 17:46:12 akideck systemd[1202]: Stopping flatpak document portal service...
Mar 16 17:46:12 akideck systemd[1202]: Stopping sandboxed app permission store...
Mar 16 17:46:12 akideck systemd[1202]: Stopping Baloo File Indexer Daemon...
Mar 16 17:46:12 akideck systemd[1202]: Stopped sandboxed app permission store.
Mar 16 17:46:12 akideck systemd[1202]: Stopped KScreen.
Mar 16 17:46:12 akideck systemd[1]: run-user-1000-doc.mount: Deactivated successfully.
Mar 16 17:46:12 akideck systemd[1202]: Stopped flatpak document portal service.
Mar 16 17:46:12 akideck systemd[1202]: Stopped Portal service.
Mar 16 17:46:12 akideck systemd[1202]: Stopped Consume pending crashes using DrKonqi.
Mar 16 17:46:12 akideck systemd[1202]: Stopped IBus.
Mar 16 17:46:12 akideck systemd[1202]: app-ibus@autostart.service: Consumed 2.800s CPU time, 33.6M memory peak.
Mar 16 17:46:12 akideck systemd[1202]: Stopped KAccess.
Mar 16 17:46:12 akideck systemd[1202]: Stopped Xdg Desktop Portal For KDE.
Mar 16 17:46:12 akideck systemd[1202]: Stopped KDE Global Shortcuts Server.
Mar 16 17:46:12 akideck systemd[1202]: Stopped flatpak session helper.
Mar 16 17:46:12 akideck systemd[1202]: Stopped Accessibility services bus.
Mar 16 17:46:12 akideck systemd[1202]: Stopped Powerdevil.
Mar 16 17:46:12 akideck systemd[1202]: Stopped target KDE Plasma Workspace Core.
Mar 16 17:46:12 akideck systemd[1202]: Stopping KDE Daemon 6...
Mar 16 17:46:12 akideck systemd[1202]: Stopping KDE Session Management Server...
Mar 16 17:46:12 akideck systemd[1202]: Stopped Baloo File Indexer Daemon.
Mar 16 17:46:12 akideck systemd[1202]: Stopped KDE Session Management Server.
Mar 16 17:46:12 akideck systemd[1202]: Stopped KDE Daemon 6.
Mar 16 17:46:12 akideck systemd[1202]: plasma-kded6.service: Consumed 1.591s CPU time, 63.5M memory peak.
Mar 16 17:46:12 akideck systemd[1202]: plasma-kwin_x11.service: Main process exited, code=exited, status=15/n/a
Mar 16 17:46:12 akideck systemd[1202]: plasma-kwin_x11.service: Failed with result 'exit-code'.
Mar 16 17:46:12 akideck systemd[1202]: Stopped KDE Window Manager.
Mar 16 17:46:12 akideck systemd[1202]: plasma-kwin_x11.service: Consumed 29.399s CPU time, 97.6M memory peak.
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: quitting helper-start-x11
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: Stopping server...
Mar 16 17:46:12 akideck at-spi2-registryd[11987]: X connection to :0 broken (explicit kill or server shutdown).
Mar 16 17:46:12 akideck kactivitymanagerd[12089]: The X11 connection broke (error 1). Did the X11 server die?
Mar 16 17:46:12 akideck systemd[1202]: dbus-:1.158-org.a11y.atspi.Registry@0.service: Main process exited, code=exited, status=1/FAILURE
Mar 16 17:46:12 akideck systemd[1202]: dbus-:1.158-org.a11y.atspi.Registry@0.service: Failed with result 'exit-code'.
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(**) Option \"fd\""
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " \"27\"\n(II) event2  - Power Button: device removed\n(**) Option \"fd\""
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " \"30\"\n(II) event3  - Video Bus: device removed\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(**) Option \"fd\""
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " \"31\"\n(II) event0  - Power Button: device removed\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(**) Option \"fd\""
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " \"32\"\n(II) event5  - Valve Software Steam Controller: device removed\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(**) Option \"fd\""
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " \"33\"\n(II) event4  - Valve Software Steam Controller: device removed\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(**) Option \"fd\""
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " \"34\"\n(II) event16 - sof-nau8821-max Headset Jack: device removed\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(**) Option \"fd\""
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " \"35\"\n(II) event14 - FTS3528:00 2808:1015: device removed\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(**) Option \"fd\""
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " \"36\"\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II) event15 - FTS3528:00 2808:1015 UNKNOWN: device removed\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(**) Option \"fd\""
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " \"38\"\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II) event7  - AT Translated Set 2 keyboard: device removed\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II)"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:71\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II)"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:79\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II)"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:78\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II) UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:80\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II)"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:68\n"
Mar 16 17:46:12 akideck systemd[1202]: xdg-desktop-portal-gtk.service: Main process exited, code=exited, status=1/FAILURE
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II)"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:69\n"
Mar 16 17:46:12 akideck systemd[1202]: xdg-desktop-portal-gtk.service: Failed with result 'exit-code'.
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II)"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:64\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II) UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:67\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II)"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " UnloadModule: \"libinput\"\n(II) systemd-logind: releasing fd for 13:66\n"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: "(II)"
Mar 16 17:46:12 akideck sddm-helper-start-x11user[11820]: " Server terminated successfully (0). Closing log file.\n"
Mar 16 17:46:12 akideck systemd[1202]: Stopped KActivityManager Activity manager Service.
Mar 16 17:46:13 akideck systemd-coredump[17234]: Process 12937 (steamwebhelper) of user 1000 terminated abnormally with signal 5/TRAP, processing...
Mar 16 17:46:13 akideck systemd[1]: Created slice Slice /system/drkonqi-coredump-processor.
Mar 16 17:46:13 akideck systemd[1]: Created slice Slice /system/systemd-coredump.
Mar 16 17:46:13 akideck systemd[1]: Started Process Core Dump (PID 17234/UID 0).
Mar 16 17:46:13 akideck sddm-helper-start-x11user[11820]: Running display stop script: /usr/bin/gamescope-wayland-teardown-workaround
Mar 16 17:46:13 akideck systemd[1]: Started Pass systemd-coredump journal entries to relevant user for potential DrKonqi handling.
Mar 16 17:46:13 akideck sddm-helper[11813]: [PAM] Closing session
Mar 16 17:46:13 akideck sddm-helper[11813]: pam_unix(sddm-autologin:session): session closed for user deck
Mar 16 17:46:13 akideck sddm-helper[11813]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: pam_sm_close_session
Mar 16 17:46:13 akideck sddm-helper[11813]: pam_kwallet5(sddm-autologin:setcred): pam_kwallet5: pam_sm_setcred
Mar 16 17:46:13 akideck sddm-helper[11813]: [PAM] Ended.
Mar 16 17:46:13 akideck systemd[1]: session-6.scope: Deactivated successfully.
Mar 16 17:46:13 akideck sddm[1091]: Auth: sddm-helper exited successfully
Mar 16 17:46:13 akideck sddm[1091]: Removing display SDDM::Display(0x7f7e9000c5b0) ...
Mar 16 17:46:13 akideck systemd[1]: session-6.scope: Consumed 32.593s CPU time, 195.3M memory peak.
Mar 16 17:46:13 akideck sddm[1091]: Adding new display...
Mar 16 17:46:13 akideck sddm[1091]: Loaded empty theme configuration
Mar 16 17:46:13 akideck systemd-logind[871]: Removed session 6.
Mar 16 17:46:13 akideck wireplumber[1450]: wplua: [string "alsa.lua"]:448: table index is nil
                                           stack traceback:
                                                   [string "alsa.lua"]:448: in function <[string "alsa.lua"]:434>
Mar 16 17:46:13 akideck sddm[1091]: Using VT 1
Mar 16 17:46:13 akideck sddm[1091]: Display server started.
Mar 16 17:46:13 akideck sddm[1091]: Reading from "/usr/local/share/wayland-sessions/gamescope-wayland.desktop"
Mar 16 17:46:13 akideck sddm[1091]: Reading from "/usr/share/wayland-sessions/gamescope-wayland.desktop"
Mar 16 17:46:13 akideck sddm[1091]: Session "/usr/share/wayland-sessions/gamescope-wayland.desktop" selected, command: "start-gamescope-session" for VT 1
Mar 16 17:46:13 akideck sddm-helper[17247]: [PAM] Starting...
Mar 16 17:46:13 akideck sddm-helper[17247]: [PAM] Authenticating...
Mar 16 17:46:13 akideck sddm-helper[17247]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: pam_sm_authenticate
Mar 16 17:46:13 akideck sddm-helper[17247]: [PAM] Preparing to converse...
Mar 16 17:46:13 akideck sddm-helper[17247]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Couldn't get password (it is empty)
Mar 16 17:46:13 akideck sddm-helper[17247]: [PAM] Conversation with 1 messages
Mar 16 17:46:13 akideck sddm-helper[17247]: pam_kwallet5(sddm-autologin:auth): pam_kwallet5: Empty or missing password, doing nothing
Mar 16 17:46:13 akideck sddm-helper[17247]: [PAM] returning.
Mar 16 17:46:13 akideck sddm[1091]: Authentication for user  "deck"  successful
Mar 16 17:46:13 akideck sddm-helper[17247]: pam_kwallet5(sddm-autologin:setcred): pam_kwallet5: pam_sm_setcred
Mar 16 17:46:13 akideck sddm-helper[17247]: pam_unix(sddm-autologin:session): session opened for user deck(uid=1000) by deck(uid=0)
Mar 16 17:46:13 akideck systemd-logind[871]: New session 7 of user deck.
Mar 16 17:46:13 akideck systemd[1]: Started Session 7 of User deck.
Mar 16 17:46:13 akideck sddm-helper[17247]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: pam_sm_open_session
Mar 16 17:46:13 akideck sddm-helper[17247]: pam_kwallet5(sddm-autologin:session): pam_kwallet5: open_session called without kwallet5_key
Mar 16 17:46:13 akideck sddm-helper[17247]: Starting Wayland user session: "/usr/share/sddm/scripts/wayland-session" "start-gamescope-session"
Mar 16 17:46:13 akideck sddm-helper[17253]: Jumping to VT 1
Mar 16 17:46:13 akideck sddm-helper[17253]: VT mode fixed
Mar 16 17:46:13 akideck sddm[1091]: Session started true
Mar 16 17:46:13 akideck systemd[1202]: Expecting device /dev/cec0...
Mar 16 17:46:13 akideck systemd[1202]: Starting Gamescope Session...
Mar 16 17:46:13 akideck systemd[1202]: Started Power Button daemon for SteamOS.
Mar 16 17:46:13 akideck gamescope-session[17278]: Making Gamescope Mode Save file at "/home/deck/.config/gamescope/modes.cfg"
Mar 16 17:46:13 akideck gamescope-session[17278]: Making Gamescope patched edid at "/home/deck/.config/gamescope/edid.bin"
Mar 16 17:46:13 akideck gamescope-session[17278]: Removing file: /home/deck/.local/share/Steam/config/uioverrides/movies/*
Mar 16 17:46:13 akideck gamescope-session[17297]: rm: cannot remove '/home/deck/.local/share/Steam/config/uioverrides/movies/*': No such file or directory
Mar 16 17:46:13 akideck gamescope-session[17298]: rm: cannot remove '/home/deck/.local/share/Steam/config/uioverrides/movies/*.installed': No such file or directory
Mar 16 17:46:13 akideck gamescope-session[17278]: Claimed global gamescope stats session at "/run/user/1000/gamescope-stats"
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  console: gamescope version 3.16.2 (gcc 14.2.1)
Mar 16 17:46:13 akideck gamescope-session[17278]: Tracing is enabled
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts'
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts/00-gamescope'
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts/00-gamescope/common'
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/common/inspect.lua' (id: 0)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/common/modegen.lua' (id: 1)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/common/util.lua' (id: 2)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/usr/share/gamescope/scripts/00-gamescope/displays'
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/asus.rogally.lcd.lua' (id: 3)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/deckhd.steamdeck.deckhd-lcd.lua' (id: 4)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/valve.steamdeck.lcd.lua' (id: 5)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Running script file '/usr/share/gamescope/scripts/00-gamescope/displays/valve.steamdeck.oled.lua' (id: 6)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/etc/gamescope/scripts'
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Warn]  scriptmgr: Directory '/etc/gamescope/scripts' does not exist
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  scriptmgr: Loading scripts from: '/home/deck/.config/gamescope/scripts'
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Warn]  scriptmgr: Directory '/home/deck/.config/gamescope/scripts' does not exist
Mar 16 17:46:13 akideck gamescope-session[17278]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan: selecting physical device 'AMD Custom GPU 0932 (RADV VANGOGH)': queue family 1 (general queue family 0)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan: physical device supports DRM format modifiers
Mar 16 17:46:13 akideck gamescope-session[17278]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: [backend/headless/backend.c:67] Creating headless backend
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: [libseat] [libseat/backend/seatd.c:64] Could not connect to socket /run/seatd.sock: No such file or directory
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: [libseat] [libseat/libseat.c:76] Backend 'seatd' failed to open seat, skipping
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: [libseat] [libseat/libseat.c:73] Seat opened with backend 'logind'
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: [backend/session/session.c:108] Successfully loaded libseat session
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: opening DRM node '/dev/dri/card0'
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Error] drm: Immediate flips disabled from environment
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: Connector eDP-1 -> VLV - ANX7530 U
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: Got known display: steamdeck_oled_boe (Steam Deck OLED (BOE))
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: EDID with colorimetry detected. Using it
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: r 0.684570 0.314453
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: g 0.245117 0.714844
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: b 0.137695 0.049805
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: w 0.312500 0.329102
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: Connector eDP-1 -> VLV - ANX7530 U
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: Got known display: steamdeck_oled_boe (Steam Deck OLED (BOE))
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: EDID with colorimetry detected. Using it
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: r 0.684570 0.314453
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: g 0.245117 0.714844
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: b 0.137695 0.049805
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: w 0.312500 0.329102
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: Connectors:
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm:   DP-1 (disconnected)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm:   eDP-1 (connected)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: selecting connector eDP-1
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  drm: selecting mode 800x1280@90Hz
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan: supported DRM formats for sampling usage:
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   AR24 (0x34325241)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   XR24 (0x34325258)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   AB24 (0x34324241)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   XB24 (0x34324258)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   RG16 (0x36314752)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   NV12 (0x3231564E)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   AB4H (0x48344241)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   XB4H (0x48344258)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   AB48 (0x38344241)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   XB48 (0x38344258)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   AB30 (0x30334241)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   XB30 (0x30334258)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   AR30 (0x30335241)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  vulkan:   XR30 (0x30335258)
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: Using explicit sync when available
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: Running compositor on wayland display 'gamescope-0'
Mar 16 17:46:13 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: [backend/headless/backend.c:17] Starting headless backend
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: Successfully initialized libei for input emulation!
Mar 16 17:46:14 akideck gamescope-session[17327]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :0
Mar 16 17:46:14 akideck gamescope-session[17328]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :1
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  pipewire: stream state changed: connecting
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  pipewire: stream state changed: paused
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  pipewire: stream available on node ID: 111
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  xwm: Embedded, no cursor set. Using left_ptr by default.
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  xwm: Embedded, no cursor set. Using left_ptr by default.
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  vblank: Using timerfd.
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  edid: Patching dims 10x16 -> 16x10
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  edid: Patching res 800x1280 -> 1280x800
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  edid: [edid] Patching HDR static metadata:
Mar 16 17:46:14 akideck gamescope-session[17278]:     - Max peak luminance = 1000 nits
Mar 16 17:46:14 akideck gamescope-session[17278]:     - Max frame average luminance = 800 nits
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  edid: Patching existing HDR Metadata with our own!
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  edid: CTA Checksum valid? Y
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  edid: BASE Checksum valid? Y
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  edid: Wrote new edid to: /home/deck/.config/gamescope/edid.bin
Mar 16 17:46:14 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: Updating mode for xwayland server #0: 1280x800@90
Mar 16 17:46:14 akideck systemd[1202]: Started Gamescope Session.
Mar 16 17:46:14 akideck systemd[1202]: Stopped Steam.
Mar 16 17:46:14 akideck systemd[1202]: app-steam@autostart.service: Consumed 3min 10.063s CPU time, 4.2G memory peak.
Mar 16 17:46:14 akideck systemd[1202]: Starting galileo mura setup...
Mar 16 17:46:14 akideck systemd[1202]: Starting mangoapp...
Mar 16 17:46:14 akideck systemd[1202]: Starting Xbindkeys for Gamescope session...
Mar 16 17:46:14 akideck systemd[1202]: Starting Wrapper for Ibus...
Mar 16 17:46:14 akideck systemd[1202]: Starting Steam Launcher...
Mar 16 17:46:14 akideck systemd[1202]: Started Steam Notification Daemon.
Mar 16 17:46:14 akideck systemd[1202]: Started Xbindkeys for Gamescope session.
Mar 16 17:46:14 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start timed out.
Mar 16 17:46:14 akideck systemd[1202]: Timed out starting plasma-remotecontrollers.service.
Mar 16 17:46:14 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start failed with result 'timeout'.
Mar 16 17:46:14 akideck systemd[1202]: Unnecessary job was removed for /dev/cec0.
Mar 16 17:46:14 akideck systemd[1202]: Started Steam Launcher.
Mar 16 17:46:14 akideck systemd[1202]: Starting Steam Short Session Tracker...
Mar 16 17:46:14 akideck systemd[1202]: Started mangoapp.
Mar 16 17:46:14 akideck steam-short-session-tracker[17378]: /usr/lib/steamos/steam-short-session-tracker: line 9: /tmp/steamos-short-session-tracker: No such file or directory
Mar 16 17:46:14 akideck systemd[1202]: Finished Steam Short Session Tracker.
Mar 16 17:46:14 akideck systemd[1202]: Started Wrapper for Ibus.
Mar 16 17:46:14 akideck systemd[1202]: Started dbus-:1.2-org.freedesktop.portal.IBus@4.service.
Mar 16 17:46:14 akideck steam-runtime-steam-remote[17408]: steam-runtime-steam-remote: Steam is not running: No such device or address
Mar 16 17:46:14 akideck mangoapp[17363]: [2025-03-16 17:46:14.719] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 16 17:46:14 akideck mangoapp[17363]: [2025-03-16 17:46:14.748] [MANGOHUD] [error] [cpu.cpp:536] Could not find cpu temp sensor location
Mar 16 17:46:14 akideck steam-launcher[17368]: steam.sh[17368]: Running Steam on steamos rolling 64-bit
Mar 16 17:46:14 akideck steam-launcher[17368]: steam.sh[17368]: STEAM_RUNTIME is enabled automatically
Mar 16 17:46:14 akideck wireplumber[1450]: spa.alsa: Failed to enable UCM device Speaker
Mar 16 17:46:14 akideck steam-launcher[17468]: setup.sh[17468]: Steam runtime environment up-to-date!
Mar 16 17:46:15 akideck systemd-coredump[17235]: Process 12937 (steamwebhelper) of user 1000 dumped core.
                                                 
                                                 Stack trace of thread 12937:
                                                 #0  0x00007fcf4c2cac2f n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x66cac2f)
                                                 #1  0x00007fcf4c2ca6fb n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x66ca6fb)
                                                 #2  0x00007fcf4c2caca9 n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x66caca9)
                                                 #3  0x00007fcf4ab9e197 n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x4f9e197)
                                                 #4  0x00007fcf4ab9b5e6 n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x4f9b5e6)
                                                 #5  0x00007fcf4ab9a23b n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x4f9a23b)
                                                 #6  0x00007fcf4aba5d08 n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x4fa5d08)
                                                 #7  0x00007fcf4aba7107 n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x4fa7107)
                                                 #8  0x00007fcf4a9c1b31 n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x4dc1b31)
                                                 #9  0x00007fcf4aa25f5b n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x4e25f5b)
                                                 #10 0x00007fcf4aa26171 n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x4e26171)
                                                 #11 0x00007fcf4c31acdf n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x671acdf)
                                                 #12 0x00007fcf4c33bbf6 n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x673bbf6)
                                                 #13 0x00007fcf4c3a1a3e n/a (/home/deck/.local/share/Steam/ubuntu12_64/libcef.so + 0x67a1a3e)
                                                 #14 0x00007fcf45b20e6b n/a (/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.6600.8 + 0x51e6b)
                                                 ELF object binary architecture: AMD x86-64
Mar 16 17:46:15 akideck steam[17509]: steam.sh[17368]: Using supervisor /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 16 17:46:15 akideck steam[17509]: steam.sh[17368]: Steam client's requirements are satisfied
Mar 16 17:46:15 akideck steam[17509]: CProcessEnvironmentManager is ready, 6 preallocated environment variables.
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] Startup - updater built Mar 11 2025 20:39:15
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] Startup - Steam Client launched with: '/home/deck/.local/share/Steam/ubuntu12_32/steam' '-srt-logger-opened' '-steamdeck' '-steamos3' '-steampal' '-steamdeck' '-gamepadui'
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] Opted in to client beta 'steamdeck_publicbeta' via beta file
Mar 16 17:46:15 akideck steam[17509]: You are in the 'steamdeck_publicbeta' client beta.
Mar 16 17:46:15 akideck steam[17509]: 03/16 17:46:15 minidumps folder is set to /tmp/dumps
Mar 16 17:46:15 akideck steam[17509]: 03/16 17:46:15 Init: Installing breakpad exception handler for appid(steam)/version(1741737356)/tid(17530)
Mar 16 17:46:15 akideck systemd[1]: systemd-coredump@0-17234-0.service: Deactivated successfully.
Mar 16 17:46:15 akideck systemd[1]: systemd-coredump@0-17234-0.service: Consumed 1.878s CPU time, 686.2M memory peak.
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] Loading cached metrics from disk (/home/deck/.local/share/Steam/package/steam_client_metrics.bin)
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] Using the following download hosts for Public, Realm steamglobal
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] 1. https://client-update.fastly.steamstatic.com, /, Realm 'steamglobal', weight was 900, source = 'update_hosts_cached.vdf'
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] 2. https://client-update.akamai.steamstatic.com, /, Realm 'steamglobal', weight was 100, source = 'update_hosts_cached.vdf'
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] 3. https://client-update.steamstatic.com, /, Realm 'steamglobal', weight was 1, source = 'baked in'
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] Verifying installation...
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] Verifying file sizes only
Mar 16 17:46:15 akideck steam[17509]: [2025-03-16 17:46:15] Verification complete
Mar 16 17:46:15 akideck drkonqi-coredump-processor[17237]: "/home/deck/.local/share/Steam/ubuntu12_64/steamwebhelper" 12937 "/var/lib/systemd/coredump/core.steamwebhelper.1000.f1cab37f0ac7465e972cac441e373792.12937.1742172372000000.zst"
Mar 16 17:46:15 akideck systemd[1202]: Started Launch DrKonqi for a systemd-coredump crash (PID 17237/UID 0).
Mar 16 17:46:15 akideck drkonqi-coredump-launcher[17544]: Unable to find file for pid 12937 expected at "kcrash-metadata/steamwebhelper.f1cab37f0ac7465e972cac441e373792.12937.ini"
Mar 16 17:46:15 akideck drkonqi-coredump-launcher[17544]: Nothing handled the dump :O
Mar 16 17:46:15 akideck gamescope-session[17278]: [gamescope] [Warn]  xwm: got the same buffer committed twice, ignoring.
Mar 16 17:46:15 akideck systemd[1]: drkonqi-coredump-processor@0-17234-0.service: Deactivated successfully.
Mar 16 17:46:15 akideck gamescope-session[17548]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 17:46:15 akideck gamescope-session[17548]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 17:46:15 akideck gamescope-session[17548]: >                   X11 cannot support keycodes above 255.
Mar 16 17:46:15 akideck gamescope-session[17549]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 16 17:46:15 akideck gamescope-session[17549]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 16 17:46:15 akideck gamescope-session[17549]: >                   X11 cannot support keycodes above 255.
Mar 16 17:46:15 akideck gamescope-session[17548]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 17:46:15 akideck gamescope-session[17548]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 17:46:15 akideck gamescope-session[17548]: Errors from xkbcomp are not fatal to the X server
Mar 16 17:46:15 akideck gamescope-session[17549]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 16 17:46:15 akideck gamescope-session[17549]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 16 17:46:15 akideck gamescope-session[17549]: Errors from xkbcomp are not fatal to the X server
Mar 16 17:46:15 akideck galileo-mura-setup[17362]: [galileo-mura] Not using mura correction for this unit as it is not SDC.
Mar 16 17:46:15 akideck systemd[1202]: galileo-mura-setup.service: Main process exited, code=exited, status=1/FAILURE
Mar 16 17:46:15 akideck systemd[1202]: galileo-mura-setup.service: Failed with result 'exit-code'.
Mar 16 17:46:15 akideck systemd[1202]: Failed to start galileo mura setup.
Mar 16 17:46:15 akideck systemd[1202]: Reached target Gamescope Session.
Mar 16 17:46:15 akideck steam[17509]: UpdateUI: showing logo
Mar 16 17:46:15 akideck steam[17509]: Steam logging initialized: directory: /home/deck/.local/share/Steam/logs
Mar 16 17:46:16 akideck steam[17509]: XRRGetOutputInfo Workaround: initialized with override: 1 real: 0xf7604370
Mar 16 17:46:16 akideck steam[17509]: XRRGetCrtcInfo Workaround: initialized with override: 1 real: 0xf7602cc0
Mar 16 17:46:16 akideck systemd[1202]: Starting Portal service...
Mar 16 17:46:16 akideck systemd[1202]: Starting flatpak document portal service...
Mar 16 17:46:16 akideck systemd[1202]: Starting sandboxed app permission store...
Mar 16 17:46:16 akideck systemd[1202]: Started sandboxed app permission store.
Mar 16 17:46:16 akideck systemd[1202]: Started flatpak document portal service.
Mar 16 17:46:16 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 16 17:46:16 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 16 17:46:16 akideck rtkit-daemon[1455]: Supervising 0 threads of 0 processes of 0 users.
Mar 16 17:46:16 akideck xdg-desktop-por[17579]: No skeleton to export
Mar 16 17:46:16 akideck systemd[1202]: Started Portal service.
Mar 16 17:46:16 akideck steam[17509]: 03/16 17:46:16 minidumps folder is set to /tmp/dumps
Mar 16 17:46:16 akideck steam[17509]: 03/16 17:46:16 Init: Installing breakpad exception handler for appid(steamsysinfo)/version(1741737356)/tid(17601)
Mar 16 17:46:16 akideck steam[17509]: Running query: 1 - GpuTopology
Mar 16 17:46:16 akideck steam[17509]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 17:46:16 akideck steam[17509]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 17:46:16 akideck steam[17509]: Response: gpu_topology {
Mar 16 17:46:16 akideck steam[17509]:   gpus {
Mar 16 17:46:16 akideck steam[17509]:     id: 1
Mar 16 17:46:16 akideck steam[17509]:     name: "AMD Custom GPU 0932 (RADV VANGOGH)"
Mar 16 17:46:16 akideck steam[17509]:     vram_size_bytes: 6397714432
Mar 16 17:46:16 akideck steam[17509]:     driver_id: k_EGpuDriverId_MesaRadv
Mar 16 17:46:16 akideck steam[17509]:     driver_version_major: 24
Mar 16 17:46:16 akideck steam[17509]:     driver_version_minor: 2
Mar 16 17:46:16 akideck steam[17509]:     driver_version_patch: 99
Mar 16 17:46:16 akideck steam[17509]:   }
Mar 16 17:46:16 akideck steam[17509]:   default_gpu_id: 1
Mar 16 17:46:16 akideck steam[17509]: }
Mar 16 17:46:16 akideck steam[17509]: Exit code: 0
Mar 16 17:46:16 akideck steam[17509]: Saving response to: /tmp/steamnCPafK - 58 bytes
Mar 16 17:46:16 akideck steamwebhelper[17624]: steamwebhelper.sh[17615]: Using supervisor /home/deck/.steam/root/ubuntu12_32/steam-runtime/amd64/usr/bin/steam-runtime-supervisor
Mar 16 17:46:16 akideck steamwebhelper[17624]: steamwebhelper.sh[17615]: Starting steamwebhelper under bootstrap sniper steam runtime via /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper.sh
Mar 16 17:46:16 akideck steamwebhelper[17624]: steamwebhelper.sh[17615]: CEF sandbox already disabled
Mar 16 17:46:16 akideck steamwebhelper[17624]: steamwebhelper.sh[17615]: Starting steamwebhelper with Sniper steam runtime at /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-sniper/_v2-entry-point
Mar 16 17:46:17 akideck systemd[1]: efi.automount: Got automount request for /efi, triggered by 871 (systemd-logind)
Mar 16 17:46:17 akideck systemd[1]: Mounting /efi...
Mar 16 17:46:17 akideck rtkit-daemon[1455]: Successfully made thread 17689 of process 17530 owned by '1000' high priority at nice level -10.
Mar 16 17:46:17 akideck rtkit-daemon[1455]: Supervising 1 threads of 1 processes of 1 users.
Mar 16 17:46:17 akideck rtkit-daemon[1455]: Successfully made thread 17690 of process 17530 owned by '1000' high priority at nice level -10.
Mar 16 17:46:17 akideck rtkit-daemon[1455]: Supervising 2 threads of 1 processes of 1 users.
Mar 16 17:46:17 akideck systemd[1]: Mounted /efi.
Mar 16 17:46:17 akideck pkexec[17700]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:17 akideck pkexec[17700]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-priv-write /dev/drm_dp_aux0 ]
Mar 16 17:46:17 akideck p-steamos-priv-write[17709]: checking: /dev/drm_dp_aux0
Mar 16 17:46:17 akideck pkexec[17714]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:17 akideck pkexec[17714]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 2]
Mar 16 17:46:17 akideck pkexec[17733]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:17 akideck pkexec[17733]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-get-als-gain --slot 4]
Mar 16 17:46:17 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 17750, but reception is disabled
Mar 16 17:46:17 akideck pkexec[17752]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:17 akideck pkexec[17752]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-fan-control --enable]
Mar 16 17:46:17 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 16 17:46:17 akideck gpu-trace[805]: 127.0.0.1 - - [16/Mar/2025 17:46:17] "POST / HTTP/1.1" 200 -
Mar 16 17:46:17 akideck steamwebhelper[17624]: i386-linux-gnu-capsule-capture-libs: warning: Dependencies of /usr/lib32/libMangoHud.so not found, ignoring: Missing dependencies: Could not find "libxkbcommon.so.0" in LD_LIBRARY_PATH "/home/deck/.local/share/Steam/ubuntu12_32:/home/deck/.local/share/Steam/ubuntu12_32/panorama:/usr/lib32:/usr/lib/perf:/usr/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
Mar 16 17:46:17 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 16 17:46:17 akideck gpu-trace[805]: 127.0.0.1 - - [16/Mar/2025 17:46:17] "POST / HTTP/1.1" 200 -
Mar 16 17:46:18 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 16 17:46:18 akideck gpu-trace[805]: 127.0.0.1 - - [16/Mar/2025 17:46:18] "POST / HTTP/1.1" 200 -
Mar 16 17:46:18 akideck gpu-trace[805]: INFO - Executing get tracing status command
Mar 16 17:46:18 akideck gpu-trace[805]: 127.0.0.1 - - [16/Mar/2025 17:46:18] "POST / HTTP/1.1" 200 -
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.191] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.191] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 16 17:46:18 akideck steam[17509]: Steam Runtime Launch Service: starting steam-runtime-launcher-service
Mar 16 17:46:18 akideck steam[17509]: Steam Runtime Launch Service: steam-runtime-launcher-service is running pid 17802
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.200] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.200] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.200] [MANGOHUD] [error] [overlay_params.cpp:114] Couldn't create socket pipe at 'mangohud'
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.200] [MANGOHUD] [error] [overlay_params.cpp:115] ERROR: 'Address already in use'
Mar 16 17:46:18 akideck steam[17509]: bus_name=com.steampowered.PressureVessel.LaunchAlongsideSteam
Mar 16 17:46:18 akideck steamwebhelper[17624]: exec ./steamwebhelper -nocrashdialog -lang=en_US -cachedir=/home/deck/.local/share/Steam/config/htmlcache -steampid=17530 -buildid=1741737356 -steamid=0 -logdir=/home/deck/.local/share/Steam/logs -uimode=4 -startcount=0 -gamepadui -steamdeck -steamos3 -steamuniverse=Public -realm=Global -clientui=/home/deck/.local/share/Steam/clientui -steampath=/home/deck/.local/share/Steam/ubuntu12_32/steam -launcher=0 -no-restart-on-ui-mode-change --valve-enable-site-isolation --enable-smooth-scrolling --no-sandbox --password-store=basic --log-file=/home/deck/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --enable-features=PlatformHEVCDecoderSupport --disable-features=SpareRendererForSitePerProcess,DcheckIsFatal,ValveFFmpegAllowLowDelayHEVC
Mar 16 17:46:18 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: Updating mode for xwayland server #0: 1280x800@90
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.352] [MANGOHUD] [error] [overlay_params.cpp:1029] Failed to read presets file: '/home/deck/.config/MangoHud/presets.conf'
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.352] [MANGOHUD] [error] [overlay_params.cpp:647] Unknown option 'nis_steam_sharpness'
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.352] [MANGOHUD] [error] [overlay_params.cpp:114] Couldn't create socket pipe at 'mangohud'
Mar 16 17:46:18 akideck mangoapp[17363]: [2025-03-16 17:46:18.352] [MANGOHUD] [error] [overlay_params.cpp:115] ERROR: 'Address already in use'
Mar 16 17:46:18 akideck gamescope-session[17278]: radv: Updated the per-vertex VRS rate to '0'.
Mar 16 17:46:18 akideck pkexec[17973]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:18 akideck pkexec[17973]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-devkit-mode --enable]
Mar 16 17:46:18 akideck systemd[1]: Reload requested from client PID 17983 ('systemctl') (unit user@1000.service)...
Mar 16 17:46:18 akideck systemd[1]: Reloading...
Mar 16 17:46:18 akideck steam[17509]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/entry:70: error: unexpected identifier 'direction', expected character '}'
Mar 16 17:46:18 akideck steam[17509]: /usr/share/themes/Breeze-Dark/gtk-2.0/widgets/styles:36: error: invalid string constant "combobox_entry", expected valid string constant
Mar 16 17:46:19 akideck systemd[1202]: Reload requested from client PID 18031 ('systemctl') (unit steam-launcher.service)...
Mar 16 17:46:19 akideck systemd[1202]: Reloading...
Mar 16 17:46:19 akideck systemd[1202]: Reloading finished in 293 ms.
Mar 16 17:46:19 akideck systemd[1202]: Expecting device /dev/cec0...
Mar 16 17:46:19 akideck systemd[1]: Reloading finished in 426 ms.
Mar 16 17:46:19 akideck systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Mar 16 17:46:19 akideck systemd[1]: Reload requested from client PID 18134 ('systemctl') (unit user@1000.service)...
Mar 16 17:46:19 akideck systemd[1]: Reloading...
Mar 16 17:46:19 akideck steam[17509]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 17:46:19 akideck steam[17509]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 17:46:19 akideck steam[17509]: [Gamescope WSI] Application info:
Mar 16 17:46:19 akideck steam[17509]:   pApplicationName: hellovr_vulkan
Mar 16 17:46:19 akideck steam[17509]:   applicationVersion: 1
Mar 16 17:46:19 akideck steam[17509]:   pEngineName: (null)
Mar 16 17:46:19 akideck steam[17509]:   engineVersion: 1
Mar 16 17:46:19 akideck steam[17509]:   apiVersion: 4194304
Mar 16 17:46:19 akideck steam[17509]: [Gamescope WSI] Executable name: vulkandriverquery
Mar 16 17:46:19 akideck steam[17509]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 17:46:19 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 16 17:46:19 akideck kernel: input: Microsoft X-Box 360 pad 0 as /devices/virtual/input/input55
Mar 16 17:46:19 akideck systemd[1]: Reloading finished in 397 ms.
Mar 16 17:46:19 akideck systemd[1]: Starting Time & Date Service...
Mar 16 17:46:20 akideck systemd[1]: Started Time & Date Service.
Mar 16 17:46:20 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 18239, but reception is disabled
Mar 16 17:46:20 akideck steam[17509]: ATTENTION: default value of option vk_khr_present_wait overridden by environment.
Mar 16 17:46:20 akideck steam[17509]: ATTENTION: default value of option vk_xwayland_wait_ready overridden by environment.
Mar 16 17:46:20 akideck steam[17509]: [Gamescope WSI] Forcing on VK_EXT_swapchain_maintenance1.
Mar 16 17:46:20 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start timed out.
Mar 16 17:46:20 akideck systemd[1202]: Timed out starting plasma-remotecontrollers.service.
Mar 16 17:46:20 akideck systemd[1202]: plasma-remotecontrollers.service: Job plasma-remotecontrollers.service/start failed with result 'timeout'.
Mar 16 17:46:20 akideck systemd[1202]: Unnecessary job was removed for /dev/cec0.
Mar 16 17:46:20 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 18131, but reception is disabled
Mar 16 17:46:20 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 18131, but reception is disabled
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/01%20Exposing%20Hostile.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/02%20Valve%20Alyx.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/03%20Coetaneous%20Entanglement.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/04%20Construction%20Strider.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/05%20Engage%20Quell%20Inquire.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/06%20Insubordinate%20Relocation.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/07%20City%2017%20Strider.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/08%20Thirty%20Seven%20After%20Six.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/1.%20Entanglement/09%20From%20Here%20to%20There%20in%20Under%20a%20Second.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/10%20Quaranta%20Giorni.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/11%20Xombies.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/12%20Only%20One.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/13%20Matter%20of%20Perspective.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/14%20Severed%20from%20the%20Vortessence.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/2.%20The%20Quarantine%20Zone/15%20Is%20Or%20Will%20Be.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/16%20What%20Did%20it%20Taste%20Like.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/17%20I%20Love%20This%20Gun.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/18%20Extra%20Dimensional%20Darkness.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/19%20Quantum%20Cubicles.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/20%20Infestation%20Control.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/21%20Deployed%20and%20Designated%20to%20Prosecute.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/22%20B3PbIBONACHOCTb.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/23%20Anti-Citizen.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/24%20Tri-Vector%20Pre-Reverberation.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/25%20Harsh%20Industrial%20Train%20Crash.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/26%20The%20Advisors.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/3.%20Is%20Or%20Will%20Be/27%20Prisoner%20Pod.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/28-Charger.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/29-Scanning%20Hostile%20Biodats.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/4.%204%20Super%20Weapon/30-Substation.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/31-Alien%20Flora.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/32-Alien%20Fauna.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/33-Requiem%20Vortessence.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/34-Lightning%20Dog.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/35-Arachnophobia.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/36-Rabid%20Lightning.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/37-Extract.%20Resonate.%20Isolate.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/5.%20The%20Northern%20Star/38-Level-5%20Anti-Civil%20Activities.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/39-Vortessence%20Lux.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/40-Hacking.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/41-Outbreak%20is%20Uncontained.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/6.%20Arms%20Race/42-Processing%20Tripmines.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/43-Xenfestation%20Control.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/44-Sunset%20Vault.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/45-Ear%20Like%20Mozart.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/46-Jeff.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/47-Elevatormuzik.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/48-Trash%20Compactor%20Waltz.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/7.%20Jeff/49-Quantum%20Antlion%20Tunnel.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/50-Cats.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/51-Beasts%20of%20Prey.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: Desktop state changed: desktop: { pos:    0,   0 size: 1280, 800 } primary: { pos:    0,   0 size: 1280, 800 }
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/8.%20Captivity/52-Insects%20and%20Reptiles.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/53-The%20Last%20Substation.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/54-Trans%20Human%20Crossfire.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/55-Let%20Me%20Talk%20to%20Your%20Super-Advisor.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/9.%20Revelations/56-Terin%20%236.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/57-Infestation%20Ambience.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: Caching cursor image for left_ptr, size 256x256, serial 2, cache size = 0
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/58-A%20Gentle%20Docking.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/59-Overload%20Protocol.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/60-Cauterizer.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/61-P1.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/10.%20Breaking%20And%20Entering/62-Gravity%20Perforation%20Detail.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/63-Reality%20Disruption%20Pulse.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: Caching cursor image for left_ptr, size 256x256, serial 2, cache size = 0
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/64-Icosahedron.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/65-Supersymmetry%20Dilation.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/66-Stringularity.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/67-Ekpyrosis.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: CDesktopCapturePipeWire: Opening DRM render node /dev/dri/renderD128
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/68-Alice%20Matter.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/69-Gravity%20Grenade%20Conflict.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/70-Superimposition.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/71-Consequences.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: TagLib: Could not open file /home/deck/.local/share/Steam/steamapps/music/Half-Life%20Alyx%20Soundtrack/FLAC/11.%20Point%20Extraction/72-HIRE.flac
Mar 16 17:46:21 akideck steam[17509]: TagLib: FileRef::tag() - Called without a valid file.
Mar 16 17:46:21 akideck steam[17509]: CDesktopCapturePipeWire: setting stream node path: gamescope
Mar 16 17:46:22 akideck systemd[1202]: Reload requested from client PID 18280 ('systemctl') (unit steam-launcher.service)...
Mar 16 17:46:22 akideck systemd[1202]: Reloading...
Mar 16 17:46:22 akideck pkexec[18300]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:22 akideck pkexec[18300]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/jupiter-initial-firmware-update check]
Mar 16 17:46:22 akideck systemd[1202]: Reloading finished in 417 ms.
Mar 16 17:46:22 akideck systemd[1202]: Starting Accessibility services bus...
Mar 16 17:46:22 akideck systemd[1202]: Started Accessibility services bus.
Mar 16 17:46:23 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 18353, but reception is disabled
Mar 16 17:46:23 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 18358, but reception is disabled
Mar 16 17:46:23 akideck pkexec[18382]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:23 akideck pkexec[18382]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 16 17:46:23 akideck pkexec[18401]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:23 akideck pkexec[18401]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 16 17:46:23 akideck pkexec[18419]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:23 akideck pkexec[18419]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 16 17:46:23 akideck pkexec[18437]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:23 akideck pkexec[18437]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 16 17:46:23 akideck pkexec[18455]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:23 akideck pkexec[18455]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-check-support]
Mar 16 17:46:27 akideck pkexec[18467]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:46:27 akideck pkexec[18467]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-dock-updater --check]
Mar 16 17:46:47 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-83) graph xrun not-triggered (0 suppressed)
Mar 16 17:46:47 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-83) xrun state:0x7f63f452b008 pending:4/6 s:5812931223545 a:5812931765843 f:5812931779283 waiting:542298 process:13440 status:triggered
Mar 16 17:46:47 akideck pipewire[1449]: pw.node: (alsa_loopback_device.alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-85) xrun state:0x7f63f452e008 pending:0/2 s:5812949496456 a:5812931353604 f:5812931381114 waiting:18446744073691408764 process:27510 status:triggered
Mar 16 17:46:53 akideck systemd[1]: systemd-timedated.service: Deactivated successfully.
Mar 16 17:47:20 akideck systemd[1]: Unmounting /efi...
Mar 16 17:47:20 akideck systemd[1]: efi.mount: Deactivated successfully.
Mar 16 17:47:20 akideck systemd[1]: Unmounted /efi.
Mar 16 17:48:18 akideck steam[17509]: [2025-03-16 17:48:18] Background update loop checking for update. . .
Mar 16 17:48:18 akideck steam[17509]: [2025-03-16 17:48:18] Checking for available updates...
Mar 16 17:48:18 akideck steam[17509]: [2025-03-16 17:48:18] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 16 17:48:18 akideck steam[17509]: [2025-03-16 17:48:18] Manifest download: send request
Mar 16 17:48:18 akideck steam[17509]: [2025-03-16 17:48:18] Manifest download: waiting for download to finish
Mar 16 17:48:19 akideck steam[17509]: [2025-03-16 17:48:19] Manifest download: finished
Mar 16 17:48:19 akideck steam[17509]: [2025-03-16 17:48:19] Download skipped: /steam_client_steamdeck_publicbeta_ubuntu12 version 1741737356, installed version 1741737356, existing pending version 0
Mar 16 17:48:19 akideck steam[17509]: [2025-03-16 17:48:19] Nothing to do
Mar 16 17:48:19 akideck pkexec[18717]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:48:19 akideck pkexec[18717]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --supports-duplicate-detection]
Mar 16 17:48:19 akideck pkexec[18728]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:48:19 akideck pkexec[18728]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --enable-duplicate-detection check]
Mar 16 17:48:19 akideck pkexec[18746]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 16 17:48:19 akideck pkexec[18746]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-biosupdate check]
Mar 16 17:48:19 akideck steam[17509]: Checking for BIOS updates
Mar 16 17:48:19 akideck steam[17509]: BIOS version: F7G0112
Mar 16 17:48:19 akideck steam[17509]: Desired version: <none>
Mar 16 17:48:19 akideck steam[17509]: No updates configured for this bios
Mar 16 17:50:58 akideck systemd[1]: flatpak-system-helper.service: Deactivated successfully.
Mar 16 17:50:58 akideck systemd[1]: flatpak-system-helper.service: Consumed 22.955s CPU time, 1.8G memory peak.
Mar 16 18:08:28 akideck systemd-logind[871]: The system will suspend now!
Mar 16 18:08:28 akideck NetworkManager[1062]: <info>  [1742173708.7777] manager: sleep: sleep requested (sleeping: no  enabled: yes)
Mar 16 18:08:28 akideck steam[17509]: method return time=1742173708.777656 sender=:1.7 -> destination=:1.331 serial=939 reply_serial=2
Mar 16 18:08:28 akideck wakehook[1483]: [wakehook] 1742173708.777710: Going to sleep? 1
Mar 16 18:08:28 akideck NetworkManager[1062]: <info>  [1742173708.7778] device (/net/connman/iwd/0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 16 18:08:28 akideck NetworkManager[1062]: <info>  [1742173708.7782] manager: NetworkManager state is now ASLEEP
Mar 16 18:08:28 akideck NetworkManager[1062]: <info>  [1742173708.7785] device (wlan0): state change: activated -> deactivating (reason 'sleeping', managed-type: 'full')
Mar 16 18:08:28 akideck systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 16 18:08:28 akideck systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 16 18:08:28 akideck iwd[1201]: event: state, old: connected, new: disconnecting
Mar 16 18:08:28 akideck kernel: wlan0: deauthenticating from e8:9c:25:49:01:88 by local choice (Reason: 3=DEAUTH_LEAVING)
Mar 16 18:08:29 akideck iwd[1201]: event: state, old: disconnecting, new: disconnected
Mar 16 18:08:29 akideck NetworkManager[1062]: <info>  [1742173709.0305] device (wlan0): new IWD device state is disconnecting
Mar 16 18:08:29 akideck NetworkManager[1062]: <info>  [1742173709.0306] device (wlan0): new IWD device state is disconnected
Mar 16 18:08:29 akideck NetworkManager[1062]: <info>  [1742173709.0307] device (wlan0): state change: deactivating -> disconnected (reason 'sleeping', managed-type: 'full')
Mar 16 18:08:29 akideck avahi-daemon[802]: Withdrawing address record for fe80::ea8d:a6ff:fe77:9a8c on wlan0.
Mar 16 18:08:29 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::ea8d:a6ff:fe77:9a8c.
Mar 16 18:08:29 akideck NetworkManager[1062]: <info>  [1742173709.0313] dhcp4 (wlan0): canceled DHCP transaction
Mar 16 18:08:29 akideck avahi-daemon[802]: Interface wlan0.IPv6 no longer relevant for mDNS.
Mar 16 18:08:29 akideck NetworkManager[1062]: <info>  [1742173709.0313] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Mar 16 18:08:29 akideck NetworkManager[1062]: <info>  [1742173709.0313] dhcp4 (wlan0): state changed no lease
Mar 16 18:08:29 akideck systemd-resolved[556]: wlan0: Bus client reset search domain list.
Mar 16 18:08:29 akideck systemd-resolved[556]: wlan0: Bus client set default route setting: no
Mar 16 18:08:29 akideck systemd-resolved[556]: wlan0: Bus client reset DNS server list.
Mar 16 18:08:29 akideck avahi-daemon[802]: Withdrawing address record for 192.168.0.112 on wlan0.
Mar 16 18:08:29 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Mar 16 18:08:29 akideck avahi-daemon[802]: Interface wlan0.IPv4 no longer relevant for mDNS.
Mar 16 18:08:29 akideck NetworkManager[1062]: <info>  [1742173709.1217] device (wlan0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
Mar 16 18:08:29 akideck systemd[1]: Reached target Sleep.
Mar 16 18:08:29 akideck systemd[1]: Starting System Suspend...
Mar 16 18:08:29 akideck systemd[1]: session-5.scope: Unit now frozen-by-parent.
Mar 16 18:08:29 akideck systemd[1]: user@1000.service: Unit now frozen-by-parent.
Mar 16 18:08:29 akideck systemd[1]: session-7.scope: Unit now frozen-by-parent.
Mar 16 18:08:29 akideck systemd[1]: user-1000.slice: Unit now frozen-by-parent.
Mar 16 18:08:29 akideck systemd[1]: user.slice: Unit now frozen.
Mar 16 18:08:29 akideck systemd-sleep[18880]: Successfully froze unit 'user.slice'.
Mar 16 18:08:29 akideck systemd-sleep[18880]: Performing sleep operation 'suspend'...
Mar 16 18:08:29 akideck kernel: PM: suspend entry (deep)
Mar 16 18:08:29 akideck kernel: Filesystems sync: 0.008 seconds
Mar 17 17:06:21 akideck kernel: Freezing user space processes
Mar 17 17:06:21 akideck kernel: Freezing user space processes completed (elapsed 0.001 seconds)
Mar 17 17:06:21 akideck kernel: OOM killer disabled.
Mar 17 17:06:21 akideck kernel: Freezing remaining freezable tasks
Mar 17 17:06:21 akideck kernel: Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
Mar 17 17:06:21 akideck kernel: printk: Suspending console(s) (use no_console_suspend to debug)
Mar 17 17:06:21 akideck kernel: ACPI: EC: interrupt blocked
Mar 17 17:06:21 akideck kernel: ACPI: PM: Preparing to enter system sleep state S3
Mar 17 17:06:21 akideck kernel: ACPI: EC: event blocked
Mar 17 17:06:21 akideck kernel: ACPI: EC: EC stopped
Mar 17 17:06:21 akideck kernel: ACPI: PM: Saving platform NVS memory
Mar 17 17:06:21 akideck kernel: Disabling non-boot CPUs ...
Mar 17 17:06:21 akideck kernel: smpboot: CPU 7 is now offline
Mar 17 17:06:21 akideck kernel: smpboot: CPU 6 is now offline
Mar 17 17:06:21 akideck kernel: smpboot: CPU 5 is now offline
Mar 17 17:06:21 akideck kernel: smpboot: CPU 4 is now offline
Mar 17 17:06:21 akideck kernel: smpboot: CPU 3 is now offline
Mar 17 17:06:21 akideck kernel: smpboot: CPU 2 is now offline
Mar 17 17:06:21 akideck kernel: smpboot: CPU 1 is now offline
Mar 17 17:06:21 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP off
Mar 17 17:06:21 akideck kernel: ACPI: PM: Low-level resume complete
Mar 17 17:06:21 akideck kernel: ACPI: EC: EC started
Mar 17 17:06:21 akideck kernel: ACPI: PM: Restoring platform NVS memory
Mar 17 17:06:21 akideck kernel: LVT offset 0 assigned for vector 0x400
Mar 17 17:06:21 akideck kernel: Enabling non-boot CPUs ...
Mar 17 17:06:21 akideck kernel: smpboot: Booting Node 0 Processor 1 APIC 0x1
Mar 17 17:06:21 akideck kernel: ACPI: \_SB_.PLTF.C001: Found 3 idle states
Mar 17 17:06:21 akideck kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
Mar 17 17:06:21 akideck kernel: CPU1 is up
Mar 17 17:06:21 akideck kernel: smpboot: Booting Node 0 Processor 2 APIC 0x2
Mar 17 17:06:21 akideck kernel: ACPI: \_SB_.PLTF.C002: Found 3 idle states
Mar 17 17:06:21 akideck kernel: CPU2 is up
Mar 17 17:06:21 akideck kernel: smpboot: Booting Node 0 Processor 3 APIC 0x3
Mar 17 17:06:21 akideck kernel: ACPI: \_SB_.PLTF.C003: Found 3 idle states
Mar 17 17:06:21 akideck kernel: CPU3 is up
Mar 17 17:06:21 akideck kernel: smpboot: Booting Node 0 Processor 4 APIC 0x4
Mar 17 17:06:21 akideck kernel: ACPI: \_SB_.PLTF.C004: Found 3 idle states
Mar 17 17:06:21 akideck kernel: CPU4 is up
Mar 17 17:06:21 akideck kernel: smpboot: Booting Node 0 Processor 5 APIC 0x5
Mar 17 17:06:21 akideck kernel: ACPI: \_SB_.PLTF.C005: Found 3 idle states
Mar 17 17:06:21 akideck kernel: CPU5 is up
Mar 17 17:06:21 akideck kernel: smpboot: Booting Node 0 Processor 6 APIC 0x6
Mar 17 17:06:21 akideck kernel: ACPI: \_SB_.PLTF.C006: Found 3 idle states
Mar 17 17:06:21 akideck kernel: CPU6 is up
Mar 17 17:06:21 akideck kernel: smpboot: Booting Node 0 Processor 7 APIC 0x7
Mar 17 17:06:21 akideck kernel: ACPI: \_SB_.PLTF.C007: Found 3 idle states
Mar 17 17:06:21 akideck kernel: CPU7 is up
Mar 17 17:06:21 akideck kernel: ACPI: PM: Waking up from system sleep state S3
Mar 17 17:06:21 akideck kernel: ACPI: EC: interrupt unblocked
Mar 17 17:06:21 akideck kernel: mhi mhi0: Requested to power ON
Mar 17 17:06:21 akideck kernel: mhi mhi0: Power on setup success
Mar 17 17:06:21 akideck kernel: mhi mhi0: Wait for device to enter SBL or Mission mode
Mar 17 17:06:21 akideck kernel: ACPI: EC: event unblocked
Mar 17 17:06:21 akideck kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000F43FC00000).
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: PSP is resuming...
Mar 17 17:06:21 akideck kernel: max98388 i2c-ADS8388:00: Reset completed (retry:0)
Mar 17 17:06:21 akideck kernel: max98388 i2c-ADS8388:01: Reset completed (retry:0)
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: reserve 0xa00000 from 0xf43e000000 for PSP TMR
Mar 17 17:06:21 akideck kernel: ath11k_pci 0000:03:00.0: chip_id 0x12 chip_family 0xb board_id 0x309 soc_id 0x400c1211
Mar 17 17:06:21 akideck kernel: ath11k_pci 0000:03:00.0: fw_version 0x110e7fff fw_build_timestamp 2024-05-28 15:10 fw_build_id WLAN.HSP.1.1-03926.13-QCAHSPSWPL_V2_SILICONZ_CE-2.52297.6
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resuming...
Mar 17 17:06:21 akideck kernel: nvme nvme0: 8/0/0 default/read/poll queues
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: dpm has been disabled
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resumed successfully!
Mar 17 17:06:21 akideck kernel: [drm] DMUB hardware initialized: version=0x0300000A
Mar 17 17:06:21 akideck kernel: usb 3-3: reset full-speed USB device number 2 using xhci_hcd
Mar 17 17:06:21 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 17 17:06:21 akideck kernel: ath11k_pci 0000:03:00.0: Unexpected Regulatory event for this wiphy
Mar 17 17:06:21 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 17 17:06:21 akideck kernel: [drm] kiq ring mec 2 pipe 1 q 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
Mar 17 17:06:21 akideck kernel: amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Mar 17 17:06:21 akideck kernel: OOM killer enabled.
Mar 17 17:06:21 akideck kernel: Restarting tasks ... done.
Mar 17 17:06:21 akideck kernel: random: crng reseeded on system resumption
Mar 17 17:06:21 akideck kernel: PM: suspend exit
Mar 17 17:06:21 akideck systemd-resolved[556]: Clock change detected. Flushing caches.
Mar 17 17:06:21 akideck bluetoothd[803]: Controller resume with wake event 0x0
Mar 17 17:06:21 akideck systemd-resolved[556]: Switching to fallback DNS server 1.1.1.1#cloudflare-dns.com.
Mar 17 17:06:21 akideck systemd-sleep[18880]: System returned from sleep operation 'suspend'.
Mar 17 17:06:21 akideck systemd[1]: Starting Update manpage database...
Mar 17 17:06:21 akideck systemd[1]: Started Verify integrity of password and group files.
Mar 17 17:06:21 akideck systemd[1]: session-5.scope: Unit now thawed.
Mar 17 17:06:21 akideck systemd[1]: user.slice: Unit now thawed.
Mar 17 17:06:21 akideck systemd[1]: user-1000.slice: Unit now thawed.
Mar 17 17:06:21 akideck systemd[1]: session-7.scope: Unit now thawed.
Mar 17 17:06:21 akideck systemd[1]: user@1000.service: Unit now thawed.
Mar 17 17:06:21 akideck systemd-sleep[18880]: Successfully thawed unit 'user.slice'.
Mar 17 17:06:21 akideck systemd[1]: systemd-suspend.service: Deactivated successfully.
Mar 17 17:06:21 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: Got change event for KMS device
Mar 17 17:06:21 akideck gamescope-session[17278]: [gamescope] [Info]  drm: Connector eDP-1 -> VLV - ANX7530 U
Mar 17 17:06:21 akideck gamescope-session[17278]: [gamescope] [Info]  drm: Got known display: steamdeck_oled_boe (Steam Deck OLED (BOE))
Mar 17 17:06:21 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: EDID with colorimetry detected. Using it
Mar 17 17:06:21 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: r 0.684570 0.314453
Mar 17 17:06:21 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: g 0.245117 0.714844
Mar 17 17:06:21 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: b 0.137695 0.049805
Mar 17 17:06:21 akideck gamescope-session[17278]: [gamescope] [Info]  drm: [colorimetry]: w 0.312500 0.329102
Mar 17 17:06:21 akideck fwupd[13341]: 00:06:21.698 GLib                 g_ptr_array_set_size: assertion 'rarray' failed
Mar 17 17:06:21 akideck gamescope-session[18931]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 17 17:06:21 akideck gamescope-session[18931]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 17 17:06:21 akideck gamescope-session[18931]: >                   X11 cannot support keycodes above 255.
Mar 17 17:06:21 akideck gamescope-session[18932]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 17 17:06:21 akideck gamescope-session[18932]: > Warning:          Unsupported maximum keycode 708, clipping.
Mar 17 17:06:21 akideck gamescope-session[18932]: >                   X11 cannot support keycodes above 255.
Mar 17 17:06:21 akideck gamescope-session[18931]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 17 17:06:21 akideck gamescope-session[18931]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 17 17:06:21 akideck gamescope-session[18932]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 17 17:06:21 akideck gamescope-session[18932]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 17 17:06:21 akideck gamescope-session[18931]: Errors from xkbcomp are not fatal to the X server
Mar 17 17:06:21 akideck gamescope-session[18932]: Errors from xkbcomp are not fatal to the X server
Mar 17 17:06:21 akideck systemd[1]: Finished System Suspend.
Mar 17 17:06:21 akideck systemd[1]: Stopped target Sleep.
Mar 17 17:06:21 akideck systemd[1]: Reached target Suspend.
Mar 17 17:06:21 akideck systemd[1]: Stopped target Suspend.
Mar 17 17:06:21 akideck systemd-logind[871]: Operation 'suspend' finished.
Mar 17 17:06:21 akideck systemd-resolved[556]: Closing all remaining TCP connections.
Mar 17 17:06:21 akideck wakehook[1483]: [wakehook] 1742256381.723151: Going to sleep? 0
Mar 17 17:06:21 akideck systemd-resolved[556]: Resetting learnt feature levels on all servers.
Mar 17 17:06:21 akideck wakehook[1483]: [wakehook] 1742256381.723350: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (1/5)
Mar 17 17:06:21 akideck NetworkManager[1062]: <info>  [1742256381.7235] manager: sleep: wake requested (sleeping: yes  enabled: yes)
Mar 17 17:06:21 akideck NetworkManager[1062]: <info>  [1742256381.7236] device (/net/connman/iwd/0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 17 17:06:21 akideck NetworkManager[1062]: <info>  [1742256381.7240] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Mar 17 17:06:21 akideck gamescope-session[18934]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 17 17:06:21 akideck gamescope-session[18933]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Mar 17 17:06:21 akideck gamescope-session[18933]: >
Mar 17 17:06:21 akideck gamescope-session[18934]: >
Mar 17 17:06:21 akideck gamescope-session[18933]: Warning:
Mar 17 17:06:21 akideck gamescope-session[18934]: Warning:
Mar 17 17:06:21 akideck gamescope-session[18933]: Unsupported maximum keycode 708, clipping.
Mar 17 17:06:21 akideck gamescope-session[18934]: Unsupported maximum keycode 708, clipping.
Mar 17 17:06:21 akideck gamescope-session[18933]: >
Mar 17 17:06:21 akideck gamescope-session[18934]: >
Mar 17 17:06:21 akideck gamescope-session[18933]:                   
Mar 17 17:06:21 akideck gamescope-session[18934]:                   
Mar 17 17:06:21 akideck gamescope-session[18933]: X11 cannot support keycodes above 255.
Mar 17 17:06:21 akideck gamescope-session[18934]: X11 cannot support keycodes above 255.
Mar 17 17:06:21 akideck gamescope-session[18933]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 17 17:06:21 akideck gamescope-session[18933]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 17 17:06:21 akideck gamescope-session[18934]: > Warning:          Could not resolve keysym XF86KbdInputAssistPrevgrou
Mar 17 17:06:21 akideck gamescope-session[18934]: > Warning:          Could not resolve keysym XF86KbdInputAssistNextgrou
Mar 17 17:06:21 akideck gamescope-session[18933]: Errors from xkbcomp are not fatal to the X server
Mar 17 17:06:21 akideck gamescope-session[18934]: Errors from xkbcomp are not fatal to the X server
Mar 17 17:06:21 akideck systemd[1]: mandoc.service: Deactivated successfully.
Mar 17 17:06:21 akideck systemd[1]: Finished Update manpage database.
Mar 17 17:06:21 akideck steam[17509]: [2025-03-17 17:06:21] Background update loop checking for update. . .
Mar 17 17:06:21 akideck steam[17509]: [2025-03-17 17:06:21] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 17 17:06:21 akideck steam[17509]: [2025-03-17 17:06:21] Manifest download: send request
Mar 17 17:06:21 akideck iwd[1201]: event: state, old: disconnected, new: autoconnect_quick
Mar 17 17:06:21 akideck NetworkManager[1062]: <info>  [1742256381.7706] manager: NetworkManager state is now DISCONNECTED
Mar 17 17:06:21 akideck NetworkManager[1062]: <info>  [1742256381.7709] device (/net/connman/iwd/0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
Mar 17 17:06:21 akideck systemd[1]: shadow.service: Deactivated successfully.
Mar 17 17:06:21 akideck iwd[1201]: Could not register frame watch type 00d0: -114
Mar 17 17:06:21 akideck NetworkManager[1062]: <info>  [1742256381.8127] device (wlan0): new IWD device state is disconnected
Mar 17 17:06:21 akideck NetworkManager[1062]: <info>  [1742256381.8128] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', managed-type: 'full')
Mar 17 17:06:21 akideck pkexec[18940]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 17 17:06:21 akideck pkexec[18940]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-trim-devices]
Mar 17 17:06:21 akideck steam[17509]: [2025-03-17 17:06:21] Manifest download: waiting for download to finish
Mar 17 17:06:21 akideck steam[17509]: [2025-03-17 17:06:21] Manifest download: finished
Mar 17 17:06:21 akideck steam[17509]: [2025-03-17 17:06:21] Download failed: http error 0 (client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12)
Mar 17 17:06:21 akideck steam[17509]: [2025-03-17 17:06:21] Downloading manifest: https://client-update.akamai.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Manifest download: send request
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Manifest download: waiting for download to finish
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Manifest download: finished
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Download failed: http error 0 (client-update.akamai.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12)
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Downloading manifest: https://client-update.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Manifest download: send request
Mar 17 17:06:22 akideck systemd[1]: Starting Time & Date Service...
Mar 17 17:06:22 akideck iwd[1201]: event: connect-info, ssid: The New Lunar Republic, bss: e8:9c:25:49:01:88, signal: -21, load: 31/255
Mar 17 17:06:22 akideck iwd[1201]: event: state, old: autoconnect_quick, new: connecting (auto)
Mar 17 17:06:22 akideck systemd[1]: Started Time & Date Service.
Mar 17 17:06:22 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 18968, but reception is disabled
Mar 17 17:06:22 akideck systemd[1202]: steam-launcher.service: Got notification message from PID 18973, but reception is disabled
Mar 17 17:06:22 akideck kernel: wlan0: authenticate with e8:9c:25:49:01:88 (local address=e8:8d:a6:77:9a:8c)
Mar 17 17:06:22 akideck kernel: wlan0: send auth to e8:9c:25:49:01:88 (try 1/3)
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.4424] device (wlan0): new IWD device state is connecting
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.4430] device (wlan0): Activation: starting connection 'The New Lunar Republic' (bdd53fc7-001f-41f5-8338-3dcbce226f2c)
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.4438] device (wlan0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.4440] manager: NetworkManager state is now CONNECTING
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.4441] device (wlan0): state change: prepare -> config (reason 'none', managed-type: 'full')
Mar 17 17:06:22 akideck kernel: wlan0: authenticate with e8:9c:25:49:01:88 (local address=e8:8d:a6:77:9a:8c)
Mar 17 17:06:22 akideck kernel: wlan0: send auth to e8:9c:25:49:01:88 (try 1/3)
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Manifest download: waiting for download to finish
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Manifest download: finished
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Download failed: http error 0 (client-update.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12)
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] DownloadManifest - exhausted list of download hosts
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] failed to load manifest from buffer.
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Failed to load manifest
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Error: Download failed: http error 0
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Saving metrics to disk (/home/deck/.local/share/Steam/package/steam_client_metrics.bin)
Mar 17 17:06:22 akideck kernel: wlan0: authenticated
Mar 17 17:06:22 akideck kernel: wlan0: associate with e8:9c:25:49:01:88 (try 1/3)
Mar 17 17:06:22 akideck kernel: wlan0: RX AssocResp from e8:9c:25:49:01:88 (capab=0x1011 status=0 aid=23)
Mar 17 17:06:22 akideck kernel: ath11k_pci 0000:03:00.0: mac0-5 cap 9-0-0-8a-40-0
Mar 17 17:06:22 akideck kernel: ath11k_pci 0000:03:00.0: phy0-5 cap c-33-c-80-fd-9
Mar 17 17:06:22 akideck kernel: ath11k_pci 0000:03:00.0: phy6-10 cap 80-8-0-0-0
Mar 17 17:06:22 akideck kernel: ath11k_pci 0000:03:00.0: WMI_VDEV_PARAM_SET_HEMU_MODE 3 0x35
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Error: Failed to determine download location for universe 1
Mar 17 17:06:22 akideck kernel: wlan0: associated
Mar 17 17:06:22 akideck kernel: wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by e8:9c:25:49:01:88
Mar 17 17:06:22 akideck pkexec[18980]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 17 17:06:22 akideck pkexec[18980]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --enable-duplicate-detection check]
Mar 17 17:06:22 akideck iwd[1201]: event: state, old: connecting (auto), new: connected
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.5983] device (wlan0): new IWD device state is connected
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.6094] device (wlan0): state change: config -> ip-config (reason 'none', managed-type: 'full')
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.6106] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.6217] dhcp4 (wlan0): state changed new lease, address=192.168.0.112, acd pending
Mar 17 17:06:22 akideck wakehook[1483]: [wakehook] 1742256382.723618: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (2/5)
Mar 17 17:06:22 akideck atomupd-daemon[18996]: WARNING:client.py:780: Unable to get JSON from server: <urlopen error [Errno -3] Temporary failure in name resolution>
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.8130] dhcp4 (wlan0): state changed new lease, address=192.168.0.112
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.8133] policy: set 'The New Lunar Republic' (wlan0) as default for IPv4 routing and DNS
Mar 17 17:06:22 akideck systemd-resolved[556]: wlan0: Bus client set search domain list to: lunarrepublic
Mar 17 17:06:22 akideck systemd-resolved[556]: wlan0: Bus client set default route setting: yes
Mar 17 17:06:22 akideck systemd-resolved[556]: wlan0: Bus client set DNS server list to: 192.168.0.1
Mar 17 17:06:22 akideck pkexec[18998]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 17 17:06:22 akideck pkexec[18998]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-biosupdate check]
Mar 17 17:06:22 akideck avahi-daemon[802]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Mar 17 17:06:22 akideck avahi-daemon[802]: New relevant interface wlan0.IPv4 for mDNS.
Mar 17 17:06:22 akideck avahi-daemon[802]: Registering new address record for 192.168.0.112 on wlan0.IPv4.
Mar 17 17:06:22 akideck steam[17509]: Checking for BIOS updates
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.8407] device (wlan0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.8419] device (wlan0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.8421] device (wlan0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.8424] manager: NetworkManager state is now CONNECTED_SITE
Mar 17 17:06:22 akideck NetworkManager[1062]: <info>  [1742256382.8426] device (wlan0): Activation: successful, device activated.
Mar 17 17:06:22 akideck steam[17509]: BIOS version: F7G0112
Mar 17 17:06:22 akideck steam[17509]: Desired version: <none>
Mar 17 17:06:22 akideck steam[17509]: No updates configured for this bios
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Error: Failed to determine download location for universe 1
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Background update loop checking for update. . .
Mar 17 17:06:22 akideck steam[17509]: [2025-03-17 17:06:22] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12
Mar 17 17:06:23 akideck steam[17509]: [2025-03-17 17:06:23] Manifest download: send request
Mar 17 17:06:23 akideck steam[17509]: [2025-03-17 17:06:23] Manifest download: waiting for download to finish
Mar 17 17:06:23 akideck NetworkManager[1062]: <info>  [1742256383.2158] manager: NetworkManager state is now CONNECTED_GLOBAL
Mar 17 17:06:23 akideck wakehook[1483]: [wakehook] 1742256383.723833: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (3/5)
Mar 17 17:06:23 akideck avahi-daemon[802]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::ea8d:a6ff:fe77:9a8c.
Mar 17 17:06:23 akideck avahi-daemon[802]: New relevant interface wlan0.IPv6 for mDNS.
Mar 17 17:06:23 akideck avahi-daemon[802]: Registering new address record for fe80::ea8d:a6ff:fe77:9a8c on wlan0.*.
Mar 17 17:06:24 akideck steam[17509]: [2025-03-17 17:06:24] Manifest download: finished
Mar 17 17:06:24 akideck steam[17509]: [2025-03-17 17:06:24] Download skipped by HTTP 304 Not Modified
Mar 17 17:06:24 akideck steam[17509]: [2025-03-17 17:06:24] Nothing to do
Mar 17 17:06:24 akideck wakehook[1483]: [wakehook] 1742256384.724081: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (4/5)
Mar 17 17:06:25 akideck wakehook[1483]: [wakehook] 1742256385.724305: Call org.kde.plasma.remotecontrollers.CEC.powerOnDevices timed out, trying again (5/5)
Mar 17 17:06:26 akideck wakehook[1483]: [wakehook] 1742256386.724399: Failed to call org.kde.plasma.remotecontrollers.CEC.powerOnDevices: -113 No route to host
Mar 17 17:06:28 akideck systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Mar 17 17:06:40 akideck pkexec[20148]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 17 17:06:40 akideck pkexec[20148]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-select-branch preview]
Mar 17 17:06:41 akideck steam[17509]: [2025-03-17 17:06:41] Background update loop checking for update. . .
Mar 17 17:06:41 akideck steam[17509]: [2025-03-17 17:06:41] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_steamdeck_publicbeta_ubuntu12?t=4151855275
Mar 17 17:06:41 akideck steam[17509]: [2025-03-17 17:06:41] Manifest download: send request
Mar 17 17:06:41 akideck steam[17509]: [2025-03-17 17:06:41] Manifest download: waiting for download to finish
Mar 17 17:06:41 akideck steam[17509]: [2025-03-17 17:06:41] Manifest download: finished
Mar 17 17:06:41 akideck steam[17509]: [2025-03-17 17:06:41] Download skipped by HTTP 304 Not Modified
Mar 17 17:06:41 akideck steam[17509]: [2025-03-17 17:06:41] Nothing to do
Mar 17 17:06:41 akideck pkexec[20178]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 17 17:06:41 akideck pkexec[20178]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --enable-duplicate-detection check]
Mar 17 17:06:42 akideck pkexec[20196]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 17 17:06:42 akideck pkexec[20196]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/jupiter-biosupdate check]
Mar 17 17:06:42 akideck steam[17509]: Checking for BIOS updates
Mar 17 17:06:42 akideck steam[17509]: BIOS version: F7G0112
Mar 17 17:06:42 akideck steam[17509]: Desired version: <none>
Mar 17 17:06:42 akideck steam[17509]: No updates configured for this bios
Mar 17 17:06:52 akideck systemd[1]: systemd-timedated.service: Deactivated successfully.
Mar 17 17:06:57 akideck pkexec[20243]: pam_unix(polkit-1:session): session opened for user root(uid=0) by deck(uid=1000)
Mar 17 17:06:57 akideck pkexec[20243]: deck: Executing command [USER=root] [TTY=unknown] [CWD=/home/deck/.local/share/Steam] [COMMAND=/usr/bin/steamos-polkit-helpers/steamos-update --enable-duplicate-detection]
Mar 17 17:06:58 akideck systemctl[20262]: Environment variable $http_proxy not set, ignoring.
Mar 17 17:06:58 akideck systemctl[20262]: Environment variable $https_proxy not set, ignoring.
Mar 17 17:06:58 akideck systemd[1]: Starting RAUC Update Service...
Mar 17 17:06:58 akideck systemd[1]: esp.automount: Got automount request for /esp, triggered by 20266 (steamos-bootcon)
Mar 17 17:06:58 akideck systemd[1]: Mounting /esp...
Mar 17 17:06:58 akideck systemd[1]: Mounted /esp.
Mar 17 17:06:58 akideck systemd[1]: efi.automount: Got automount request for /efi, triggered by 20266 (steamos-bootcon)
Mar 17 17:06:58 akideck systemd[1]: Mounting /efi...
Mar 17 17:06:58 akideck systemd[1]: Mounted /efi.
Mar 17 17:06:58 akideck rauc[20264]: No data directory or status file set, falling back to per-slot status.
                                     Consider setting 'data-directory=<path>' or 'statusfile=<path>/per-slot' explicitly.
Mar 17 17:06:58 akideck rauc[20264]: Using per-slot statusfile. System status information not supported!
Mar 17 17:06:58 akideck rauc[20264]: Failed to resolve realpath for '/dev/disk/by-partsets/dev/rootfs'
Mar 17 17:06:58 akideck rauc[20264]: Failed to resolve realpath for '/dev/disk/by-partsets/A/verity'
Mar 17 17:06:58 akideck rauc[20264]: Service started
Mar 17 17:06:58 akideck systemd[1]: Started RAUC Update Service.
Mar 17 17:06:58 akideck rauc-override.sh[20264]: input bundle: https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb
Mar 17 17:06:58 akideck rauc[20264]: Active slot bootname: A
Mar 17 17:06:58 akideck rauc[20264]: installing https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb: started
Mar 17 17:06:58 akideck rauc[20264]: Installation 4683ea5e started
Mar 17 17:06:58 akideck rauc[20264]: installing https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb: Checking and mounting bundle...
Mar 17 17:06:58 akideck rauc[20264]: Remote URI detected, downloading bundle to /tmp/rauc-BX5C32/download.raucb...
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * Couldn't find host steamdeck-images.steamos.cloud in the .netrc file; using defaults
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * Host steamdeck-images.steamos.cloud:443 was resolved.
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * IPv6: 2600:1409:9800:28::1729:4db, 2600:1409:9800:28::1729:4d1
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * IPv4: 23.53.122.147, 23.53.122.144, 23.53.122.137
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *   Trying [2600:1409:9800:28::1729:4db]:443...
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * Immediate connect fail for 2600:1409:9800:28::1729:4db: Network is unreachable
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *   Trying [2600:1409:9800:28::1729:4d1]:443...
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * Immediate connect fail for 2600:1409:9800:28::1729:4d1: Network is unreachable
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *   Trying 23.53.122.147:443...
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * ALPN: curl offers h2,http/1.1
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *  CAfile: /etc/ssl/certs/ca-certificates.crt
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *  CApath: none
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 / x25519 / RSASSA-PSS
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * ALPN: server accepted http/1.1
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * Server certificate:
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *  subject: CN=steamdeck-images.steamos.cloud
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *  start date: Mar 17 17:45:24 2025 GMT
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *  expire date: Jun 15 17:45:23 2025 GMT
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *  subjectAltName: host "steamdeck-images.steamos.cloud" matched cert's "steamdeck-images.steamos.cloud"
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *  issuer: C=US; O=Let's Encrypt; CN=R11
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *  SSL certificate verify ok.
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *   Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *   Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption
Mar 17 17:06:58 akideck rauc-override.sh[20264]: *   Certificate level 2: Public key type RSA (4096/152 Bits/secBits), signed using sha256WithRSAEncryption
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * Connected to steamdeck-images.steamos.cloud (23.53.122.147) port 443
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * using HTTP/1.x
Mar 17 17:06:58 akideck rauc-override.sh[20264]: > GET /steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb HTTP/1.1
Mar 17 17:06:58 akideck rauc-override.sh[20264]: Host: steamdeck-images.steamos.cloud
Mar 17 17:06:58 akideck rauc-override.sh[20264]: Accept: */*
Mar 17 17:06:58 akideck rauc-override.sh[20264]: Accept-Encoding: deflate, gzip, br, zstd
Mar 17 17:06:58 akideck rauc-override.sh[20264]: 
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * Request completely sent off
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < HTTP/1.1 200 OK
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < Server: nginx/1.22.1
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < Content-Type: application/octet-stream
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < Content-Length: 1943765
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < Last-Modified: Mon, 17 Mar 2025 23:27:54 GMT
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < ETag: "67d8affa-1da8d5"
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < Accept-Ranges: bytes
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < Cache-Control: max-age=315358723
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < Expires: Thu, 15 Mar 2035 23:45:40 GMT
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < Date: Tue, 18 Mar 2025 00:06:57 GMT
Mar 17 17:06:58 akideck rauc-override.sh[20264]: < Connection: keep-alive
Mar 17 17:06:58 akideck rauc-override.sh[20264]: <
Mar 17 17:06:58 akideck rauc-override.sh[20264]: * Connection #0 to host steamdeck-images.steamos.cloud left intact
Mar 17 17:06:58 akideck rauc[20264]: Reading bundle: /tmp/rauc-BX5C32/download.raucb
Mar 17 17:06:58 akideck rauc[20264]: Verifying bundle signature... 
Mar 17 17:06:58 akideck rauc[20264]: Verified detached signature by 'C = US, ST = Washington, L = Bellevue, O = Valve Corporation, OU = SteamOS, CN = Pierre-Loup A. Griffais, emailAddress = pgriffais@xxxxxxxxxxxxxxxxx'
Mar 17 17:06:58 akideck rauc[20264]: Mounting bundle '/tmp/rauc-BX5C32/download.raucb' to '/run/rauc/bundle'
Mar 17 17:06:58 akideck kernel: loop0: detected capacity change from 0 to 3796
Mar 17 17:06:59 akideck kernel: loop0: detected capacity change from 3796 to 3792
Mar 17 17:06:59 akideck rauc[20264]: Configured loop device '/dev/loop0' for 1941504 bytes
Mar 17 17:06:59 akideck kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Mar 17 17:06:59 akideck rauc[20264]: Starting pre install handler: /usr/lib/rauc/pre-install.sh
Mar 17 17:06:59 akideck rauc-override.sh[20264]: # Current image rootfs UUID: 85554fab-77fa-4f7b-b49e-d978fff9151b
Mar 17 17:06:59 akideck rauc-override.sh[20264]: # Target image rootfs UUID: 485ed14d-0021-4f33-93fd-d3a2028f7181
Mar 17 17:06:59 akideck systemd[1]: archlinux-keyring-wkd-sync.timer: Deactivated successfully.
Mar 17 17:06:59 akideck systemd[1]: Stopped Refresh existing PGP keys of archlinux-keyring regularly.
Mar 17 17:06:59 akideck systemd[1]: mandoc.timer: Deactivated successfully.
Mar 17 17:06:59 akideck systemd[1]: Stopped Daily manpage database update.
Mar 17 17:06:59 akideck systemd[1]: shadow.timer: Deactivated successfully.
Mar 17 17:06:59 akideck systemd[1]: Stopped Daily verification of password and group files.
Mar 17 17:06:59 akideck systemd[1]: systemd-tmpfiles-clean.timer: Deactivated successfully.
Mar 17 17:06:59 akideck systemd[1]: Stopped Daily Cleanup of Temporary Directories.
Mar 17 17:06:59 akideck rauc[20264]: Checking image type for slot type: raw
Mar 17 17:06:59 akideck rauc[20264]: Image detected as type: *.img.caibx
Mar 17 17:06:59 akideck rauc[20264]: Marking target slot rootfs.1 as non-bootable...
Mar 17 17:06:59 akideck rauc[20264]: Marked slot rootfs.1 as bad
Mar 17 17:06:59 akideck rauc[20264]: installing https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb: Updating slots...
Mar 17 17:06:59 akideck rauc[20264]: installing https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb: Checking slot rootfs.1
Mar 17 17:06:59 akideck rauc[20264]: Updating slot rootfs.1
Mar 17 17:06:59 akideck rauc[20264]: installing https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb: Updating slot rootfs.1
Mar 17 17:06:59 akideck rauc[20264]: Updating /dev/disk/by-partsets/B/rootfs with /run/rauc/bundle/rootfs.img.caibx
Mar 17 17:06:59 akideck rauc[20264]: Extracting /run/rauc/bundle/rootfs.img.caibx to /dev/disk/by-partsets/B/rootfs
Mar 17 17:06:59 akideck rauc-override.sh[20315]: Attempt 1: Validating    0.00%
Mar 17 17:06:59 akideck rauc-override.sh[20315]: Attempt 1: Validating   10.76% 00m04s
Mar 17 17:07:00 akideck rauc-override.sh[20315]: Attempt 1: Validating   22.83% 00m03s
Mar 17 17:07:00 akideck rauc-override.sh[20315]: Attempt 1: Validating   35.58% 00m02s
Mar 17 17:07:01 akideck rauc-override.sh[20315]: Attempt 1: Validating   49.77% 00m02s
Mar 17 17:07:01 akideck rauc-override.sh[20315]: Attempt 1: Validating   61.18% 00m01s
Mar 17 17:07:02 akideck rauc-override.sh[20315]: Attempt 1: Validating   71.00% 00m01s
Mar 17 17:07:02 akideck rauc-override.sh[20315]: Attempt 1: Validating   82.10%
Mar 17 17:07:03 akideck rauc-override.sh[20315]: Attempt 1: Validating   93.72%
Mar 17 17:07:03 akideck rauc-override.sh[20315]: Attempt 1: Validating  100.00% 4s
Mar 17 17:07:03 akideck rauc-override.sh[20315]: Attempt 1: Assembling    0.00%
Mar 17 17:07:04 akideck rauc-override.sh[20315]: Attempt 1: Assembling    0.91% 00m54s
Mar 17 17:07:04 akideck rauc-override.sh[20315]: Attempt 1: Assembling    1.49% 01m05s
Mar 17 17:07:05 akideck rauc-override.sh[20315]: Attempt 1: Assembling    2.09% 01m10s
Mar 17 17:07:05 akideck rauc-override.sh[20315]: Attempt 1: Assembling    2.68% 01m12s
Mar 17 17:07:06 akideck rauc-override.sh[20315]: Attempt 1: Assembling    3.27% 01m14s
Mar 17 17:07:06 akideck rauc-override.sh[20315]: Attempt 1: Assembling    3.88% 01m14s
Mar 17 17:07:07 akideck rauc-override.sh[20315]: Attempt 1: Assembling    4.12% 01m21s
Mar 17 17:07:07 akideck rauc-override.sh[20315]: Attempt 1: Assembling    4.16% 01m32s
Mar 17 17:07:08 akideck rauc-override.sh[20315]: Attempt 1: Assembling    4.22% 01m42s
Mar 17 17:07:08 akideck rauc-override.sh[20315]: Attempt 1: Assembling    4.25% 01m52s
Mar 17 17:07:09 akideck rauc-override.sh[20315]: Attempt 1: Assembling    4.29% 02m02s
Mar 17 17:07:09 akideck rauc-override.sh[20315]: Attempt 1: Assembling    4.32% 02m12s
Mar 17 17:07:10 akideck rauc-override.sh[20315]: Attempt 1: Assembling    4.54% 02m16s
Mar 17 17:07:10 akideck rauc-override.sh[20315]: Attempt 1: Assembling    5.42% 02m02s
Mar 17 17:07:11 akideck rauc-override.sh[20315]: Attempt 1: Assembling    6.54% 01m47s
Mar 17 17:07:11 akideck rauc-override.sh[20315]: Attempt 1: Assembling    8.45% 01m26s
Mar 17 17:07:12 akideck rauc-override.sh[20315]: Attempt 1: Assembling    8.66% 01m29s
Mar 17 17:07:12 akideck rauc-override.sh[20315]: Attempt 1: Assembling    9.39% 01m26s
Mar 17 17:07:13 akideck rauc-override.sh[20315]: Attempt 1: Assembling   10.08% 01m24s
Mar 17 17:07:13 akideck rauc-override.sh[20315]: Attempt 1: Assembling   10.81% 01m22s
Mar 17 17:07:14 akideck rauc-override.sh[20315]: Attempt 1: Assembling   11.68% 01m19s
Mar 17 17:07:14 akideck rauc-override.sh[20315]: Attempt 1: Assembling   11.92% 01m21s
Mar 17 17:07:15 akideck rauc-override.sh[20315]: Attempt 1: Assembling   12.15% 01m23s
Mar 17 17:07:15 akideck rauc-override.sh[20315]: Attempt 1: Assembling   12.36% 01m25s
Mar 17 17:07:16 akideck rauc-override.sh[20315]: Attempt 1: Assembling   12.56% 01m27s
Mar 17 17:07:16 akideck rauc-override.sh[20315]: Attempt 1: Assembling   12.77% 01m28s
Mar 17 17:07:17 akideck rauc-override.sh[20315]: Attempt 1: Assembling   14.36% 01m20s
Mar 17 17:07:17 akideck rauc-override.sh[20315]: Attempt 1: Assembling   15.58% 01m15s
Mar 17 17:07:18 akideck rauc-override.sh[20315]: Attempt 1: Assembling   16.20% 01m15s
Mar 17 17:07:18 akideck rauc-override.sh[20315]: Attempt 1: Assembling   18.17% 01m07s
Mar 17 17:07:19 akideck rauc-override.sh[20315]: Attempt 1: Assembling   18.20% 01m09s
Mar 17 17:07:19 akideck rauc-override.sh[20315]: Attempt 1: Assembling   18.20% 01m09s
Mar 17 17:07:20 akideck rauc-override.sh[20315]: Attempt 1: Assembling   18.22% 01m14s
Mar 17 17:07:20 akideck rauc-override.sh[20315]: Attempt 1: Assembling   18.27% 01m16s
Mar 17 17:07:21 akideck rauc-override.sh[20315]: Attempt 1: Assembling   18.35% 01m17s
Mar 17 17:07:21 akideck rauc-override.sh[20315]: Attempt 1: Assembling   18.40% 01m19s
Mar 17 17:07:22 akideck rauc-override.sh[20315]: Attempt 1: Assembling   20.20% 01m13s
Mar 17 17:07:22 akideck rauc-override.sh[20315]: Attempt 1: Assembling   20.20% 01m12s
Mar 17 17:07:23 akideck rauc-override.sh[20315]: Attempt 1: Assembling   20.20% 01m12s
Mar 17 17:07:23 akideck rauc-override.sh[20315]: Attempt 1: Assembling   20.20% 01m11s
Mar 17 17:07:24 akideck rauc-override.sh[20315]: Attempt 1: Assembling   20.20% 01m11s
Mar 17 17:07:24 akideck rauc-override.sh[20315]: Attempt 1: Assembling   20.29% 01m22s
Mar 17 17:07:25 akideck rauc-override.sh[20315]: Attempt 1: Assembling   20.29% 01m22s
Mar 17 17:07:25 akideck rauc-override.sh[20315]: Attempt 1: Assembling   21.79% 01m19s
Mar 17 17:07:26 akideck rauc-override.sh[20315]: Attempt 1: Assembling   22.89% 01m15s
Mar 17 17:07:26 akideck rauc-override.sh[20315]: Attempt 1: Assembling   23.57% 01m14s
Mar 17 17:07:27 akideck rauc-override.sh[20315]: Attempt 1: Assembling   25.06% 01m10s
Mar 17 17:07:27 akideck rauc-override.sh[20315]: Attempt 1: Assembling   25.22% 01m11s
Mar 17 17:07:28 akideck rauc-override.sh[20315]: Attempt 1: Assembling   25.41% 01m12s
Mar 17 17:07:28 akideck rauc-override.sh[20315]: Attempt 1: Assembling   25.63% 01m12s
Mar 17 17:07:29 akideck rauc-override.sh[20315]: Attempt 1: Assembling   25.85% 01m13s
Mar 17 17:07:29 akideck rauc-override.sh[20315]: Attempt 1: Assembling   26.04% 01m13s
Mar 17 17:07:30 akideck rauc-override.sh[20315]: Attempt 1: Assembling   26.21% 01m14s
Mar 17 17:07:30 akideck rauc-override.sh[20315]: Attempt 1: Assembling   26.41% 01m15s
Mar 17 17:07:31 akideck rauc-override.sh[20315]: Attempt 1: Assembling   26.64% 01m15s
Mar 17 17:07:31 akideck rauc-override.sh[20315]: Attempt 1: Assembling   26.93% 01m16s
Mar 17 17:07:32 akideck rauc-override.sh[20315]: Attempt 1: Assembling   27.56% 01m15s
Mar 17 17:07:32 akideck rauc-override.sh[20315]: Attempt 1: Assembling   29.29% 01m10s
Mar 17 17:07:33 akideck rauc-override.sh[20315]: Attempt 1: Assembling   30.49% 01m07s
Mar 17 17:07:33 akideck rauc-override.sh[20315]: Attempt 1: Assembling   32.39% 01m02s
Mar 17 17:07:34 akideck rauc-override.sh[20315]: Attempt 1: Assembling   33.84% 00m59s
Mar 17 17:07:34 akideck rauc-override.sh[20315]: Attempt 1: Assembling   33.89% 01m00s
Mar 17 17:07:35 akideck rauc-override.sh[20315]: Attempt 1: Assembling   33.95% 01m01s
Mar 17 17:07:35 akideck rauc-override.sh[20315]: Attempt 1: Assembling   34.72% 01m00s
Mar 17 17:07:36 akideck rauc-override.sh[20315]: Attempt 1: Assembling   34.89% 01m00s
Mar 17 17:07:36 akideck rauc-override.sh[20315]: Attempt 1: Assembling   34.96% 01m01s
Mar 17 17:07:37 akideck rauc-override.sh[20315]: Attempt 1: Assembling   34.96% 01m01s
Mar 17 17:07:37 akideck rauc-override.sh[20315]: Attempt 1: Assembling   36.76% 00m58s
Mar 17 17:07:38 akideck rauc-override.sh[20315]: Attempt 1: Assembling   38.07% 00m56s
Mar 17 17:07:38 akideck rauc-override.sh[20315]: Attempt 1: Assembling   38.07% 00m55s
Mar 17 17:07:39 akideck rauc-override.sh[20315]: Attempt 1: Assembling   38.07% 00m55s
Mar 17 17:07:39 akideck rauc-override.sh[20315]: Attempt 1: Assembling   38.07% 00m54s
Mar 17 17:07:40 akideck rauc-override.sh[20315]: Attempt 1: Assembling   38.07% 00m54s
Mar 17 17:07:40 akideck rauc-override.sh[20315]: Attempt 1: Assembling   38.24% 00m59s
Mar 17 17:07:41 akideck rauc-override.sh[20315]: Attempt 1: Assembling   38.40% 01m00s
Mar 17 17:07:41 akideck rauc-override.sh[20315]: Attempt 1: Assembling   39.83% 00m57s
Mar 17 17:07:42 akideck rauc-override.sh[20315]: Attempt 1: Assembling   41.83% 00m53s
Mar 17 17:07:42 akideck rauc-override.sh[20315]: Attempt 1: Assembling   43.43% 00m50s
Mar 17 17:07:43 akideck rauc-override.sh[20315]: Attempt 1: Assembling   45.72% 00m46s
Mar 17 17:07:43 akideck rauc-override.sh[20315]: Attempt 1: Assembling   47.43% 00m44s
Mar 17 17:07:44 akideck rauc-override.sh[20315]: Attempt 1: Assembling   49.78% 00m40s
Mar 17 17:07:44 akideck rauc-override.sh[20315]: Attempt 1: Assembling   49.94% 00m41s
Mar 17 17:07:45 akideck rauc-override.sh[20315]: Attempt 1: Assembling   50.29% 00m41s
Mar 17 17:07:45 akideck rauc-override.sh[20315]: Attempt 1: Assembling   50.70% 00m40s
Mar 17 17:07:46 akideck rauc-override.sh[20315]: Attempt 1: Assembling   51.16% 00m40s
Mar 17 17:07:46 akideck rauc-override.sh[20315]: Attempt 1: Assembling   51.74% 00m40s
Mar 17 17:07:47 akideck rauc-override.sh[20315]: Attempt 1: Assembling   52.00% 00m40s
Mar 17 17:07:47 akideck rauc-override.sh[20315]: Attempt 1: Assembling   52.28% 00m40s
Mar 17 17:07:48 akideck rauc-override.sh[20315]: Attempt 1: Assembling   52.57% 00m40s
Mar 17 17:07:48 akideck rauc-override.sh[20315]: Attempt 1: Assembling   53.33% 00m39s
Mar 17 17:07:49 akideck rauc-override.sh[20315]: Attempt 1: Assembling   54.06% 00m38s
Mar 17 17:07:49 akideck rauc-override.sh[20315]: Attempt 1: Assembling   55.45% 00m37s
Mar 17 17:07:50 akideck rauc-override.sh[20315]: Attempt 1: Assembling   56.96% 00m35s
Mar 17 17:07:50 akideck rauc-override.sh[20315]: Attempt 1: Assembling   58.42% 00m33s
Mar 17 17:07:51 akideck rauc-override.sh[20315]: Attempt 1: Assembling   58.95% 00m33s
Mar 17 17:07:51 akideck rauc-override.sh[20315]: Attempt 1: Assembling   59.32% 00m32s
Mar 17 17:07:52 akideck rauc-override.sh[20315]: Attempt 1: Assembling   59.69% 00m32s
Mar 17 17:07:52 akideck rauc-override.sh[20315]: Attempt 1: Assembling   60.09% 00m32s
Mar 17 17:07:53 akideck rauc-override.sh[20315]: Attempt 1: Assembling   60.77% 00m32s
Mar 17 17:07:53 akideck rauc-override.sh[20315]: Attempt 1: Assembling   62.11% 00m30s
Mar 17 17:07:54 akideck rauc-override.sh[20315]: Attempt 1: Assembling   62.60% 00m30s
Mar 17 17:07:54 akideck rauc-override.sh[20315]: Attempt 1: Assembling   64.43% 00m28s
Mar 17 17:07:55 akideck rauc-override.sh[20315]: Attempt 1: Assembling   64.97% 00m27s
Mar 17 17:07:55 akideck rauc-override.sh[20315]: Attempt 1: Assembling   65.38% 00m27s
Mar 17 17:07:56 akideck rauc-override.sh[20315]: Attempt 1: Assembling   65.85% 00m27s
Mar 17 17:07:56 akideck rauc-override.sh[20315]: Attempt 1: Assembling   66.35% 00m26s
Mar 17 17:07:57 akideck rauc-override.sh[20315]: Attempt 1: Assembling   66.95% 00m26s
Mar 17 17:07:57 akideck rauc-override.sh[20315]: Attempt 1: Assembling   69.17% 00m24s
Mar 17 17:07:58 akideck rauc-override.sh[20315]: Attempt 1: Assembling   70.75% 00m22s
Mar 17 17:07:58 akideck rauc-override.sh[20315]: Attempt 1: Assembling   72.41% 00m20s
Mar 17 17:07:59 akideck rauc-override.sh[20315]: Attempt 1: Assembling   72.84% 00m20s
Mar 17 17:07:59 akideck systemd[1]: Unmounting /esp...
Mar 17 17:07:59 akideck systemd[1]: Unmounting /efi...
Mar 17 17:07:59 akideck systemd[1]: efi.mount: Deactivated successfully.
Mar 17 17:07:59 akideck systemd[1]: Unmounted /efi.
Mar 17 17:07:59 akideck rauc-override.sh[20315]: Attempt 1: Assembling   73.04% 00m20s
Mar 17 17:08:00 akideck rauc-override.sh[20315]: Attempt 1: Assembling   73.10% 00m20s
Mar 17 17:08:00 akideck systemd[1]: esp.mount: Deactivated successfully.
Mar 17 17:08:00 akideck systemd[1]: Unmounted /esp.
Mar 17 17:08:00 akideck rauc-override.sh[20315]: Attempt 1: Assembling   73.16% 00m20s
Mar 17 17:08:01 akideck rauc-override.sh[20315]: Attempt 1: Assembling   73.22% 00m21s
Mar 17 17:08:01 akideck rauc-override.sh[20315]: Attempt 1: Assembling   73.33% 00m21s
Mar 17 17:08:02 akideck rauc-override.sh[20315]: Attempt 1: Assembling   73.63% 00m20s
Mar 17 17:08:02 akideck rauc-override.sh[20315]: Attempt 1: Assembling   73.99% 00m20s
Mar 17 17:08:03 akideck rauc-override.sh[20315]: Attempt 1: Assembling   74.38% 00m20s
Mar 17 17:08:03 akideck rauc-override.sh[20315]: Attempt 1: Assembling   74.75% 00m20s
Mar 17 17:08:04 akideck rauc-override.sh[20315]: Attempt 1: Assembling   75.22% 00m19s
Mar 17 17:08:04 akideck rauc-override.sh[20315]: Attempt 1: Assembling   75.74% 00m19s
Mar 17 17:08:05 akideck rauc-override.sh[20315]: Attempt 1: Assembling   78.40% 00m16s
Mar 17 17:08:05 akideck rauc-override.sh[20315]: Attempt 1: Assembling   78.74% 00m16s
Mar 17 17:08:06 akideck rauc-override.sh[20315]: Attempt 1: Assembling   80.09% 00m15s
Mar 17 17:08:06 akideck rauc-override.sh[20315]: Attempt 1: Assembling   80.89% 00m14s
Mar 17 17:08:07 akideck rauc-override.sh[20315]: Attempt 1: Assembling   83.24% 00m12s
Mar 17 17:08:07 akideck rauc-override.sh[20315]: Attempt 1: Assembling   83.30% 00m12s
Mar 17 17:08:08 akideck rauc-override.sh[20315]: Attempt 1: Assembling   84.69% 00m11s
Mar 17 17:08:08 akideck rauc-override.sh[20315]: Attempt 1: Assembling   87.06% 00m09s
Mar 17 17:08:09 akideck rauc-override.sh[20315]: Attempt 1: Assembling   89.42% 00m07s
Mar 17 17:08:09 akideck rauc-override.sh[20315]: Attempt 1: Assembling   90.94% 00m06s
Mar 17 17:08:10 akideck rauc-override.sh[20315]: Attempt 1: Assembling   93.48% 00m04s
Mar 17 17:08:10 akideck rauc-override.sh[20315]: Attempt 1: Assembling   94.94% 00m03s
Mar 17 17:08:11 akideck rauc-override.sh[20315]: Attempt 1: Assembling   95.90% 00m02s
Mar 17 17:08:11 akideck rauc-override.sh[20315]: Attempt 1: Assembling   95.95% 00m02s
Mar 17 17:08:12 akideck rauc-override.sh[20315]: Attempt 1: Assembling   96.02% 00m02s
Mar 17 17:08:12 akideck rauc-override.sh[20315]: Attempt 1: Assembling   96.11% 00m02s
Mar 17 17:08:13 akideck rauc-override.sh[20315]: Attempt 1: Assembling   96.30% 00m02s
Mar 17 17:08:13 akideck rauc-override.sh[20315]: Attempt 1: Assembling   96.33% 00m02s
Mar 17 17:08:14 akideck rauc-override.sh[20315]: Attempt 1: Assembling   96.60% 00m02s
Mar 17 17:08:14 akideck rauc-override.sh[20315]: Attempt 1: Assembling   98.41% 00m01s
Mar 17 17:08:15 akideck rauc-override.sh[20315]: Attempt 1: Assembling   99.99%
Mar 17 17:08:15 akideck rauc-override.sh[20315]: Attempt 1: Assembling   99.99%
Mar 17 17:08:16 akideck rauc-override.sh[20315]: Attempt 1: Assembling  100.00%
Mar 17 17:08:16 akideck rauc-override.sh[20315]: Attempt 1: Assembling  100.00% 1m12s
Mar 17 17:08:18 akideck rauc[20264]: Updating slot rootfs.1 status
Mar 17 17:08:18 akideck rauc[20264]: Leaving target slot non-bootable as requested by activate_installed == false.
Mar 17 17:08:18 akideck rauc[20264]: Starting post install handler: /usr/lib/rauc/post-install.sh
Mar 17 17:08:18 akideck rauc[20264]: installing https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb: Updating slot rootfs.1 done
Mar 17 17:08:18 akideck rauc[20264]: installing https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb: All slots updated
Mar 17 17:08:18 akideck systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Mar 17 17:08:18 akideck systemd[1]: Started Daily manpage database update.
Mar 17 17:08:18 akideck systemd[1]: Started Daily verification of password and group files.
Mar 17 17:08:18 akideck systemd[1]: Started Daily Cleanup of Temporary Directories.
Mar 17 17:08:18 akideck rauc-override.sh[20264]: # Detecting 'other' efi partition
Mar 17 17:08:18 akideck systemd[1]: esp.automount: Got automount request for /esp, triggered by 20557 (steamos-bootcon)
Mar 17 17:08:18 akideck systemd[1]: Mounting /esp...
Mar 17 17:08:19 akideck systemd[1]: Mounted /esp.
Mar 17 17:08:19 akideck systemd[1]: efi.automount: Got automount request for /efi, triggered by 20557 (steamos-bootcon)
Mar 17 17:08:19 akideck systemd[1]: Mounting /efi...
Mar 17 17:08:19 akideck systemd[1]: Mounted /efi.
Mar 17 17:08:19 akideck rauc-override.sh[20264]: # Booted into slot A
Mar 17 17:08:19 akideck rauc-override.sh[20264]: # Update slot candidate is B
Mar 17 17:08:19 akideck rauc-override.sh[20264]: # Configuring the 'other' efi partition /dev/nvme0n1p3  (A -> B)
Mar 17 17:08:20 akideck rauc-override.sh[20264]: # Syncing the var partitions from 'self' to 'other'
Mar 17 17:08:20 akideck kernel: BTRFS: device label rootfs devid 1 transid 55 /dev/nvme0n1p5 (259:5) scanned by mount (20572)
Mar 17 17:08:20 akideck kernel: BTRFS info (device nvme0n1p5): first mount of filesystem 485ed14d-0021-4f33-93fd-d3a2028f7181
Mar 17 17:08:20 akideck kernel: BTRFS info (device nvme0n1p5): using crc32c (crc32c-intel) checksum algorithm
Mar 17 17:08:20 akideck kernel: BTRFS info (device nvme0n1p5): using free-space-tree
Mar 17 17:08:21 akideck kernel: EXT4-fs (nvme0n1p7): mounted filesystem b8bfbb85-63fd-4390-af8e-e76898835069 r/w with ordered data mode. Quota mode: none.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # Keeping user defined files from '/etc/atomic-update.conf.d/example-additional-keep-list.conf'
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # Running rsync with the following config file:
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## When an atomic update is applied, all changes made in /etc will be lost.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## The only exceptions are the files and directories listed below.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## If you want to preserve additional files, you can create drop-in '*.conf'
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## files in "/etc/atomic-update.conf.d/".
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Indiscriminately preserving /etc files increases the risk of encountering
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## unexpected behavior, please proceed only if you know what you are doing.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ##
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Before /etc changes gets removed, a backup is created in /var/lib/steamos-atomupd/etc_backup
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ##
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## The wildcard '*' will match every character, except forward slashes.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## The wildcard '**' is like '*', but it will include forward slashes.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Eventual additional user drop-in configs
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /atomic-update.conf.d/*.conf
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## IBus configuration
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /dconf/**
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Wi-Fi configuration
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /NetworkManager/system-connections/*
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Display manager configs
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /sddm.conf.d/*
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## SSH public and private keys
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /ssh/*_key
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /ssh/*_key.pub
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## WireGuard configs, including private keys
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /wireguard/*.conf
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Preferences for the system updates, e.g. which branch to follow
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /steamos-atomupd/preferences.conf
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Systemd enabled/disabled/masked services, sockets and mount units
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /systemd/system/*.requires/**
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /systemd/system/*.wants/**
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /systemd/system/*.service
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /systemd/system/*.service.d/**
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /systemd/system/*.socket
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /systemd/system/*.socket.d/**
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /systemd/system/*.mount
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /systemd/system/*.mount.d/**
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Devkit canary file
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /.devkit-service-on-os-update
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Name of the machine
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /hostname
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Chosen Timezone
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /localtime
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## This machine unique id
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /machine-id
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## DNS configuration
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /resolv.conf
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Groups and users account information
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /group
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /gshadow
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /passwd
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /shadow
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /subgid
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /subuid
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## System-wide environment variables
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # /environment
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## These examples include common files that users may wish to include.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ##
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Please be careful with what you whitelist here -- `pacman -Syu` may touch
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## these files and thus prevent atomic updates from adjusting them in the future.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ##
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## "/usr/lib/rauc/atomic-update-keep.conf" contains the list of files
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## that are already preserved by default.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ##
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## The wildcard '*' will match every character, except forward slashes.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## The wildcard '**' is like '*', but it will include forward slashes.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Keep changes to systemd config
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # # /etc/systemd/*.conf
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Keep drop-in changes for mkinitcpio
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # # /etc/mkinitcpio.conf.d/*.conf
Mar 17 17:08:22 akideck rauc-override.sh[20264]: #
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## Keep all edits to any files.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## DANGEROUS! Any files you (or pacman) touch in /etc will forever shadow all
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## upstream changes from future atomic updates, leading to hard to diagnose
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # ## breakage. You get to keep the pieces.
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # # /etc/**
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: Removing leading `/' from member names
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/previous/pacman.d/gnupg/S.gpg-agent.browser: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/previous/pacman.d/gnupg/S.gpg-agent: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/previous/pacman.d/gnupg/S.keyboxd: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/previous/pacman.d/gnupg/S.gpg-agent.ssh: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/previous/pacman.d/gnupg/S.dirmngr: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/previous/pacman.d/gnupg/S.gpg-agent.extra: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/pacman.d/gnupg/S.gpg-agent.browser: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/pacman.d/gnupg/S.gpg-agent: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/pacman.d/gnupg/S.keyboxd: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/pacman.d/gnupg/S.gpg-agent.ssh: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/pacman.d/gnupg/S.dirmngr: socket ignored
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # tar: /var/lib/overlays/etc/upper/pacman.d/gnupg/S.gpg-agent.extra: socket ignored
Mar 17 17:08:22 akideck kernel: EXT4-fs (nvme0n1p7): unmounting filesystem b8bfbb85-63fd-4390-af8e-e76898835069.
Mar 17 17:08:22 akideck kernel: BTRFS info (device nvme0n1p5): last unmount of filesystem 485ed14d-0021-4f33-93fd-d3a2028f7181
Mar 17 17:08:22 akideck rauc-override.sh[20264]: # Installing the bootloaders
Mar 17 17:08:23 akideck kernel: BTRFS: device label rootfs devid 1 transid 55 /dev/nvme0n1p5 (259:5) scanned by mount (20672)
Mar 17 17:08:23 akideck kernel: BTRFS info (device nvme0n1p5): first mount of filesystem 485ed14d-0021-4f33-93fd-d3a2028f7181
Mar 17 17:08:23 akideck kernel: BTRFS info (device nvme0n1p5): using crc32c (crc32c-intel) checksum algorithm
Mar 17 17:08:23 akideck kernel: BTRFS info (device nvme0n1p5): using free-space-tree
Mar 17 17:08:23 akideck kernel: EXT4-fs (nvme0n1p7): mounted filesystem b8bfbb85-63fd-4390-af8e-e76898835069 r/w with ordered data mode. Quota mode: none.
Mar 17 17:08:23 akideck kernel: overlayfs: "xino" feature enabled using 2 upper inode bits.
Mar 17 17:08:23 akideck rauc-override.sh[20264]: # ESP vfat c12a7328-f81f-11d2-ba4b-00a0c93ec93b on /dev/nvme0n1 GPT#1 PARTUUID=d942add6-3445-49a7-8cd6-333572d59545 (/esp)
Mar 17 17:08:23 akideck rauc-override.sh[20264]: # Warning: Skipping installation artifacts to /boot!
Mar 17 17:08:25 akideck rauc-override.sh[20264]: # Generating grub configuration file ...
Mar 17 17:08:25 akideck rauc-override.sh[20264]: # Found theme: /usr/share/grub/themes/breeze/theme.txt
Mar 17 17:08:26 akideck rauc-override.sh[20264]: # Found linux image: /boot/vmlinuz-linux-neptune-611
Mar 17 17:08:26 akideck rauc-override.sh[20264]: # Found initrd image: /boot/amd-ucode.img /boot/initramfs-linux-neptune-611.img
Mar 17 17:08:27 akideck rauc-override.sh[20264]: # Found fallback initrd image(s) in /boot:  amd-ucode.img initramfs-linux-neptune-611-fallback.img
Mar 17 17:08:27 akideck rauc-override.sh[20264]: # Adding boot menu entry for UEFI Firmware Settings ...
Mar 17 17:08:27 akideck rauc-override.sh[20264]: # done
Mar 17 17:08:27 akideck rauc-override.sh[20264]: # Installing grub configuration file at /efi/EFI/steamos/grub.cfg
Mar 17 17:08:27 akideck kernel: EXT4-fs (nvme0n1p7): unmounting filesystem b8bfbb85-63fd-4390-af8e-e76898835069.
Mar 17 17:08:27 akideck kernel: BTRFS info (device nvme0n1p5): last unmount of filesystem 485ed14d-0021-4f33-93fd-d3a2028f7181
Mar 17 17:08:27 akideck kernel: BTRFS: device label rootfs devid 1 transid 55 /dev/nvme0n1p5 (259:5) scanned by mount (21102)
Mar 17 17:08:27 akideck kernel: BTRFS info (device nvme0n1p5): first mount of filesystem 485ed14d-0021-4f33-93fd-d3a2028f7181
Mar 17 17:08:27 akideck kernel: BTRFS info (device nvme0n1p5): using crc32c (crc32c-intel) checksum algorithm
Mar 17 17:08:27 akideck kernel: BTRFS info (device nvme0n1p5): using free-space-tree
Mar 17 17:08:28 akideck kernel: EXT4-fs (nvme0n1p7): mounted filesystem b8bfbb85-63fd-4390-af8e-e76898835069 r/w with ordered data mode. Quota mode: none.
Mar 17 17:08:28 akideck kernel: overlayfs: "xino" feature enabled using 2 upper inode bits.
Mar 17 17:08:28 akideck kernel: EXT4-fs (nvme0n1p7): unmounting filesystem b8bfbb85-63fd-4390-af8e-e76898835069.
Mar 17 17:08:28 akideck kernel: BTRFS info (device nvme0n1p5): last unmount of filesystem 485ed14d-0021-4f33-93fd-d3a2028f7181
Mar 17 17:08:28 akideck kernel: BTRFS: device label rootfs devid 1 transid 55 /dev/nvme0n1p5 (259:5) scanned by mount (21182)
Mar 17 17:08:28 akideck kernel: BTRFS info (device nvme0n1p5): first mount of filesystem 485ed14d-0021-4f33-93fd-d3a2028f7181
Mar 17 17:08:28 akideck kernel: BTRFS info (device nvme0n1p5): using crc32c (crc32c-intel) checksum algorithm
Mar 17 17:08:28 akideck kernel: BTRFS info (device nvme0n1p5): using free-space-tree
Mar 17 17:08:28 akideck kernel: EXT4-fs (nvme0n1p7): mounted filesystem b8bfbb85-63fd-4390-af8e-e76898835069 r/w with ordered data mode. Quota mode: none.
Mar 17 17:08:28 akideck kernel: overlayfs: "xino" feature enabled using 2 upper inode bits.
Mar 17 17:08:29 akideck kernel: EXT4-fs (nvme0n1p7): unmounting filesystem b8bfbb85-63fd-4390-af8e-e76898835069.
Mar 17 17:08:29 akideck kernel: BTRFS info (device nvme0n1p5): last unmount of filesystem 485ed14d-0021-4f33-93fd-d3a2028f7181
Mar 17 17:08:29 akideck rauc[20264]: Installation 4683ea5e succeeded
Mar 17 17:08:29 akideck rauc[20264]: installing https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb: finished
Mar 17 17:08:29 akideck rauc[20264]: installing `https://steamdeck-images.steamos.cloud/steamdeck/20250317.100/steamdeck-20250317.100-3.7.1.raucb` succeeded
Mar 17 17:08:33 akideck earlyoom[801]: mem avail: 12038 of 13238 MiB (90.94%), swap free: 7836 of 8428 MiB (92.98%)
Mar 17 17:08:53 akideck systemd-logind[871]: The system will reboot now!
Mar 17 17:08:53 akideck systemd-logind[871]: System is rebooting.
Mar 17 17:08:53 akideck fancontrol.py[809]: closed log file
Mar 17 17:08:53 akideck fancontrol.py[809]: returning fan to EC control loop
Mar 17 17:08:53 akideck steam[17509]: method return time=1742256533.496395 sender=:1.7 -> destination=:1.356 serial=957 reply_serial=2
Mar 17 17:08:53 akideck fwupd[13341]: 00:08:53.640 FuMain               Received SIGTERM
Mar 17 17:08:53 akideck gamescope-session[17278]: [gamescope] [Error] drm: flip error: Device or resource busy
Mar 17 17:08:53 akideck steamos-manager[861]: 2025-03-18T00:08:53.565546Z  INFO steamos_manager::daemon: Got SIGTERM, shutting down
Mar 17 17:08:53 akideck steamos-manager[861]: 2025-03-18T00:08:53.565576Z  INFO steamos_manager::daemon: Shutting down
Mar 17 17:08:53 akideck steamos-manager[861]: 2025-03-18T00:08:53.565613Z  INFO steamos_manager: Shutting down ds-inhibitor
Mar 17 17:08:53 akideck steamos-manager[861]: 2025-03-18T00:08:53.565654Z  INFO steamos_manager: Shutting down ftrace
Mar 17 17:08:53 akideck steamos-manager[861]: 2025-03-18T00:08:53.565919Z  INFO steamos_manager: Shutting down SLS log receiver
Mar 17 17:08:53 akideck sshd-session[6630]: error: mm_reap: preauth child terminated by signal 15
Mar 17 17:08:53 akideck systemd[1]: Stopping Session 5 of User deck...
Mar 17 17:08:53 akideck sshd-session[6630]: pam_unix(sshd:session): session closed for user deck
Mar 17 17:08:53 akideck sddm-helper[17247]: Signal received: SIGTERM
Mar 17 17:08:53 akideck avahi-daemon[802]: Got SIGTERM, quitting.
Mar 17 17:08:53 akideck systemd[1]: Stopping Session 7 of User deck...
Mar 17 17:08:53 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::ea8d:a6ff:fe77:9a8c.
Mar 17 17:08:53 akideck systemd[1]: Removed slice Slice /system/dbus-:1.3-org.kde.kded.smart.
Mar 17 17:08:53 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.0.112.
Mar 17 17:08:53 akideck systemd[1]: Removed slice Slice /system/dbus-:1.3-org.kde.powerdevil.backlighthelper.
Mar 17 17:08:53 akideck steam-short-session-tracker[21360]: rm: cannot remove '/tmp/steamos-short-session-tracker': No such file or directory
Mar 17 17:08:53 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface lo.IPv6 with address ::1.
Mar 17 17:08:53 akideck systemd[1]: Removed slice Slice /system/dbus-:1.3-org.kde.powerdevil.chargethresholdhelper.
Mar 17 17:08:53 akideck avahi-daemon[802]: Leaving mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Mar 17 17:08:53 akideck systemd[1]: Removed slice Slice /system/dbus-:1.3-org.kde.powerdevil.discretegpuhelper.
Mar 17 17:08:53 akideck avahi-daemon[802]: avahi-daemon 0.8 exiting.
Mar 17 17:08:53 akideck sddm[1091]: Authentication error: SDDM::Auth::ERROR_INTERNAL "Process crashed"
Mar 17 17:08:53 akideck bluetoothd[803]: Terminating
Mar 17 17:08:53 akideck sddm[1091]: Auth: sddm-helper (--socket /tmp/sddm-auth-1d8a6f09-9599-45d9-a976-c7c5b80e4087 --id 5 --start start-gamescope-session --user deck --autologin) crashed (exit code 1)
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/ldac
Mar 17 17:08:53 akideck sddm[1091]: Authentication error: SDDM::Auth::ERROR_INTERNAL "Process crashed"
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSink/aptx_hd
Mar 17 17:08:53 akideck sddm[1091]: Auth: sddm-helper exited with 1
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_hd
Mar 17 17:08:53 akideck systemd[1]: Removed slice Slice /system/drkonqi-coredump-processor.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSink/aptx
Mar 17 17:08:53 akideck systemd[1]: Removed slice Slice /system/getty.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx
Mar 17 17:08:53 akideck systemd[1]: Removed slice Slice /system/modprobe.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSink/aac
Mar 17 17:08:53 akideck systemd[1]: Removed slice Slice /system/systemd-coredump.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aac
Mar 17 17:08:53 akideck systemd[1]: system-systemd\x2dcoredump.slice: Consumed 1.878s CPU time, 686.2M memory peak.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSink/opus_g
Mar 17 17:08:53 akideck systemd[1]: Stopped target Bluetooth Support.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/opus_g
Mar 17 17:08:53 akideck systemd[1]: Stopped target Graphical Interface.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSink/sbc
Mar 17 17:08:53 akideck systemd[1]: Stopped target Multi-User System.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/sbc
Mar 17 17:08:53 akideck systemd[1]: Stopped target Login Prompts.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_ll_1
Mar 17 17:08:53 akideck systemd[1]: Stopped target Host and Network Name Lookups.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_ll_0
Mar 17 17:08:53 akideck systemd[1]: Stopped target Sound Card.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
Mar 17 17:08:53 akideck systemd[1]: Stopped target SteamOS Offload.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
Mar 17 17:08:53 akideck systemd[1]: Stopped target Timer Units.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/faststream
Mar 17 17:08:53 akideck systemd[1]: archlinux-keyring-wkd-sync.timer: Deactivated successfully.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/faststream_duplex
Mar 17 17:08:53 akideck systemd[1]: Stopped Refresh existing PGP keys of archlinux-keyring regularly.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSink/opus_05
Mar 17 17:08:53 akideck systemd[1]: mandoc.timer: Deactivated successfully.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/opus_05
Mar 17 17:08:53 akideck systemd[1]: Stopped Daily manpage database update.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSink/opus_05_duplex
Mar 17 17:08:53 akideck systemd[1]: shadow.timer: Deactivated successfully.
Mar 17 17:08:53 akideck bluetoothd[803]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/opus_05_duplex
Mar 17 17:08:53 akideck systemd[1]: Stopped Daily verification of password and group files.
Mar 17 17:08:53 akideck bluetoothd[803]: Battery Provider Manager destroyed
Mar 17 17:08:53 akideck systemd[1]: systemd-tmpfiles-clean.timer: Deactivated successfully.
Mar 17 17:08:53 akideck bluetoothd[803]: Stopping SDP server
Mar 17 17:08:53 akideck systemd[1]: Stopped Daily Cleanup of Temporary Directories.
Mar 17 17:08:53 akideck bluetoothd[803]: Exit
Mar 17 17:08:53 akideck systemd[1]: Stopped target Trusted Platform Module.
Mar 17 17:08:53 akideck sshd[1080]: Received signal 15; terminating.
Mar 17 17:08:53 akideck systemd[1]: systemd-rfkill.socket: Deactivated successfully.
Mar 17 17:08:53 akideck deck[21386]: Gamescope Session Ended - Performing Final Cleanup
Mar 17 17:08:53 akideck systemd[1]: Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
Mar 17 17:08:53 akideck systemd[1]: Unmounting /efi...
Mar 17 17:08:53 akideck systemd[1]: Unmounting /esp...
Mar 17 17:08:53 akideck systemd[1]: Stopping Early OOM Daemon...
Mar 17 17:08:53 akideck systemd[1]: Stopping Accounts Service...
Mar 17 17:08:53 akideck systemd[1]: Stopping Atomic Update Daemon...
Mar 17 17:08:53 akideck systemd[1]: Stopping Avahi mDNS/DNS-SD Stack...
Mar 17 17:08:53 akideck systemd[1]: Stopping Bluetooth service...
Mar 17 17:08:53 akideck systemd[1]: Stopping CUPS Scheduler...
Mar 17 17:08:53 akideck systemd[1]: Stopping GPU performance capture daemon...
Mar 17 17:08:53 akideck systemd[1]: Stopping Jupiter fan control...
Mar 17 17:08:53 akideck systemd[1]: kdumpst-init.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped kdumpst loader boot-time service.
Mar 17 17:08:53 akideck systemd[1202]: Stopped target Gamescope Session.
Mar 17 17:08:53 akideck systemd[1202]: Stopping Accessibility services bus...
Mar 17 17:08:53 akideck systemd[1202]: Stopping mangoapp...
Mar 17 17:08:53 akideck systemd[1202]: Stopping Xbindkeys for Gamescope session...
Mar 17 17:08:53 akideck systemd[1202]: Stopping Wrapper for Ibus...
Mar 17 17:08:53 akideck systemd[1202]: Stopping Steam Notification Daemon...
Mar 17 17:08:53 akideck dbus-broker[799]: A security policy denied :1.6 to send method call /midi/profile:org.bluez.GattProfile1.Release to :1.37.
Mar 17 17:08:53 akideck systemd[1]: Starting Generate shutdown-ramfs...
Mar 17 17:08:53 akideck systemd[1]: pipewire-sysconf.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Hardware Specific Pipewire Configuration.
Mar 17 17:08:53 akideck unknown[20264]: stopping service
Mar 17 17:08:53 akideck systemd[1]: Stopping RAUC Update Service...
Mar 17 17:08:53 akideck systemd[1202]: Stopping Steam Short Session Tracker...
Mar 17 17:08:53 akideck systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
Mar 17 17:08:53 akideck systemd[1202]: Stopping Power Button daemon for SteamOS...
Mar 17 17:08:53 akideck systemd[1]: Stopping Simple Desktop Display Manager...
Mar 17 17:08:53 akideck systemd[1]: Stopping OpenSSH Daemon...
Mar 17 17:08:53 akideck systemd[1]: steamos-cfs-debugfs-tunings.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped set multiple CFS tunings in sched debugfs.
Mar 17 17:08:53 akideck systemd[1]: Stopping "SteamOS Devkit Service"...
Mar 17 17:08:53 akideck systemd[1]: steamos-dump-info.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Append SteamOS info to kernel log.
Mar 17 17:08:53 akideck systemd[1202]: Stopping Portal service...
Mar 17 17:08:53 akideck systemd[1]: Stopping SteamOS Manager Daemon...
Mar 17 17:08:53 akideck systemd[1202]: Stopping flatpak document portal service...
Mar 17 17:08:53 akideck systemd[1202]: Stopping sandboxed app permission store...
Mar 17 17:08:53 akideck sddm[1091]: Signal received: SIGTERM
Mar 17 17:08:53 akideck systemd[1]: Stopping Load/Save OS Random Seed...
Mar 17 17:08:53 akideck systemd[1]: systemd-udev-load-credentials.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Load udev Rules from Credentials.
Mar 17 17:08:53 akideck systemd[1]: Stopping Disk Manager...
Mar 17 17:08:53 akideck systemd[1]: Stopping Daemon for power management...
Mar 17 17:08:53 akideck systemd[1]: Stopping vpower daemon...
Mar 17 17:08:53 akideck systemd[1]: wireplumber-sysconf.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Hardware Specific Wireplumber Configuration.
Mar 17 17:08:53 akideck systemd[1202]: Stopped mangoapp.
Mar 17 17:08:53 akideck systemd[1202]: gamescope-mangoapp.service: Consumed 35.003s CPU time, 43.2M memory peak.
Mar 17 17:08:53 akideck systemd[1202]: Stopped Xbindkeys for Gamescope session.
Mar 17 17:08:53 akideck systemd[1]: earlyoom.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Early OOM Daemon.
Mar 17 17:08:53 akideck systemd[1202]: Stopped Wrapper for Ibus.
Mar 17 17:08:53 akideck systemd[1202]: steam-notif-daemon.service: Main process exited, code=exited, status=1/FAILURE
Mar 17 17:08:53 akideck systemd[1202]: steam-notif-daemon.service: Failed with result 'exit-code'.
Mar 17 17:08:53 akideck systemd[1202]: Stopped Steam Notification Daemon.
Mar 17 17:08:53 akideck systemd[1]: avahi-daemon.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Avahi mDNS/DNS-SD Stack.
Mar 17 17:08:53 akideck systemd[1]: bluetooth.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Bluetooth service.
Mar 17 17:08:53 akideck systemd[1202]: Stopped Portal service.
Mar 17 17:08:53 akideck systemd[1202]: Stopped Power Button daemon for SteamOS.
Mar 17 17:08:53 akideck systemd[1202]: Stopped sandboxed app permission store.
Mar 17 17:08:53 akideck systemd[1]: steamos-devkit-service.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped "SteamOS Devkit Service".
Mar 17 17:08:53 akideck systemd[1202]: Stopped Accessibility services bus.
Mar 17 17:08:53 akideck systemd[1]: vpower.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped vpower daemon.
Mar 17 17:08:53 akideck systemd[1]: vpower.service: Consumed 12.094s CPU time, 1.9M memory peak.
Mar 17 17:08:53 akideck systemd[1]: sshd.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped OpenSSH Daemon.
Mar 17 17:08:53 akideck systemd[1]: sddm.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Simple Desktop Display Manager.
Mar 17 17:08:53 akideck systemd[1]: atomupd.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Atomic Update Daemon.
Mar 17 17:08:53 akideck systemd[1]: atomupd.service: Consumed 2.519s CPU time, 39M memory peak.
Mar 17 17:08:53 akideck systemd[1]: accounts-daemon.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Accounts Service.
Mar 17 17:08:53 akideck systemd[1]: rauc.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped RAUC Update Service.
Mar 17 17:08:53 akideck systemd[1]: rauc.service: Consumed 1min 30.548s CPU time, 6G memory peak.
Mar 17 17:08:53 akideck systemd[1]: efi.mount: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Unmounted /efi.
Mar 17 17:08:53 akideck systemd[1]: steamos-manager.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped SteamOS Manager Daemon.
Mar 17 17:08:53 akideck systemd[1]: rtkit-daemon.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
Mar 17 17:08:53 akideck udisksd[1192]: udisks daemon version 2.10.1 exiting
Mar 17 17:08:53 akideck systemd[1202]: Stopped Steam Short Session Tracker.
Mar 17 17:08:53 akideck systemd[1202]: Stopping Steam Launcher...
Mar 17 17:08:53 akideck dbus-broker-launch[794]: Activation request for 'org.bluez' failed.
Mar 17 17:08:53 akideck systemd[1]: Stopping Firmware update daemon...
Mar 17 17:08:53 akideck systemd[1]: Stopping SteamOS log submitter service - sends error logs to Valve...
Mar 17 17:08:53 akideck systemd[1]: steamos-post-update.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Run tasks on the first boot after an OS update.
Mar 17 17:08:53 akideck systemd[1]: systemd-fsck@dev-disk-by\x2dpartsets-self-efi.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped File System Check on /dev/disk/by-partsets/self/efi.
Mar 17 17:08:53 akideck systemd[1]: steamos-log-submitter.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped SteamOS log submitter service - sends error logs to Valve.
Mar 17 17:08:53 akideck systemd[1]: upower.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Daemon for power management.
Mar 17 17:08:53 akideck systemd[1]: run-user-1000-doc.mount: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Unmounted /run/user/1000/doc.
Mar 17 17:08:53 akideck systemd[1]: esp.mount: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Unmounted /esp.
Mar 17 17:08:53 akideck systemd[1202]: Stopped flatpak document portal service.
Mar 17 17:08:53 akideck systemd[1]: systemd-fsck@dev-disk-by\x2dpartsets-shared-esp.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped File System Check on /dev/disk/by-partsets/shared/esp.
Mar 17 17:08:53 akideck systemd[1]: session-5.scope: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped Session 5 of User deck.
Mar 17 17:08:53 akideck systemd-logind[871]: Removed session 5.
Mar 17 17:08:53 akideck systemd[1]: cups.service: Deactivated successfully.
Mar 17 17:08:53 akideck systemd[1]: Stopped CUPS Scheduler.
Mar 17 17:08:53 akideck systemd[1]: Removed slice CUPS Slice.
Mar 17 17:08:53 akideck systemd[1]: Stopped target System Time Set.
Mar 17 17:08:54 akideck systemd[1]: udisks2.service: Deactivated successfully.
Mar 17 17:08:54 akideck systemd[1]: Stopped Disk Manager.
Mar 17 17:08:54 akideck systemd[1]: udisks2.service: Consumed 3.510s CPU time, 5.9M memory peak.
Mar 17 17:08:54 akideck systemd[1]: systemd-random-seed.service: Deactivated successfully.
Mar 17 17:08:54 akideck systemd[1]: Stopped Load/Save OS Random Seed.
Mar 17 17:08:54 akideck mkinitcpio[21330]: ==> Starting build: 'none'
Mar 17 17:08:54 akideck mkinitcpio[21330]:   -> Running build hook: [sd-shutdown]
Mar 17 17:08:54 akideck fancontrol.py[21384]: /usr/share/jupiter-fan-control/PID.py:64: SyntaxWarning: invalid escape sequence '\i'
Mar 17 17:08:54 akideck fancontrol.py[21384]:   """Calculates PID value for given reference feedback
Mar 17 17:08:54 akideck gpu-trace[21329]: CRITICAL - Failed to setup logging
Mar 17 17:08:54 akideck fancontrol.py[21384]: loaded critical temp from SSD hwmon: 84.85
Mar 17 17:08:54 akideck fancontrol.py[21384]: returning fan to EC control loop
Mar 17 17:08:54 akideck systemd[1]: jupiter-fan-control.service: Deactivated successfully.
Mar 17 17:08:54 akideck systemd[1]: Stopped Jupiter fan control.
Mar 17 17:08:54 akideck systemd[1]: jupiter-fan-control.service: Consumed 21.611s CPU time, 11.8M memory peak.
Mar 17 17:08:54 akideck systemd[1]: gpu-trace.service: Control process exited, code=exited, status=255/EXCEPTION
Mar 17 17:08:54 akideck systemd[1]: gpu-trace.service: Failed with result 'exit-code'.
Mar 17 17:08:54 akideck systemd[1]: Stopped GPU performance capture daemon.
Mar 17 17:08:54 akideck systemd[1]: gpu-trace.service: Consumed 2.057s CPU time, 60.1M memory peak, 732K memory swap peak.
Mar 17 17:08:54 akideck systemd[1]: fwupd.service: Deactivated successfully.
Mar 17 17:08:54 akideck systemd[1]: Stopped Firmware update daemon.
Mar 17 17:08:54 akideck systemd[1]: fwupd.service: Consumed 2.529s CPU time, 179.4M memory peak.
Mar 17 17:08:54 akideck mkinitcpio[21330]: ==> Build complete.
Mar 17 17:08:54 akideck systemd[1]: mkinitcpio-generate-shutdown-ramfs.service: Deactivated successfully.
Mar 17 17:08:54 akideck systemd[1]: Finished Generate shutdown-ramfs.
Mar 17 17:09:03 akideck systemd[1]: session-7.scope: Stopping timed out. Killing.
Mar 17 17:09:03 akideck systemd[1]: session-7.scope: Killing process 17253 (start-gamescope) with signal SIGKILL.
Mar 17 17:09:03 akideck systemd[1]: session-7.scope: Killing process 21388 (systemctl) with signal SIGKILL.
Mar 17 17:09:03 akideck systemd[1]: session-7.scope: Failed with result 'timeout'.
Mar 17 17:09:03 akideck systemd[1]: Stopped Session 7 of User deck.
Mar 17 17:09:03 akideck systemd[1]: Stopping User Manager for UID 1000...
Mar 17 17:09:03 akideck systemd-logind[871]: Removed session 7.
Mar 17 17:09:03 akideck systemd[1202]: Activating special unit Exit the Session...
Mar 17 17:09:03 akideck systemd[1202]: Removed slice Slice /app/dbus-:1.158-org.a11y.atspi.Registry.
Mar 17 17:09:03 akideck systemd[1202]: Removed slice Slice /app/dbus-:1.2-org.freedesktop.portal.IBus.
Mar 17 17:09:03 akideck systemd[1202]: Removed slice Slice /app/dbus-:1.2-org.kde.Shutdown.
Mar 17 17:09:03 akideck systemd[1202]: Removed slice Slice /app/dbus-:1.2-org.kde.kdeconnect.
Mar 17 17:09:03 akideck systemd[1202]: Removed slice Slice /app/dbus-:1.56-org.a11y.atspi.Registry.
Mar 17 17:09:03 akideck systemd[1202]: Removed slice User Background Tasks Slice.
Mar 17 17:09:03 akideck systemd[1202]: background.slice: Consumed 6.052s CPU time, 142.5M memory peak.
Mar 17 17:09:03 akideck systemd[1202]: Stopped target Main User Target.
Mar 17 17:09:03 akideck systemd[1202]: Closed Socket to launch DrKonqi for a systemd-coredump crash.
Mar 17 17:09:03 akideck systemd[1202]: Stopping User preferences database...
Mar 17 17:09:03 akideck systemd[1202]: Stopping gamemoded...
Mar 17 17:09:03 akideck systemd[1202]: Stopping PipeWire PulseAudio...
Mar 17 17:09:03 akideck systemd[1202]: Stopping SteamOS Manager Daemon...
Mar 17 17:09:03 akideck steamos-manager[1354]: 2025-03-18T00:09:03.758666Z  INFO steamos_manager::daemon: Got SIGTERM, shutting down
Mar 17 17:09:03 akideck steamos-manager[1354]: 2025-03-18T00:09:03.758711Z  INFO steamos_manager::daemon: Shutting down
Mar 17 17:09:03 akideck steamos-manager[1354]: 2025-03-18T00:09:03.758752Z  INFO steamos_manager: Shutting down udev-monitor
Mar 17 17:09:03 akideck steamos-manager[1354]: 2025-03-18T00:09:03.758875Z  INFO steamos_manager: Shutting down job-manager
Mar 17 17:09:03 akideck steamos-manager[1354]: 2025-03-18T00:09:03.758981Z  INFO steamos_manager: Shutting down SLS log receiver
Mar 17 17:09:03 akideck systemd[1202]: Stopping wakehook.service...
Mar 17 17:09:03 akideck systemd[1202]: Stopped wakehook.service.
Mar 17 17:09:03 akideck systemd[1202]: Stopped User preferences database.
Mar 17 17:09:03 akideck systemd[1202]: Stopped SteamOS Manager Daemon.
Mar 17 17:09:03 akideck systemd[1202]: Stopped PipeWire PulseAudio.
Mar 17 17:09:03 akideck systemd[1202]: pipewire-pulse.service: Consumed 2min 30.149s CPU time, 31.6M memory peak, 32K memory swap peak.
Mar 17 17:09:03 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-83) graph xrun not-triggered (1 suppressed)
Mar 17 17:09:03 akideck pipewire[1449]: pw.node: (alsa_output.pci-0000_04_00.5-platform-nau8821-max.HiFi__Speaker__sink-83) xrun state:0x7f63f452b008 pending:1/1 s:7279315494463 a:7279315902944 f:7279315922594 waiting:408481 process:19650 status:triggered
Mar 17 17:09:03 akideck systemd[1202]: Stopped gamemoded.
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 57: Resource temporarily unavailable
Mar 17 17:09:03 akideck systemd[1202]: Stopping Multimedia Service Session Manager...
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 55: Resource temporarily unavailable
Mar 17 17:09:03 akideck wireplumber[1450]: wplua: [string "alsa.lua"]:448: table index is nil
                                           stack traceback:
                                                   [string "alsa.lua"]:448: in function <[string "alsa.lua"]:434>
Mar 17 17:09:03 akideck wireplumber[1450]: wireplumber: stopped by signal: Terminated
Mar 17 17:09:03 akideck wireplumber[1450]: wireplumber: disconnected from pipewire
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 59: Resource temporarily unavailable
Mar 17 17:09:03 akideck systemd[1202]: Stopped Multimedia Service Session Manager.
Mar 17 17:09:03 akideck systemd[1202]: wireplumber.service: Consumed 1min 18.332s CPU time, 96.8M memory peak, 60K memory swap peak.
Mar 17 17:09:03 akideck systemd[1202]: Stopping PipeWire Multimedia Service...
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 62: Resource temporarily unavailable
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Info]  pipewire: stream state changed: unconnected
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Info]  pipewire: exiting
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 60: Resource temporarily unavailable
Mar 17 17:09:03 akideck systemd[1202]: Stopped PipeWire Multimedia Service.
Mar 17 17:09:03 akideck systemd[1202]: pipewire.service: Consumed 3min 52.511s CPU time, 47.4M memory peak, 164K memory swap peak.
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:03 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 52: Resource temporarily unavailable
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 53: Resource temporarily unavailable
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 54: Resource temporarily unavailable
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 56: Resource temporarily unavailable
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 58: Resource temporarily unavailable
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:04 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck steam[17509]: Thread "CJobMgr::m_WorkThreadPool:0" (ID 17971) failed to shut down
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:05 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:06 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:07 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:08 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:09 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:10 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:11 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:12 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:13 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:14 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck steam[17509]: Thread "CJobMgr::m_WorkThreadPool:0" (ID 17971) failed to shut down
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:15 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:16 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:17 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:18 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:19 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:20 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck dbus-broker-launch[794]: Activation request for 'org.freedesktop.UPower' failed.
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:21 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:22 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:23 akideck gamescope-session[17278]: [gamescope] [Error] liftoff: drmModeAtomicCommit: Permission denied
Mar 17 17:09:24 akideck steam[17509]: Removing HIDAPI device 'Steam Deck' VID 0x28de, PID 0x1205, bluetooth 0, version 768, serial NONE, interface 2, interface_class 0, interface_subclass 0, interface_protocol 0, usage page 0xffff, usage 0x0001, path = /dev/hidraw2, driver = SDL_JOYSTICK_HIDAPI_STEAMDECK (ENABLED)
Mar 17 17:09:24 akideck steam[17509]: [2025-03-17 17:09:24] Shutdown
Mar 17 17:09:24 akideck kernel: input: Steam Deck as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input56
Mar 17 17:09:24 akideck kernel: input: Steam Deck Motion Sensors as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3/3-3:1.2/0003:28DE:1205.0003/input/input57
Mar 17 17:09:24 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:124] Could not take device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:24 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:318] Failed to open device: '/dev/input/event8': Resource temporarily unavailable
Mar 17 17:09:24 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:124] Could not take device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:24 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:318] Failed to open device: '/dev/input/event9': Resource temporarily unavailable
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17509 (srt-logger) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17624 (srt-logger) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17799 (pressure-vessel) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17841 (steamwebhelper) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17854 (steamwebhelper) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17884 (steamwebhelper) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17885 (steamwebhelper) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17915 (steamwebhelper) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17952 (steamwebhelper) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17963 (steamwebhelper) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18119 (steamwebhelper) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18361 (steamwebhelper) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17957 (inotify_reader) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 17966 (ThreadPoolForeg) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18120 (ThreadPoolServi) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18123 (Chrome_ChildIOT) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18124 (GpuMemoryThread) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18127 (ThreadPoolForeg) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18128 (ThreadPoolForeg) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18129 (ThreadPoolForeg) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18282 (gmain) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18283 (gdbus) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18330 (gdbus) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18349 (n/a) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18350 (VideoFrameCompo) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18357 (ThreadPoolSingl) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18365 (ThreadPoolServi) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18367 (Chrome_ChildIOT) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18368 (n/a) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18369 (n/a) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18371 (vpx tile worker) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18393 (n/a) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18482 (ThreadPoolSingl) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18649 (Realtime AudioW) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Killing process 18771 (n/a) with signal SIGKILL.
Mar 17 17:09:26 akideck systemd[1202]: Stopped Steam Launcher.
Mar 17 17:09:26 akideck systemd[1202]: steam-launcher.service: Consumed 7min 30.846s CPU time, 3.8G memory peak.
Mar 17 17:09:26 akideck systemd[1202]: Stopped target Current graphical user session.
Mar 17 17:09:26 akideck systemd[1202]: Stopping Gamescope Session...
Mar 17 17:09:26 akideck gamescope-session[17278]: [gamescope] [Error] drm: finish_drm: drmModeAtomicCommit failed: Permission denied
Mar 17 17:09:27 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: [xwayland/server.c:217] Restarting Xwayland
Mar 17 17:09:27 akideck gamescope-session[17278]: [gamescope] [Info]  wlserver: [xwayland/server.c:217] Restarting Xwayland
Mar 17 17:09:27 akideck gamescope-session[22193]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :0
Mar 17 17:09:27 akideck gamescope-session[22195]: [gamescope] [Info]  wlserver: [xwayland/server.c:107] Starting Xwayland on :1
Mar 17 17:09:27 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:176] Could not close device: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:27 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [backend/session/session.c:353] Failed to close device 30: Resource temporarily unavailable
Mar 17 17:09:27 akideck gamescope-session[17278]: [gamescope] [Error] wlserver: [libseat] [libseat/backend/logind.c:318] Could not release control of session: Unknown object '/org/freedesktop/login1/session/_37'.
Mar 17 17:09:27 akideck gamescope-session[17278]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 17 17:09:27 akideck gamescope-session[17278]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 17 17:09:27 akideck gamescope-session[17278]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 17 17:09:27 akideck gamescope-session[17278]: [gamescope] [Error] drm: drmModeRmFB failed: Bad file descriptor
Mar 17 17:09:27 akideck gamescope-session[22195]: (EE)
Mar 17 17:09:27 akideck gamescope-session[22193]: (EE)
Mar 17 17:09:27 akideck gamescope-session[22195]:  
Mar 17 17:09:27 akideck gamescope-session[22193]:  
Mar 17 17:09:27 akideck gamescope-session[22195]: could not connect to wayland server
Mar 17 17:09:27 akideck gamescope-session[22193]: could not connect to wayland server
Mar 17 17:09:27 akideck drm_janitor[22196]: open() failed: Permission denied
Mar 17 17:09:27 akideck systemd[1202]: Stopped Gamescope Session.
Mar 17 17:09:27 akideck systemd[1202]: gamescope-session.service: Consumed 38.372s CPU time, 93.1M memory peak.
Mar 17 17:09:27 akideck systemd[1202]: Stopped target Session services which should run early before the graphical session is brought up.
Mar 17 17:09:27 akideck systemd[1202]: Stopped target Basic System.
Mar 17 17:09:27 akideck systemd[1202]: Stopped target Paths.
Mar 17 17:09:27 akideck systemd[1202]: Stopped Submitting pending crash events (file monitor).
Mar 17 17:09:27 akideck systemd[1202]: Stopped target Sockets.
Mar 17 17:09:27 akideck systemd[1202]: Stopped target Timers.
Mar 17 17:09:27 akideck systemd[1202]: Closed GnuPG network certificate management daemon.
Mar 17 17:09:27 akideck systemd[1202]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Mar 17 17:09:27 akideck systemd[1202]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Mar 17 17:09:27 akideck systemd[1202]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Mar 17 17:09:27 akideck systemd[1202]: Closed GnuPG cryptographic agent and passphrase cache.
Mar 17 17:09:27 akideck systemd[1202]: Closed GnuPG public key management service.
Mar 17 17:09:27 akideck systemd[1202]: Closed p11-kit server.
Mar 17 17:09:27 akideck systemd[1202]: Closed PipeWire PulseAudio.
Mar 17 17:09:27 akideck systemd[1202]: Closed PipeWire Multimedia System Sockets.
Mar 17 17:09:27 akideck dbus-broker[1341]: Dispatched 29374 messages @ 4(±6)μs / message.
Mar 17 17:09:27 akideck systemd[1202]: Stopping D-Bus User Message Bus...
Mar 17 17:09:27 akideck systemd[1202]: Stopped D-Bus User Message Bus.
Mar 17 17:09:27 akideck systemd[1202]: Removed slice User Core Session Slice.
Mar 17 17:09:27 akideck systemd[1202]: session.slice: Consumed 19min 22.746s CPU time, 752.9M memory peak, 37.4M memory swap peak.
Mar 17 17:09:27 akideck systemd[1202]: Closed D-Bus User Message Bus Socket.
Mar 17 17:09:27 akideck systemd[1202]: Removed slice User Application Slice.
Mar 17 17:09:27 akideck systemd[1202]: app.slice: Consumed 5h 22min 6.939s CPU time, 12.1G memory peak, 2.3G memory swap peak.
Mar 17 17:09:27 akideck systemd[1202]: Reached target Shutdown.
Mar 17 17:09:27 akideck systemd[1202]: Finished Exit the Session.
Mar 17 17:09:27 akideck systemd[1202]: Reached target Exit the Session.
Mar 17 17:09:27 akideck (sd-pam)[1224]: pam_unix(systemd-user:session): session closed for user deck
Mar 17 17:09:27 akideck systemd[1]: user@1000.service: Deactivated successfully.
Mar 17 17:09:27 akideck systemd[1]: Stopped User Manager for UID 1000.
Mar 17 17:09:27 akideck systemd[1]: user@1000.service: Consumed 5h 41min 41.375s CPU time, 12.5G memory peak, 2.3G memory swap peak.
Mar 17 17:09:27 akideck systemd[1]: Stopping Permit User Sessions...
Mar 17 17:09:27 akideck systemd[1]: Stopping User Runtime Directory /run/user/1000...
Mar 17 17:09:27 akideck systemd[1]: run-user-1000.mount: Deactivated successfully.
Mar 17 17:09:27 akideck systemd[1]: Unmounted /run/user/1000.
Mar 17 17:09:27 akideck systemd[1]: systemd-user-sessions.service: Deactivated successfully.
Mar 17 17:09:27 akideck systemd[1]: Stopped Permit User Sessions.
Mar 17 17:09:27 akideck systemd[1]: Stopped target Network.
Mar 17 17:09:27 akideck systemd[1]: Stopped target Remote File Systems.
Mar 17 17:09:27 akideck systemd[1]: Stopping Network Manager...
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.4346] caught SIGTERM, shutting down normally.
Mar 17 17:09:27 akideck iwd[1201]: Terminate
Mar 17 17:09:27 akideck iwd[1201]: Removing scan context for wdev 2
Mar 17 17:09:27 akideck systemd[1]: Stopping Wireless service...
Mar 17 17:09:27 akideck systemd[1]: steamos-create-homedir.service: Deactivated successfully.
Mar 17 17:09:27 akideck systemd[1]: Stopped Create UID 1000 homedir on first boot/after factory reset.
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.4356] device (/net/connman/iwd/0): state change: disconnected -> unmanaged (reason 'unmanaged-quitting', managed-type: 'full')
Mar 17 17:09:27 akideck kernel: [drm] Failed to add display topology, DTM TA is not initialized.
Mar 17 17:09:27 akideck kernel: wlan0: deauthenticating from e8:9c:25:49:01:88 by local choice (Reason: 3=DEAUTH_LEAVING)
Mar 17 17:09:27 akideck systemd[1]: user-runtime-dir@1000.service: Deactivated successfully.
Mar 17 17:09:27 akideck systemd[1]: Stopped User Runtime Directory /run/user/1000.
Mar 17 17:09:27 akideck systemd[1]: Removed slice User Slice of UID 1000.
Mar 17 17:09:27 akideck systemd[1]: user-1000.slice: Consumed 5h 42min 20.206s CPU time, 12.5G memory peak, 2.3G memory swap peak.
Mar 17 17:09:27 akideck systemd[1]: Stopping User Login Management...
Mar 17 17:09:27 akideck systemd-logind[871]: Removed session 2.
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.5733] device (wlan0): state change: activated -> deactivating (reason 'unmanaged', managed-type: 'full')
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.5737] manager: NetworkManager state is now DISCONNECTING
Mar 17 17:09:27 akideck dbus-broker-launch[794]: Activation request for 'org.freedesktop.nm_dispatcher' failed.
Mar 17 17:09:27 akideck NetworkManager[1062]: <warn>  [1742256567.5780] dispatcher: (43) failed (after 0.004 sec): Could not activate remote peer 'org.freedesktop.nm_dispatcher': activation request failed: unit is invalid
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.5782] device (wlan0): state change: deactivating -> unmanaged (reason 'unmanaged-quitting', managed-type: 'full')
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.5785] dhcp4 (wlan0): canceled DHCP transaction
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.5785] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.5785] dhcp4 (wlan0): state changed no lease
Mar 17 17:09:27 akideck systemd-resolved[556]: wlan0: Bus client reset search domain list.
Mar 17 17:09:27 akideck systemd-resolved[556]: wlan0: Bus client set default route setting: no
Mar 17 17:09:27 akideck systemd-resolved[556]: wlan0: Bus client reset DNS server list.
Mar 17 17:09:27 akideck dbus-broker-launch[794]: Activation request for 'org.freedesktop.nm_dispatcher' failed.
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.6674] manager: NetworkManager state is now DISCONNECTED
Mar 17 17:09:27 akideck dbus-broker-launch[794]: Activation request for 'org.freedesktop.nm_dispatcher' failed.
Mar 17 17:09:27 akideck NetworkManager[1062]: <info>  [1742256567.6832] exiting (success)
Mar 17 17:09:27 akideck systemd[1]: NetworkManager.service: Deactivated successfully.
Mar 17 17:09:27 akideck systemd[1]: Stopped Network Manager.
Mar 17 17:09:27 akideck systemd[1]: NetworkManager.service: Consumed 1.787s CPU time, 9.6M memory peak.
Mar 17 17:09:27 akideck systemd[1]: systemd-logind.service: Deactivated successfully.
Mar 17 17:09:27 akideck systemd[1]: Stopped User Login Management.
Mar 17 17:09:27 akideck systemd[1]: systemd-logind.service: Consumed 1.152s CPU time, 4.5M memory peak.
Mar 17 17:09:27 akideck systemd[1]: Stopped target User and Group Name Lookups.
Mar 17 17:09:28 akideck iwd[1201]: Removing scan context for wdev 3
Mar 17 17:09:28 akideck iwd[1201]: D-Bus disconnected, quitting...
Mar 17 17:09:28 akideck systemd[1]: iwd.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Wireless service.
Mar 17 17:09:28 akideck systemd[1]: Stopped target Preparation for Network.
Mar 17 17:09:28 akideck systemd[1]: Stopping firewalld - dynamic firewall daemon...
Mar 17 17:09:28 akideck systemd[1]: firewalld.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped firewalld - dynamic firewall daemon.
Mar 17 17:09:28 akideck systemd[1]: Stopping Authorization Manager...
Mar 17 17:09:28 akideck systemd[1]: polkit.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Authorization Manager.
Mar 17 17:09:28 akideck systemd[1]: polkit.service: Consumed 2.047s CPU time, 8.6M memory peak.
Mar 17 17:09:28 akideck systemd[1]: Stopped target Basic System.
Mar 17 17:09:28 akideck systemd[1]: Stopped target Path Units.
Mar 17 17:09:28 akideck systemd[1]: Stopped target Slice Units.
Mar 17 17:09:28 akideck systemd[1]: Removed slice User and Session Slice.
Mar 17 17:09:28 akideck systemd[1]: user.slice: Consumed 5h 42min 20.206s CPU time, 12.5G memory peak, 2.3G memory swap peak.
Mar 17 17:09:28 akideck systemd[1]: Stopped target Socket Units.
Mar 17 17:09:28 akideck systemd[1]: avahi-daemon.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed Avahi mDNS/DNS-SD Stack Activation Socket.
Mar 17 17:09:28 akideck systemd[1]: cups.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed CUPS Scheduler.
Mar 17 17:09:28 akideck systemd[1]: dirmngr@etc-pacman.d-gnupg.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Mar 17 17:09:28 akideck systemd[1]: Removed slice Slice /system/dirmngr.
Mar 17 17:09:28 akideck systemd[1]: gpg-agent-browser@etc-pacman.d-gnupg.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Mar 17 17:09:28 akideck systemd[1]: Removed slice Slice /system/gpg-agent-browser.
Mar 17 17:09:28 akideck systemd[1]: gpg-agent-extra@etc-pacman.d-gnupg.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Mar 17 17:09:28 akideck systemd[1]: Removed slice Slice /system/gpg-agent-extra.
Mar 17 17:09:28 akideck systemd[1]: gpg-agent-ssh@etc-pacman.d-gnupg.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Mar 17 17:09:28 akideck systemd[1]: Removed slice Slice /system/gpg-agent-ssh.
Mar 17 17:09:28 akideck systemd[1]: gpg-agent@etc-pacman.d-gnupg.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Mar 17 17:09:28 akideck systemd[1]: Removed slice Slice /system/gpg-agent.
Mar 17 17:09:28 akideck systemd[1]: keyboxd@etc-pacman.d-gnupg.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed GnuPG public key management service for /etc/pacman.d/gnupg.
Mar 17 17:09:28 akideck systemd[1]: Removed slice Slice /system/keyboxd.
Mar 17 17:09:28 akideck systemd[1]: sshd-unix-local.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
Mar 17 17:09:28 akideck systemd[1]: steam-web-debug-portforward.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed steam-web-debug-portforward.socket.
Mar 17 17:09:28 akideck systemd[1]: systemd-hostnamed.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed Hostname Service Socket.
Mar 17 17:09:28 akideck systemd[1]: systemd-importd.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed Disk Image Download Service Socket.
Mar 17 17:09:28 akideck dbus-broker[799]: Dispatched 40860 messages @ 6(±8)μs / message.
Mar 17 17:09:28 akideck systemd[1]: Stopping D-Bus System Message Bus...
Mar 17 17:09:28 akideck systemd[1]: dbus-broker.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped D-Bus System Message Bus.
Mar 17 17:09:28 akideck systemd[1]: dbus-broker.service: Consumed 2.044s CPU time, 5.6M memory peak.
Mar 17 17:09:28 akideck systemd[1]: dbus.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed D-Bus System Message Bus Socket.
Mar 17 17:09:28 akideck systemd[1]: Stopped target System Initialization.
Mar 17 17:09:28 akideck systemd[1]: proc-sys-fs-binfmt_misc.automount: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Unset automount Arbitrary Executable File Formats File System Automount Point.
Mar 17 17:09:28 akideck systemd[1]: Stopped target Local Encrypted Volumes.
Mar 17 17:09:28 akideck systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
Mar 17 17:09:28 akideck systemd[1]: systemd-ask-password-wall.path: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
Mar 17 17:09:28 akideck systemd[1]: Stopped target Local Integrity Protected Volumes.
Mar 17 17:09:28 akideck systemd[1]: Stopped target Local Verity Protected Volumes.
Mar 17 17:09:28 akideck systemd[1]: Stopping Network Name Resolution...
Mar 17 17:09:28 akideck systemd[1]: Stopping Network Time Synchronization...
Mar 17 17:09:28 akideck systemd[1]: systemd-update-done.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Update is Completed.
Mar 17 17:09:28 akideck systemd[1]: ldconfig.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Rebuild Dynamic Linker Cache.
Mar 17 17:09:28 akideck systemd[1]: systemd-journal-catalog-update.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Rebuild Journal Catalog.
Mar 17 17:09:28 akideck systemd[1]: Stopping Record System Boot/Shutdown in UTMP...
Mar 17 17:09:28 akideck systemd[1]: proc-sys-fs-binfmt_misc.mount: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: systemd-resolved.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Network Name Resolution.
Mar 17 17:09:28 akideck systemd[1]: systemd-resolved.service: Consumed 1.510s CPU time, 6.6M memory peak.
Mar 17 17:09:28 akideck systemd[1]: systemd-timesyncd.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Network Time Synchronization.
Mar 17 17:09:28 akideck systemd[1]: systemd-sysctl.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Apply Kernel Variables.
Mar 17 17:09:28 akideck systemd[1]: systemd-coredump.socket: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Closed Process Core Dump Socket.
Mar 17 17:09:28 akideck systemd[1]: systemd-modules-load.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Load Kernel Modules.
Mar 17 17:09:28 akideck systemd[1]: systemd-update-utmp.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Record System Boot/Shutdown in UTMP.
Mar 17 17:09:28 akideck systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
Mar 17 17:09:28 akideck systemd[1]: Stopped Create System Files and Directories.
Mar 17 17:09:28 akideck systemd[1]: Stopped target Local File Systems.
Mar 17 17:09:28 akideck systemd[1]: efi.automount: Deactivated successfully.
Mar 17 17:09:29 akideck systemd[1]: Unset automount efi.automount.
Mar 17 17:09:29 akideck systemd[1]: esp.automount: Deactivated successfully.
Mar 17 17:09:29 akideck systemd[1]: Unset automount esp.automount.
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /nix...
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /opt...
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /root...
Mar 17 17:09:29 akideck systemd[1]: Unmounting /run/media/deck/AkiDeck...
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /srv...
Mar 17 17:09:29 akideck systemd[1]: Unmounting Temporary Directory /tmp...
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /var/cache/pacman...
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /var/lib/docker...
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /var/lib/flatpak...
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /var/lib/steamos-log-submitter...
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /var/lib/systemd/coredump...
Mar 17 17:09:29 akideck systemd[1]: Unmounting SteamOS Offload - /var/tmp...
Mar 17 17:09:29 akideck systemd[1]: systemd-growfs@home.service: Deactivated successfully.
Mar 17 17:09:29 akideck systemd[1]: Stopped Grow File System on /home.
Mar 17 17:09:29 akideck systemd[1]: Removed slice Slice /system/systemd-growfs.
Mar 17 17:09:29 akideck systemd[1]: Stopping Flush Journal to Persistent Storage...
Mar 17 17:09:29 akideck systemd[1]: systemd-repart.service: Deactivated successfully.
Mar 17 17:09:29 akideck systemd[1]: Stopped Repartition Root Disk.
Mar 17 17:09:29 akideck systemd[1]: nix.mount: Deactivated successfully.
Mar 17 17:09:29 akideck systemd[1]: Unmounted SteamOS Offload - /nix.
Mar 17 17:09:29 akideck systemd[1]: opt.mount: Deactivated successfully.
Mar 17 17:09:29 akideck systemd[1]: Unmounted SteamOS Offload - /opt.
Mar 17 17:09:29 akideck systemd[1]: root.mount: Deactivated successfully.
Mar 17 17:09:29 akideck systemd[1]: Unmounted SteamOS Offload - /root.
Mar 17 17:09:29 akideck systemd[1]: srv.mount: Deactivated successfully.
Mar 17 17:09:29 akideck systemd[1]: Unmounted SteamOS Offload - /srv.

[Index of Archives]     [Linux Host AP]     [ATH6KL]     [Linux Wireless Personal Area Network]     [Linux Bluetooth]     [Wireless Regulations]     [Linux Netdev]     [Kernel Newbies]     [Linux Kernel]     [IDE]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite Hiking]     [MIPS Linux]     [ARM Linux]     [Linux RAID]

  Powered by Linux