Ever wished you could change "Line Out" to "JBL Headset" or "Headphones" to "Pebble Speakers" in your Sound Settings? Now you can.
Portname lets you rename the audio input/output ports that appear in your system's Sound Settings panel. Works with PipeWire and ALSA on any Linux distribution.
Before: After:
Line Out JBL Headset
Starship/Matisse HD Audio Starship/Matisse HD Audio
Headphones Pebble Speakers
Starship/Matisse HD Audio Starship/Matisse HD Audio
pip install portnameTo update to the latest version:
pip install --upgrade portnameAlternative, install from source:
git clone https://github.com/offbyonebit/portname.git
cd portname
chmod +x install.sh
./install.shJust run portname or find Portname in your application menu. Click Rename next to any audio port, type a new name, and enter your password when prompted.
# List all audio devices and ports
portname list
# Rename a port (requires sudo)
sudo portname rename analog-output-lineout "JBL Headset"
sudo portname rename analog-output-headphones "Pebble Speakers"
sudo portname rename analog-input-rear-mic "JBL Headset Mic"
# Revert a single port
sudo portname revert analog-output-lineout
# Revert all renamed ports
sudo portname revert --all
# Check for renames clobbered by a package upgrade and re-apply them (Arch/Fedora)
sudo portname check
# Toggle Auto-Mute Mode (fixes issue where front jack silences rear jacks)
portname auto-mute off
portname auto-mute on
portname auto-mute statusAudio port names on Linux come from ALSA card profile path files in /usr/share/alsa-card-profile/mixer/paths/. Portname:
- Backs up the original file to
<name>.conf.orig - Writes a modified copy with your custom name
- Restarts PipeWire so the change appears immediately
Your custom names survive reboots. On Debian/Ubuntu the backup is registered with dpkg-divert, which also tells the package manager to skip the file on upgrades. On other distros (Arch, Fedora, etc.) the backup/restore logic is identical but there is no package-manager hook. An upgrade of alsa-card-profile can silently overwrite the modified file. Run sudo portname check after such an upgrade to detect and automatically re-apply any clobbered names. AUR/Copr package descriptions should note this and suggest adding a post-upgrade hook that calls portname check.
| Distro | Status |
|---|---|
| Linux Mint 22 | Fully tested |
| Ubuntu 22.10+ | Fully tested |
| Arch Linux | Core features tested via CI, real-machine audio feedback not yet verified |
| Fedora | Core features tested via CI, real-machine audio feedback not yet verified |
| Other PipeWire distros | Should work, but untested |
Arch / Fedora users: portname works on your distro, but hasn't been tested by a real person on real hardware yet. If something doesn't behave as expected, names not showing up in Sound Settings, the audio system not restarting, anything, please open an issue and describe what happened. That feedback is how we close the gap.
Does not work on distros still using PulseAudio without PipeWire.
- Linux with PipeWire (standard on most distros from 2022 onward)
- Python 3.8+
- GTK3 via PyGObject (pre-installed on most desktop Linux distros)
cd portname
./install.sh --uninstallThis reverts all renamed ports to their original names and removes portname.
MIT