Starting with "One": 1 "Two": 2 "Three": 3 how can we achieve the desired outcome: "One": "Two": "Three": 1 2 3 We don’t really care whether the colon and/or space is included, we just want anything after : moved to the bottom in order. All the examples I could find […]
Daily Archives: October 28, 2025
Goal: I would like to make a SATA optical drive available to a vm. Attempted solution: The docs and every post I have stumbled upon indicate the the solution is the following snippet: <controller type='scsi' index='0' model='virtio-scsi'/> <hostdev mode='subsystem' type='scsi'> <source> <adapter name='scsi_host2'/> <address type='scsi' bus='0' target='0' unit='0'/> </source> <readonly/> […]
I’m creating a custom Proton-based “Windows layer” (without Steam) to run .exe files directly on Linux. Running them from terminal works fine — but double-clicking via a .desktop launcher does nothing. 🧩 Working terminal test This command works perfectly — Proton starts and logs output: xdg-open ~/Téléchargements/Bulletin de paie/guiformat.exe Terminal […]