web-dev-qa-db-ja.com

Ubuntuのメイトで背景色を取得する

Ubuntu mate 18.04.3 LTSを使用しています。

私は自分の背景色がとても好きで、別のマシンで使用したいと思っています。使用されている正確な色はどこにありますか?コントロールセンターに移動して[表示設定]ウィンドウを表示し、[背景]タブを表示すると、自分の色が表示されますが、[色:単色]の横にある背景色をクリックすると、赤い色、青い色が欲しいので、現在の色ではありません。

3
user2777045

カラーピッカーを使用して、必要な色を正確に選択できます。

Sudo apt install gcolor2を使用してGColor2をインストールし、起動します。
カーソルをカラーピッカーに変えるカラーピッカーアイコンをクリックしてから、選択する背景色をクリックします。

下のスクリーンショットを参照してください。

GColor2 Color picker

4
Parto

私があなたの質問を正しく理解した場合..あなたはすでに何らかの方法で設定されているデスクトップの背景に使用されている色を知りたいです。

下の画像を参照してください。背景の下のプリセットオプションを使用して選択しています。 enter image description here

色は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

enter image description here

上記の結果から、色はrgb(88,145,188)とrgb(60,143,37)です。


enter image description here

enter image description here

3
PRATAP