I'd like to temporarily change the name of a pipewire output. I already found the device id 73 with "pw-cli list-objects" and see that the label that Gnome Shell shows is the "node.description" property: $ pw-cli info 73 |grep node.desc * node.description = "Sennheiser PC 8.2 USB Analog Stereo" How can I change that? I tried $ pw-cli set-param 73 Props '{ props = [ 'node.description' "Headset" ] } but that does not work. I also tried variations like '{ props = [ "node.description": "Headset Sennheiser" ] }', but no avail cweiske, it's not possible to change a property like that cweiske, you can make a wireplumber rule to change the description though I saw that in the docs: https://docs.pipewire.org/page_man_pipewire_conf_5.html but I thought I could try that at run-time https://pipewire.pages.freedesktop.org/wireplumber/daemon/configuration/alsa.html#rules not possible at runtime thanks for the info.