pactl:tldr:0828f
This command is used to move the audio output of a specific application (identified by the sink input number) from the current audio sink to a new audio sink.
Here's the breakdown of the command:
-
pactl
is the PulseAudio control command-line tool used to manage audio settings in PulseAudio sound server on Linux systems. -
move-sink-input
is a pactl command that moves the audio output of a specific application to a new audio sink. -
${627}
is the first parameter of the command within braces. It represents the original sink input number of the application you want to move. In this case, the application has a sink input number of 627. -
${1}
is the second parameter of the command within braces. It represents the new audio sink number. It is usually represented by an index number. In this case, the new audio sink has a number of 1.
By executing this command, the audio output of the application represented by sink input number 627 will be moved from its current audio sink to the audio sink with number 1.