This file contains hidden or 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
#? Config file for btop v. 1.4.3 | |
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. | |
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" | |
color_theme = "/usr/share/btop/themes/adapta.theme" | |
#* If the theme set background should be shown, set to False if you want terminal background transparency. | |
theme_background = True | |
#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. |
This file contains hidden or 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
========== | |
VULKANINFO | |
========== | |
Vulkan Instance Version: 1.4.313 | |
Instance Extensions: count = 24 | |
=============================== | |
VK_EXT_acquire_drm_display : extension revision 1 |
This file contains hidden or 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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by mosh configure 1.4.0, which was | |
generated by GNU Autoconf 2.72. Invocation command line was | |
$ ./configure | |
## --------- ## | |
## Platform. ## |
This file contains hidden or 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 | |
set -euo pipefail | |
# Our WWAN hardware | |
wwan_device=/dev/wwan0mbim0 | |
get_modem_index() { | |
mmcli -L | awk -F'/' '{print $NF+0}' | |
} |
This file contains hidden or 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
$ sudo mmcli -m 0 | |
----------------------------------- | |
General | path: /org/freedesktop/ModemManager1/Modem/0 | |
| device id: 33e891c0d14dbd6df46a45e20eb35cd46afa13d7 | |
----------------------------------- | |
Hardware | manufacturer: quectel | |
| model: EM120R_GL | |
| firmware revision: EM120RGLAPR02A07M4G | |
| carrier config: ROW_Commercial | |
| carrier config revision: 08010809 |
This file contains hidden or 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://wiki.archlinux.org/title/Unified_Extensible_Firmware_Interface/Secure_Boot#Enrolling_Option_ROM_digests | |
digests=$(grep -o 'Digest: "[a-f0-9]\{64\}"' | sed 's/Digest: "//;s/"$//') | |
counter=1 | |
: > OpROM.esl | |
for digest in ${digests}; do | |
output_file="OpROM${counter}.esl" | |
digest-to-efi-sig-list "${digest}" "$output_file" |
This file contains hidden or 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
T: Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=480 MxCh=12 | |
D: Ver= 2.00 Cls=09(hub ) Sub=00 Prot=01 MxPS=64 #Cfgs= 1 | |
P: Vendor=1d6b ProdID=0002 Rev=06.10 | |
S: Manufacturer=Linux 6.10.10-arch1-1 xhci-hcd | |
S: Product=xHCI Host Controller | |
S: SerialNumber=0000:0e:00.0 | |
C: #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=0mA | |
I: If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub | |
E: Ad=81(I) Atr=03(Int.) MxPS= 4 Ivl=256ms |
This file contains hidden or 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
[ 0.000000] Linux version 6.10.10-arch1-1 (linux@archlinux) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.0) #1 SMP PREEMPT_DYNAMIC Thu, 12 Sep 2024 17:21:02 +0000 | |
[ 0.000000] Command line: initrd=\initramfs-linux.img root=UUID=ae1bb2f4-ce00-4ec1-ab9c-47ebba1f9d19 rw fsck.mode=force fsck.repair=yes delayacct | |
[ 0.000000] BIOS-provided physical RAM map: | |
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable | |
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009afefff] usable | |
[ 0.000000] BIOS-e820: [mem 0x0000000009aff000-0x0000000009ffffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable | |
[ 0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20ffff] ACPI NVS | |
[ 0.000000] BIOS-e820: [mem 0x000000000a210000-0x000000000affffff] usable |
This file contains hidden or 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
#!/usr/bin/env python3 | |
import pyudev | |
import re | |
from systemd import journal | |
def get_pci_id(): | |
context = pyudev.Context() | |
pci_pattern = re.compile(r'^[0-9a-f]{4}:[0-9a-f]{2}:[0-9a-f]{2}\.[0-9].*Ethernet controller: Intel Corporation.*I225-V.*rev 03$', re.IGNORECASE) | |
This file contains hidden or 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
[ | |
{ | |
"id": 0, | |
"type": "PipeWire:Interface:Core", | |
"version": 4, | |
"permissions": [ "r", "x", "m" ], | |
"info": { | |
"cookie": 4278053126, | |
"user-name": "strykar", | |
"host-name": "r912", |
NewerOlder