systemd has stopped unmounting drives when they are idle. This is for quite some time through several updates, not new with the latest update. I have not found anything in forums for Manjaro or Arch mentioning this.
The mounting works perfectly when I access something below the mountpoint, e.g listing a directory with ls. But no matter how long I keep away from the drive, it stays mounted. I cannot find anything that might keep access open to the drive with lsof +D /data/hd1Tb/ .
How can I check what is keeping the drive mounted without activating the mounting?
The systemd unit files seem to be OK and should unmount the drive after 5 minutes idle.
Example:
$ cat /etc/systemd/system/data-hd1Tb.automount
[Unit]
Description=On demand mount hd1Tb on /data/hd1Tb
[Automount]
Where=/data/hd1Tb
TimeoutIdleSec=300
[Install]
WantedBy=multi-user.target
$ cat /etc/systemd/system/data-hd1Tb.mount
[Unit]
Description=mount hd1Tb on /data/hd1Tb
[Mount]
What=/dev/disk/by-label/hd1Tb
Where=/data/hd1Tb
Type=ext4
Options=defaults,noatime,discard
TimeoutSec=10
[Install]
WantedBy=multi-user.target
after 30 minutes of not running ANYTHING on the system
tir 11 aug 12:38:58 CEST 2026
systemctl list-automounts --all
WHAT WHERE MOUNTED IDLE TIMEOUT UNIT
/dev/sdb1 /data/hd1Tb yes 5min data-hd1Tb.automount
/dev/sdc1 /data/ssd200 yes 5min data-ssd200.automount
/dev/sda1 /data/swdisk yes 5min data-swdisk.automount
binfmt_misc /proc/sys/fs/binfmt_misc yes - proc-sys-fs-binfmt_misc.automount
4 automounts listed.
systemctl status data-hd1Tb.automount
● data-hd1Tb.automount - On demand mount hd1Tb on /data/hd1Tb
Loaded: loaded (/etc/systemd/system/data-hd1Tb.automount; enabled; preset: disabled)
Active: active (running) since Tue 2026-08-11 09:20:34 CEST; 3h 18min ago
Invocation: 0975fe55afdc4046b9b13bebae4352fa
Triggers: ● data-hd1Tb.mount
Where: /data/hd1Tb
aug 11 09:20:34 statPC systemd[1]: Set up automount On demand mount hd1Tb on /data/hd1Tb.
aug 11 09:22:22 statPC systemd[1]: data-hd1Tb.automount: Got automount request for /data/hd1Tb, triggered by 1759 (ls)
systemctl status data-hd1Tb.mount
● data-hd1Tb.mount - mount hd1Tb on /data/hd1Tb
Loaded: loaded (/etc/systemd/system/data-hd1Tb.mount; disabled; preset: disabled)
Active: active (mounted) since Tue 2026-08-11 09:22:23 CEST; 3h 16min ago
Invocation: a74c3b11a1e8444cae28458fd628a9d3
TriggeredBy: ● data-hd1Tb.automount
Where: /data/hd1Tb
What: /dev/sdb1
Tasks: 0 (limit: 18954)
Memory: 660K (peak: 2.5M)
CPU: 10ms
CGroup: /system.slice/data-hd1Tb.mount
aug 11 09:22:22 statPC systemd[1]: Mounting mount hd1Tb on /data/hd1Tb...
aug 11 09:22:23 statPC systemd[1]: Mounted mount hd1Tb on /data/hd1Tb.
=================================================================
systemctl status data-ssd200.automount
● data-ssd200.automount - On demand mount ssd200 on /data/ssd200
Loaded: loaded (/etc/systemd/system/data-ssd200.automount; enabled; preset: disabled)
Active: active (running) since Tue 2026-08-11 09:20:34 CEST; 3h 18min ago
Invocation: cb3c044f1c9f498fabfecea517ca5f93
Triggers: ● data-ssd200.mount
Where: /data/ssd200
aug 11 09:20:34 statPC systemd[1]: Set up automount On demand mount ssd200 on /data/ssd200.
aug 11 09:22:23 statPC systemd[1]: data-ssd200.automount: Got automount request for /data/ssd200, triggered by 1759 (ls)
systemctl status data-ssd200.mount
● data-ssd200.mount - mount ssd200 on /data/ssd200
Loaded: loaded (/etc/systemd/system/data-ssd200.mount; disabled; preset: disabled)
Active: active (mounted) since Tue 2026-08-11 09:22:23 CEST; 3h 16min ago
Invocation: c3bbd0ef663d482f91203f6a1b38702d
TriggeredBy: ● data-ssd200.automount
Where: /data/ssd200
What: /dev/sdc1
Tasks: 0 (limit: 18954)
Memory: 2.2M (peak: 2.7M)
CPU: 9ms
CGroup: /system.slice/data-ssd200.mount
aug 11 09:22:23 statPC systemd[1]: Mounting mount ssd200 on /data/ssd200...
aug 11 09:22:23 statPC systemd[1]: Mounted mount ssd200 on /data/ssd200.
=================================================================
systemctl status data-swdisk.automount
● data-swdisk.automount - On demand mount swdisk on /data/swdisk
Loaded: loaded (/etc/systemd/system/data-swdisk.automount; enabled; preset: disabled)
Active: active (running) since Tue 2026-08-11 09:20:34 CEST; 3h 18min ago
Invocation: 7a8ca2a3eb5a4655912b583b3d15f5eb
Triggers: ● data-swdisk.mount
Where: /data/swdisk
aug 11 09:20:34 statPC systemd[1]: Set up automount On demand mount swdisk on /data/swdisk.
aug 11 09:22:23 statPC systemd[1]: data-swdisk.automount: Got automount request for /data/swdisk, triggered by 1759 (ls)
systemctl status data-swdisk.mount
● data-swdisk.mount - mount swdisk on /data/swdisk
Loaded: loaded (/etc/systemd/system/data-swdisk.mount; disabled; preset: disabled)
Active: active (mounted) since Tue 2026-08-11 09:22:24 CEST; 3h 16min ago
Invocation: fa546d80e6fc44da85eb06bcb1828835
TriggeredBy: ● data-swdisk.automount
Where: /data/swdisk
What: /dev/sda1
Tasks: 0 (limit: 18954)
Memory: 524K (peak: 2.2M)
CPU: 9ms
CGroup: /system.slice/data-swdisk.mount
aug 11 09:22:23 statPC systemd[1]: Mounting mount swdisk on /data/swdisk...
aug 11 09:22:24 statPC systemd[1]: Mounted mount swdisk on /data/swdisk.
=================================================================
tir 11 aug 12:38:58 CEST 2026
inxi -zv8
System:
Kernel: 6.18.42-1-MANJARO arch: x86_64 bits: 64 compiler: gcc v: 16.1.1
clocksource: tsc avail: hpet,acpi_pm
parameters: BOOT_IMAGE=/boot/vmlinuz-6.18-x86_64
root=UUID=f3904944-7f28-4603-975d-69a3043ccbfa rw hibernate=no nowatchdog
mitigations=off security=none "dyndbg=func fw_log_firmware_info +p"
udev.log_priority=3
Desktop: KDE Plasma v: 6.7.4 tk: Qt v: N/A info: frameworks v: 6.28.0
wm: kwin_wayland with: krunner vt: 1 dm: SDDM Distro: Manjaro
base: Arch Linux
Machine:
Type: Desktop Mobo: ASUSTeK model: PRIME B450-PLUS v: Rev X.0x
serial: <superuser required> part-nu: SKU uuid: <superuser required>
Firmware: BIOS vendor: American Megatrends v: 4631 date: 01/14/2025
Battery:
Device-1: hidpp_battery_0 model: Logitech Wireless Keyboard serial: <filter>
charge: 55% (should be ignored) rechargeable: yes status: discharging
Memory:
System RAM: total: 16 GiB available: 15.52 GiB used: 2.63 GiB (16.9%)
Message: For most reliable report, use superuser + dmidecode.
Array-1: capacity: 128 GiB slots: 4 modules: 1 EC: None
max-module-size: 32 GiB note: est.
Device-1: DIMM_A1 type: no module installed
Device-2: DIMM_A2 type: DDR4 detail: synchronous unbuffered (unregistered)
size: 16 GiB speed: 3000 MT/s volts: note: check curr: 1 min: 1 max: 1
width (bits): data: 64 total: 64 manufacturer: G Skill Intl
part-no: F4-3000C16-16GISB serial: N/A
Device-3: DIMM_B1 type: no module installed
Device-4: DIMM_B2 type: no module installed
PCI Slots:
Permissions: Unable to run dmidecode. Root privileges required.
CPU:
Info: model: AMD Ryzen 5 3600 bits: 64 type: MT MCP arch: Zen 2 gen: 2
level: v3 note: check built: 2020-22 process: TSMC n7 (7nm)
family: 0x17 (23) model-id: 0x71 (113) stepping: 0 microcode: 0x8701035
Topology: cpus: 1x dies: 1 clusters: 1 cores: 6 threads: 12 tpc: 2
smt: enabled cache: L1: 384 KiB desc: d-6x32 KiB; i-6x32 KiB L2: 3 MiB
desc: 6x512 KiB L3: 32 MiB desc: 2x16 MiB
Speed (MHz): avg: 1724 min/max: 558/4208 boost: enabled scaling:
driver: amd-pstate-epp governor: powersave cores: 1: 1724 2: 1724 3: 1724
4: 1724 5: 1724 6: 1724 7: 1724 8: 1724 9: 1724 10: 1724 11: 1724 12: 1724
bogomips: 86404
Flags: 3dnowprefetch abm adx aes aperfmperf apic arat avic avx avx2 bmi1
bmi2 bpext cat_l3 cdp_l3 clflush clflushopt clwb clzero cmov cmp_legacy
constant_tsc cpb cpuid cqm cqm_llc cqm_mbm_local cqm_mbm_total
cqm_occup_llc cr8_legacy cx16 cx8 de decodeassists extapic extd_apicid
f16c flushbyasid fma fpu fsgsbase fxsr fxsr_opt ht hw_pstate ibpb ibs
irperf lahf_lm lbrv lm mba mca mce misalignsse mmx mmxext monitor movbe
msr mtrr mwaitx nonstop_tsc nopl npt nrip_save nx osvw overflow_recov pae
pat pausefilter pclmulqdq pdpe1gb perfctr_core perfctr_llc perfctr_nb
pfthreshold pge pni popcnt pse pse36 rapl rdpid rdpru rdrand rdseed rdt_a
rdtscp rep_good sep sev sev_es sha_ni skinit smap smca smep ssbd sse sse2
sse4_1 sse4_2 sse4a ssse3 stibp succor svm svm_lock syscall tce topoext
tsc tsc_scale umip v_spec_ctrl v_vmsave_vmload vgif vmcb_clean vme
vmmcall wbnoinvd wdt x2apic xgetbv1 xsave xsavec xsaveerptr xsaveopt
xtopology
Vulnerabilities:
Type: gather_data_sampling status: Not affected
Type: ghostwrite status: Not affected
Type: indirect_target_selection status: Not affected
Type: itlb_multihit status: Not affected
Type: l1tf status: Not affected
Type: mds status: Not affected
Type: meltdown status: Not affected
Type: mmio_stale_data status: Not affected
Type: old_microcode status: Not affected
Type: reg_file_data_sampling status: Not affected
Type: retbleed status: Vulnerable
Type: spec_rstack_overflow status: Vulnerable
Type: spec_store_bypass status: Vulnerable
Type: spectre_v1 status: Vulnerable: __user pointer sanitization and
usercopy barriers only; no swapgs barriers
Type: spectre_v2 status: Vulnerable; IBPB: disabled; STIBP: disabled;
PBRSB-eIBRS: Not affected; BHI: Not affected
Type: srbds status: Not affected
Type: tsa status: Not affected
Type: tsx_async_abort status: Not affected
Type: vmscape status: Vulnerable
Graphics:
Device-1: Advanced Micro Devices [AMD/ATI] Ellesmere [Radeon RX
470/480/570/570X/580/580X/590] vendor: Gigabyte driver: amdgpu v: kernel
arch: GCN-4 code: Arctic Islands process: GF 14nm built: 2016-20 pcie:
gen: 3 speed: 8 GT/s lanes: 16 ports: active: DP-3,HDMI-A-1
empty: DP-1,DP-2,DVI-D-1 bus-ID: 08:00.0 chip-ID: 1002:67df class-ID: 0300
temp: 53.0 C
Display: wayland server: X.org v: 1.21.1.24 with: Xwayland v: 24.1.13
compositor: kwin_wayland driver: X: loaded: amdgpu unloaded: modesetting
alternate: fbdev,vesa dri: radeonsi gpu: amdgpu d-rect: 4480x2640
display-ID: 0
Monitor-1: DP-3 pos: bottom-r model: Denon DENON-AVR serial: <filter>
built: 2014 res: mode: 640x480 hz: 60 scale: 100% (1) dpi: 61 gamma: 1.2
chroma: red: x: 0.627 y: 0.341 green: x: 0.278 y: 0.596 blue: x: 0.153
y: 0.071 white: x: 0.282 y: 0.298 size: 800x450mm (27.87x15.67")
diag: 918mm (36.1") ratio: 16:9 modes: 1920x1080, 2880x576, 2880x480,
1280x720, 1440x576, 1440x480, 720x576, 720x480, 640x480
Monitor-2: HDMI-A-1 pos: primary,top-left model: Philips FTV
serial: <filter> built: 2017 res: mode: 3840x2160 hz: 60 scale: 200% (2)
to: 1920x1080 dpi: 34 gamma: 1.2 chroma: red: x: 0.651 y: 0.333 green:
x: 0.325 y: 0.588 blue: x: 0.145 y: 0.051 white: x: 0.278 y: 0.290
size: 1440x810mm (56.69x31.89") diag: 1652mm (65") ratio: 16:9
modes: 1920x1080, 3840x2160, 1600x1200, 1680x1050, 1400x1050, 1280x1024,
1440x900, 1280x960, 1280x800, 1280x720, 1024x768, 800x600, 720x576,
720x480, 640x480
EDID-Warnings: 1: parse_edid: unhandled CEA mode 97 2: parse_edid:
unhandled CEA mode 96 3: parse_edid: unhandled CEA mode 95 4: parse_edid:
unhandled CEA mode 94 5: parse_edid: unhandled CEA mode 93
API: EGL v: 1.5 hw: drv: amd radeonsi platforms: device: 0 drv: radeonsi
device: 1 drv: swrast gbm: drv: radeonsi surfaceless: drv: radeonsi wayland:
drv: radeonsi x11: drv: radeonsi
API: OpenGL v: 4.6 vendor: amd mesa v: 26.1.6-arch1.1 glx-v: 1.4
direct-render: yes renderer: AMD Radeon RX 590 Series (radeonsi polaris10
ACO DRM 3.64 6.18.42-1-MANJARO) device-ID: 1002:67df memory: 7.81 GiB
unified: no display-ID: :1.0
API: Vulkan v: 1.4.357 layers: 2 device: 0 type: discrete-gpu name: AMD
Radeon RX 590 Series (RADV POLARIS10) driver: mesa radv v: 26.1.6-arch1.1
device-ID: 1002:67df surfaces: N/A
Info: Tools: api: clinfo, eglinfo, glxinfo, vulkaninfo
de: kscreen-console,kscreen-doctor wl: wayland-info x11: xdpyinfo,xprop
Audio:
Device-1: Advanced Micro Devices [AMD/ATI] Ellesmere HDMI Audio [Radeon RX
470/480 / 570/580/590] vendor: Gigabyte driver: snd_hda_intel v: kernel
pcie: gen: 3 speed: 8 GT/s lanes: 16 bus-ID: 08:00.1 chip-ID: 1002:aaf0
class-ID: 0403
Device-2: Advanced Micro Devices [AMD] Starship/Matisse HD Audio
vendor: ASUSTeK driver: snd_hda_intel v: kernel pcie: gen: 4 speed: 16 GT/s
lanes: 16 bus-ID: 0a:00.4 chip-ID: 1022:1487 class-ID: 0403
API: ALSA v: k6.18.42-1-MANJARO status: kernel-api with: aoss
type: oss-emulator tools: alsactl,alsamixer,amixer
Server-1: sndiod v: N/A status: off tools: aucat,midicat,sndioctl
Server-2: JACK v: 1.9.22 status: off tools: N/A
Server-3: PipeWire v: 1.6.8 status: active with: 1: pipewire-pulse
status: active 2: wireplumber status: active 3: pipewire-alsa type: plugin
tools: pactl,pw-cat,pw-cli,wpctl
Network:
Device-1: Realtek RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet
vendor: ASUSTeK RTL8111H driver: r8169 v: kernel pcie: gen: 1
speed: 2.5 GT/s lanes: 1 port: f000 bus-ID: 03:00.0 chip-ID: 10ec:8168
class-ID: 0200
IF: enp3s0 state: up speed: 1000 Mbps duplex: full mac: <filter>
IP v4: <filter> type: dynamic noprefixroute scope: global
broadcast: <filter>
Info: services: NetworkManager, sshd, systemd-timesyncd
WAN IP: <filter>
Bluetooth:
Message: No bluetooth data found.
Logical:
Message: No logical block device data found.
RAID:
Message: No RAID data found.
Drives:
Local Storage: total: 2.52 TiB used: 1.18 TiB (47.0%)
SMART Message: Required tool smartctl not installed. Check --recommends
ID-1: /dev/sda maj-min: 8:0 vendor: Western Digital model: WD10EADS-00L5B1
size: 931.51 GiB block-size: physical: 512 B logical: 512 B speed: 3.0 Gb/s
tech: N/A serial: <filter> fw-rev: 1A01 scheme: GPT
ID-2: /dev/sdb maj-min: 8:16 vendor: Western Digital
model: WD10EADS-00L5B1 size: 931.51 GiB block-size: physical: 512 B
logical: 512 B speed: 3.0 Gb/s tech: N/A serial: <filter> fw-rev: 1A01
scheme: MBR
ID-3: /dev/sdc maj-min: 8:32 vendor: Micron model: MTFDDAK256MAY-1AH12ABHA
size: 238.47 GiB block-size: physical: 4096 B logical: 512 B speed: 6.0 Gb/s
tech: SSD serial: <filter> fw-rev: M5T4 scheme: MBR
ID-4: /dev/sdd maj-min: 8:48 vendor: A-Data model: SU800NS38
size: 476.94 GiB block-size: physical: 512 B logical: 512 B speed: 6.0 Gb/s
tech: SSD serial: <filter> fw-rev: 8B scheme: MBR
Message: No optical or floppy data found.
Partition:
ID-1: / raw-size: 476.94 GiB size: 468.38 GiB (98.21%)
used: 20.01 GiB (4.3%) fs: ext4 dev: /dev/sdd1 maj-min: 8:49 label: statroot
uuid: f3904944-7f28-4603-975d-69a3043ccbfa
ID-2: /data/hd1Tb raw-size: 931.51 GiB size: 915.82 GiB (98.31%)
used: 760.37 GiB (83.0%) fs: ext4 dev: /dev/sdb1 maj-min: 8:17 label: hd1Tb
uuid: a0f67169-c4c3-48e9-bafe-a73dc0983560
ID-3: /data/ssd200 raw-size: 238.47 GiB size: 233.67 GiB (97.99%)
used: 5.5 MiB (0.0%) fs: ext4 dev: /dev/sdc1 maj-min: 8:33 label: ssd200
uuid: 90a6ed92-904a-458e-90e7-427c598d9337
ID-4: /data/swdisk raw-size: 923.5 GiB size: 907.93 GiB (98.31%)
used: 431.82 GiB (47.6%) fs: ext4 dev: /dev/sda1 maj-min: 8:1 label: swdisk
uuid: ed96f3d3-edea-43bc-8418-2223e4ec312d
ID-5: /home/<filter>/cryptomount.fredox.vol raw-size: 650 MiB
size: 622.5 MiB (95.77%) used: 542.2 MiB (87.1%) fs: ext4 dev: /dev/dm-1
maj-min: 253:1 mapped: loop0 label: N/A uuid: N/A
Swap:
Kernel: swappiness: 60 (default) cache-pressure: 100 (default) zswap: yes
compressor: zstd max-pool: 20%
ID-1: swap-1 type: partition size: 8.01 GiB used: 0 KiB (0.0%)
priority: -2 dev: /dev/dm-0 maj-min: 253:0 mapped: swap label: swap
uuid: 56ec0d6b-fab8-424c-8caa-953e93af7b17
Unmounted:
ID-1: /dev/sda2 maj-min: 8:2 size: 8.01 GiB fs: ext2 label: cryptswap
uuid: 01319864-7821-48aa-a580-240abe298ed6
USB:
Hub-1: 1-0:1 info: hi-speed hub with single TT ports: 10 rev: 2.0
speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 1d6b:0002
class-ID: 0900
Device-1: 1-7:2 info: Logitech Nano Receiver type: keyboard,mouse
driver: logitech-djreceiver,usbhid interfaces: 2 rev: 2.0
speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 power: 98mA
chip-ID: 046d:c534 class-ID: 0301
Device-2: 1-9:3 info: NZXT Smart Device V2 type: HID
driver: nzxt-smart2,usbhid interfaces: 1 rev: 2.0 speed: 12 Mb/s (1.4 MiB/s)
lanes: 1 mode: 1.1 power: 100mA chip-ID: 1e71:2006 class-ID: 0300
serial: <filter>
Hub-2: 2-0:1 info: super-speed hub ports: 4 rev: 3.1
speed: 10 Gb/s (1.16 GiB/s) lanes: 1 mode: 3.2 gen-2x1 chip-ID: 1d6b:0003
class-ID: 0900
Hub-3: 3-0:1 info: hi-speed hub with single TT ports: 4 rev: 2.0
speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 1d6b:0002
class-ID: 0900
Hub-4: 3-1:2 info: Genesys Logic Hub ports: 4 rev: 2.1
speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 power: 100mA
chip-ID: 05e3:0610 class-ID: 0900
Hub-5: 4-0:1 info: super-speed hub ports: 4 rev: 3.1
speed: 10 Gb/s (1.16 GiB/s) lanes: 1 mode: 3.2 gen-2x1 chip-ID: 1d6b:0003
class-ID: 0900
Hub-6: 4-1:2 info: Genesys Logic USB3.0 Hub ports: 4 rev: 3.0
speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 05e3:0617
class-ID: 0900
Sensors:
System Temperatures: cpu: 52.0 C mobo: N/A gpu: amdgpu temp: 52.0 C
Fan Speeds (rpm): N/A gpu: amdgpu fan: 772
Repos:
Packages: pm: pacman pkgs: 1218 libs: 295 tools: pamac
Active pacman repo servers in: /etc/pacman.d/mirrorlist
1: https://mirrors2.manjaro.org/stable/$repo/$arch
2: https://mirrors.dotsrc.org/manjaro/stable/$repo/$arch
3: https://mirror.23m.com/manjaro/stable/$repo/$arch
4: http://ftp.uni-kl.de/pub/linux/manjaro/stable/$repo/$arch
5: https://mirror.alpix.eu/manjaro/stable/$repo/$arch
6: https://ftp.tu-chemnitz.de/pub/linux/manjaro/stable/$repo/$arch
7: https://ftp.halifax.rwth-aachen.de/manjaro/stable/$repo/$arch
8: https://ftp.rz.tu-bs.de/pub/mirror/manjaro.org/repos/stable/$repo/$arch
9: https://mirror.netcologne.de/manjaro/stable/$repo/$arch
10: https://ftp.gwdg.de/pub/linux/manjaro/stable/$repo/$arch
Processes:
CPU top: 5 of 374
1: cpu: 4.2% command: firefox pid: 45407 mem: 710.1 MiB (4.4%)
2: cpu: 2.9% command: firefox pid: 44343 mem: 692.0 MiB (4.3%)
3: cpu: 2.4% command: firefox pid: 45929 mem: 340.4 MiB (2.1%)
4: cpu: 1.2% command: kwin_wayland pid: 923 mem: 345.0 MiB (2.1%)
5: cpu: 0.7% command: konsole pid: 46369 mem: 119.1 MiB (0.7%)
Memory top: 5 of 374
1: mem: 710.1 MiB (4.4%) command: firefox pid: 45407 cpu: 4.2%
2: mem: 692.0 MiB (4.3%) command: firefox pid: 44343 cpu: 2.9%
3: mem: 364.9 MiB (2.2%) command: plasmashell pid: 1103 cpu: 0.1%
4: mem: 345.0 MiB (2.1%) command: kwin_wayland pid: 923 cpu: 1.2%
5: mem: 344.5 MiB (2.1%) command: krunner pid: 3507 cpu: 0.0%
Info:
Processes: 374 Power: uptime: 3h 55m states: freeze,mem suspend: deep
avail: s2idle wakeups: 0 hibernate: disabled image: 6.17 GiB
services: org_kde_powerdevil, power-profiles-daemon, upowerd Init: systemd
v: 261 default: graphical tool: systemctl
Compilers: gcc: 16.1.1 Shell: Bash v: 5.3.15 running-in: konsole
inxi: 3.3.41