Is it a bad practice to replace compiler warnings with a bunch of TODO notes?
Is it a bad practice to replace compiler warnings with a bunch of TODO notes?
Is it a bad practice to replace compiler warnings with a bunch of TODO notes?
Audacity (cant record desktop audio, stuck on alsa)
Flatpaks "Unable to open lock file /usr/.ref: No such file or directory", some flatpaks affected
How to see thumbnails over mtp (kde)
How to encrypt an image (and other stuff) graphically on linux
Can a raspberrypi 4 be used with lancache for a lan party well?
Why does df not show the full avalible size in glusterfs?
Fastest disk-space usage analyzer (for files), faster than ncdu?
Custom ISO with initrd.systemd enabled gives me: "failed to setup loop device for /iso/nix-store.."
What are all the files/folders that will be in the filesystem after initrd?
Idea/Thoughts on how software (specifically games) payment models
How or Should i use taskset to only allocate performance cores to my games (for linux)
VERY simple web-based reliable file browser/hosting
OBS does not allow me to create a new pipewire screen (only one works)
GUI/App to automate key presses in linux wayland
FOSS Self-hostable or desktop app wiki (great for worldbuilding)?
FOSS Android OS (better-privacy, community driven) that runs on Foldables
How to create a jagged-edge transition in GIMP?
Will kernel-level anti-cheat ever work on linux?
What load balancers can do HA (preferably open source, web gui)
I tried the loopback devices, didnt work, at most i made a script that worked, but i want it to work for audacity:
cat > ~/Music/record-desktop.sh << 'EOF' #!/bin/bash OUTPUT="${1:-$HOME/Music/Recordings/recording-$(date +%Y%m%d-%H%M%S).wav}" pw-record --target 0 "$OUTPUT" & PID=$! sleep 0.5 pw-link bluez_output.30:50:75:16:40:A6:monitor_FL pw-record:input_FL pw-link bluez_output.30:50:75:16:40:A6:monitor_FR pw-record:input_FR echo "Recording to $OUTPUT (PID $PID) — press Enter to stop" read kill $PID echo "Done! Saved to $OUTPUT" EOF chmod +x ~/Music/record-desktop.sh