0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Mac】コマンドでデスクトップ上のアイコンを非表示にする方法

Posted at

非表示にする

ターミナルでdefaults write com.apple.finder CreateDesktop false && killall Finderを実行するとデスクトップ上のアイコンを非表示にできます。

image.png

defaults write com.apple.finder CreateDesktop false && killall Finder

実行後は以下のようにアイコンが非表示になります。

image.png

再表示する

際表示するには以下のコマンドを実行します。

defaults write com.apple.finder CreateDesktop true && killall Finder

現在の設定値を確認する

現在、非表示の状態なのか確認するには以下のコマンドを実行します。

defaults read com.apple.finder CreateDesktop

結果がfalseであれば非表示、trueなら表示

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?