Ubuntu mate 18.04.3 LTSを使用しています。
私は自分の背景色がとても好きで、別のマシンで使用したいと思っています。使用されている正確な色はどこにありますか?コントロールセンターに移動して[表示設定]ウィンドウを表示し、[背景]タブを表示すると、自分の色が表示されますが、[色:単色]の横にある背景色をクリックすると、赤い色、青い色が欲しいので、現在の色ではありません。
私があなたの質問を正しく理解した場合..あなたはすでに何らかの方法で設定されているデスクトップの背景に使用されている色を知りたいです。
下の画像を参照してください。背景の下のプリセットオプションを使用して選択しています。
色はgsettings
またはdconf-editor
で簡単に取得できます
gsettings get org.mate.background color-shading-type
gsettings get org.mate.background primary-color
gsettings get org.mate.background secondary-color
例:
ubuntu-mate@ubuntu-mate:~$ gsettings get org.mate.background color-shading-type
'vertical-gradient'
ubuntu-mate@ubuntu-mate:~$ gsettings get org.mate.background primary-color
'rgb(88,145,188)'
ubuntu-mate@ubuntu-mate:~$ gsettings get org.mate.background secondary-color
'rgb(60,143,37)'
ubuntu-mate@ubuntu-mate:~
dconf-editor
がインストールされていない場合は、以下のコマンドを使用してインストールします
Sudo apt install dconf-editor
上記の結果から、色はrgb(88,145,188)とrgb(60,143,37)です。