3
3

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.

OSXのデスクトップに一時的に何も表示しない

Last updated at Posted at 2014-09-18

概要

デスクトップを思う存分使う性分の人は、プレゼンの時など散らかったデスクトップを晒しがちですが、かといってデスクトップに物を置くというのは代えがたく便利。

というわけで、一時的にデスクトップをキレイにしたいという時に使えるシェルスクリプトです。

使い方

./icon.sh hide # デスクトップに何も表示されなくなる
./icon.sh show # 通常の状態に戻る

実装

コードは以下。設定を変更して finder を再起動しているだけです。

icon.sh
#!/bin/sh

case $1 in
  "hide" )
    defaults write com.apple.finder CreateDesktop false
    echo "hide"
    killall Finder
    ;;
  "show" )
    defaults write com.apple.finder CreateDesktop true
    echo "show"
    killall Finder
    ;;
  * )
    echo "Usage: icon.sh [show|hide]"
    ;;
esac
3
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?