This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[2025-01-08 22:07:10.894 INF] Streamer.bot (0.2.0) | |
[2025-01-08 22:07:10.935 INF] Startup Path: Z:\home\krummen\.local\lib\streamer.bot | |
[2025-01-08 22:07:10.935 INF] Logging Level: Debug | |
[2025-01-08 22:07:10.935 INF] Instance Id: 08dc0859-54d2-4f6d-aa45-ab8117c0abe1 | |
[2025-01-08 22:07:10.935 INF] Instance Name: Streamer.bot | |
[2025-01-08 22:07:10.935 INF] Operating System: Windows | |
[2025-01-08 22:07:11.196 DBG] Events Service :: Starting application event queue thread | |
[2025-01-08 22:07:11.197 DBG] Events Service :: Starting raw event queue thread | |
[2025-01-08 22:07:11.197 DBG] Events Service :: Starting event queue thread | |
[2025-01-08 22:07:11.491 DBG] Users :: Loaded 6436 users. |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
====================== | |
Proton: 1734948014 experimental-9.0-20241223 | |
SteamGameId: 493520 | |
Command: ['/mnt/raid/SteamLibrary/steamapps/common/GTFO/GTFO.exe'] | |
Options: {'forcelgadd'} | |
depot: 0.20241118.108552 | |
pressure-vessel: 0.20241118.0 scout | |
scripts: 0.20241118.0 | |
sniper: 0.20241118.108552 sniper 0.20241118.108552 | |
Kernel: Linux 6.8.0-51-generic #52-Ubuntu SMP PREEMPT_DYNAMIC Thu Dec 5 13:09:44 UTC 2024 x86_64 |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
====================== | |
Proton: 1734948014 experimental-9.0-20241223 | |
SteamGameId: 493520 | |
Command: ['/mnt/raid/SteamLibrary/steamapps/common/GTFO/GTFO.exe', '-vrmode'] | |
Options: {'forcelgadd'} | |
depot: 0.20241118.108552 | |
pressure-vessel: 0.20241118.0 scout | |
scripts: 0.20241118.0 | |
sniper: 0.20241118.108552 sniper 0.20241118.108552 | |
Kernel: Linux 6.8.0-51-generic #52-Ubuntu SMP PREEMPT_DYNAMIC Thu Dec 5 13:09:44 UTC 2024 x86_64 |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
====================== | |
Proton: 1727105898 experimental-9.0-20240918b | |
SteamGameId: 1222730 | |
Command: ['/home/deck/.local/share/Steam/steamapps/common/STAR WARS Squadrons/starwarssquadrons_launcher.exe'] | |
Options: {'forcelgadd'} | |
depot: 0.20240820.99315 | |
pressure-vessel: 0.20240820.0 scout | |
scripts: 0.20240820.0 | |
sniper: 0.20240820.99315 sniper 0.20240820.99315 | |
Kernel: Linux 6.1.52-valve16-1-neptune-61 #1 SMP PREEMPT_DYNAMIC Tue, 06 Feb 2024 00:51:49 +0000 x86_64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
====================== | |
Proton: 1715226428 experimental-bleeding-edge-9.0-95802-20240509-p009548-w293ab5-d6b76d7-v97959d | |
SteamGameId: 1849900 | |
Command: ['/home/krummen/.local/share/Steam/steamapps/common/Among Us VR/AmongUsVR.exe', '-xrmode', 'openvr'] | |
Options: {'forcelgadd'} | |
depot: 0.20240415.84603 | |
pressure-vessel: 0.20240415.0 scout | |
scripts: 0.20240415.0 | |
sniper: 0.20240415.84603 sniper 0.20240415.84603 | |
Kernel: Linux 6.5.0-28-generic #29~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu Apr 4 14:39:20 UTC 2 x86_64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
====================== | |
Proton: 1714732344 experimental-9.0-20240503b | |
SteamGameId: 1849900 | |
Command: ['/home/krummen/.local/share/Steam/steamapps/common/Among Us VR/AmongUsVR.exe', '-xrmode', 'openvr'] | |
Options: {'forcelgadd'} | |
depot: 0.20240415.84603 | |
pressure-vessel: 0.20240415.0 scout | |
scripts: 0.20240415.0 | |
sniper: 0.20240415.84603 sniper 0.20240415.84603 | |
Kernel: Linux 6.5.0-28-generic #29~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu Apr 4 14:39:20 UTC 2 x86_64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://unix.stackexchange.com/a/668691/208549 | |
vidpid_to_devs(){ | |
find $(grep -l "PRODUCT=$(printf "%x/%x" "0x${1%:*}" "0x${1#*:}")" \ | |
/sys/bus/usb/devices/[0-9]*:*/uevent | sed 's,uevent$,,') \ | |
/dev/null -name dev -o -name dev_id | | |
sed 's,[^/]*$,uevent,' | | |
xargs sed -n -e s,DEVNAME=,/dev/,p -e s,INTERFACE=,,p | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Computer Information: | |
Manufacturer: Notebook | |
Model: P7xxTM1 | |
Form Factor: Laptop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz | |
CPU Family: 0x6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Computer Information: | |
Manufacturer: Notebook | |
Model: P7xxTM1 | |
Form Factor: Laptop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz | |
CPU Family: 0x6 | |
CPU Model: 0x9e |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
====================== | |
Proton: 1697709592 experimental-8.0-20231019 | |
SteamGameId: 1485120 | |
Command: ['/home/krummen/.local/share/Steam/steamapps/common/BoomBox/BoomBox.exe'] | |
Options: {'forcelgadd'} | |
depot: 0.20231005.62324 | |
pressure-vessel: 0.20230928.1 scout | |
scripts: 0.20230928.1 | |
sniper: 0.20231005.62324 sniper 0.20231005.62324 | |
Kernel: Linux 5.15.0-88-generic #98~20.04.1-Ubuntu SMP Mon Oct 9 16:43:45 UTC 2023 x86_64 |
NewerOlder