声音菜单中的“greeter-export”设置是什么意思?

声音菜单中的“greeter-export”设置是什么意思?

如果你检查com.canonical.indicator.sounddconf可以看到有两个设置

  • global-mute
  • greeter-export

它们有记录在何处吗?它们的确切含义是什么?

答案1

根据这个架构文件来自 Linux Mint GitHub 页面:

<key name="greeter-export" type="b">
  <default>true</default>
  <summary>Whether or not to export the currently playing song to the greeter.</summary>
  <description>
    If enabled the sound indicator will export the current player and
    song to the greeter so that it can be shown if the user is selected
    and the sound menu is shown.
  </description>
</key>
<key name="global-mute" type="b">
  <default>false</default>
  <summary>Initial setting for global mute (mute all) on the menu </summary>
  <description>
    On start up volume should not be muted.
  </description>
</key>

我确信 Canonical 已将源代码发布在网上某处,但 Linux Mint 源代码对于我们的目的来说已经足够了。

相关内容