web-dev-qa-db-ja.com

Ubuntu 18.04.1 LTSでの背景画像のサイズ変更

最近18.04.1に更新されましたが、背景画像を塗りつぶし画面から中央の画像にサイズ変更できません。 18にクイックサイズ変更機能がないため、画像のサイズを変更するにはどうすればよいですか?

3
Eric Thom

現在の画像オプションを知るには、ターミナルで以下のコマンドを実行します
gsettings get org.gnome.desktop.background picture-options

例:

pratap@pratap:~$ gsettings get org.gnome.desktop.background picture-options
'zoom'

私の場合、結果は「ズーム」です

'picture-options'の利用可能なオプションを知るには、ターミナルで以下のコマンドを実行します
gsettings range org.gnome.desktop.background picture-options

例:

pratap@pratap:~$ gsettings range org.gnome.desktop.background picture-options
enum
'none'
'wallpaper'
'centered'
'scaled'
'stretched'
'zoom'
'spanned'
pratap@pratap:~$ 

上記の範囲から使用可能なオプションのオプションcenteredを使用するには、以下のコマンドを使用します
gsettings set org.gnome.desktop.background picture-options 'centered'

例:

pratap@pratap:~$ gsettings set org.gnome.desktop.background picture-options 'centered'
pratap@pratap:~$ 

以下のように使用

背景= org.gnome.desktop.background
ロック画面の場合= org.gnome.desktop.screensaver

enter image description here

GUI方法

gnome-tweaksを開きます。
まだインストールされていない場合は、Sudo apt install gnome-tweaksコマンドでインストールします

背景とロック画面のオプションをAdjustmentとして見つけ、利用可能なものから選択します。

enter image description here

enter image description here

この回答はガイドラインとしてのみ、背景色を変更できます。 https://askubuntu.com/a/1090204/739431 使用可能なオプションは、塗りつぶし、水平方向のグラデーション、垂直方向のグラデーションです。

enter image description here

5
PRATAP