3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

linux でデスクトップ背景を変更するコマンド[強化版]

Posted at

以前
"background hoge.png" で背景を変える [zsh]
ShellScript - デスクトップの解像度を取得するワンライナー

を投稿したがコレを組み合わせる

# get screen resolution 解像度
alias screensize="xdpyinfo | grep 'dimensions' | egrep -o '[0-9]+x[0-9]+' | head -1"

# change background
alias background="display -window root -resize \`screensize\`"

これで

background [url or filepath]

とかで画面に合わせたサイズで背景を変えられる

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?