add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/common/pactl.md Normal file
View File

@@ -0,0 +1,28 @@
# pactl
> 控制正在运行的 PulseAudio 音频服务器。
> 更多信息: <https://manned.org/pactl>。
- 显示音频服务器的信息:
`pactl info`
- 列出所有音频输出(或其他类型 - 输出是音频输出sink-input 是活动音频流):
`pactl list {{sinks}} short`
- 将默认输出更改为 1该数字可以通过 `list` 子命令获取):
`pactl set-default-sink {{1}}`
- 将 sink-input 627 移动到 sink 1
`pactl move-sink-input {{627}} {{1}}`
- 将 sink 1 的音量设置为 75%
`pactl set-sink-volume {{1}} {{0.75}}`
- 切换默认输出的静音状态(使用特殊名称 `@DEFAULT_SINK@`
`pactl set-sink-mute {{@DEFAULT_SINK@}} toggle`