如何在 Mate-panel 上将当前键盘布局显示为国家国旗?

如何在 Mate-panel 上将当前键盘布局显示为国家国旗?

我正在使用 Ubuntu MATE 14.04 LTS、16.04 LTS 和 18.04 LTS。

我想将当前键盘布局指示从文本(例如)更改ruen相应的国家旗帜。

我怎样才能做到这一点?

答案1

在 Ubuntu MATE 18.04 LTS 及更新版本上,您需要发送一个命令:

gsettings set org.mate.peripherals-keyboard-xkb.indicator show-flags true

它将改变 MATE 面板的外观

你在 mate-panel 上

Mate 面板上的俄罗斯国旗


在安装了 MATE 1.12 的 Ubuntu 16.04 LTS 上,此方法无法直接使用(错误 1783543),但我们这里有两个选择:

  • 手动下载标志并将它们放在主文件夹中:

      mkdir -p ~/.icons/flags
      cd ~/.icons/flags/
      wget https://raw.githubusercontent.com/linuxmint/flags/master/usr/share/iso-flag-png/{ru,us}.png
    

    然后切换布局指示器状态:

      gsettings set org.mate.peripherals-keyboard-xkb.indicator show-flags false
      gsettings set org.mate.peripherals-keyboard-xkb.indicator show-flags true
    

    我们将设置标志。注意:我使用了ruus,你可以从中选择其他LinuxMint GitHub 存储库

  • 使用官方较新的 MATE 1.16xenial-mate PPA

      sudo apt-add-repository ppa:ubuntu-mate-dev/xenial-mate
      sudo apt update
      sudo apt full-upgrade
    

    然后启用标志

      gsettings set org.mate.peripherals-keyboard-xkb.indicator show-flags true
    

    并且我们可以在重启和登录后获得标志。


在 Ubuntu 14.04 LTS 上,我们需要手动下载标志(与 16.04 LTS 一样):

mkdir -p ~/.icons/flags
cd ~/.icons/flags/
wget https://raw.githubusercontent.com/linuxmint/flags/master/usr/share/iso-flag-png/{ru,us}.png

然后切换布局指示器状态:

gsettings set org.mate.peripherals-keyboard-xkb.indicator show-flags false
gsettings set org.mate.peripherals-keyboard-xkb.indicator show-flags true

我们将插上旗帜。

相关内容