1
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?

More than 5 years have passed since last update.

Macでスクリーンショットの保存先を変更する

Posted at

はじめに

誰かに情報を共有したり、開発してデザインを他のエンジニアに見てもらう時など、スクリーンショットを使いますよね?
僕は週10枚くらいスクショを撮るのですが、デフォルトだとMacのDesktopにスクショした画像が並んでいくので、定期的にDesktopを整理しないといけません。
そこで、スクショの画像の保存先を変更する方法を調べてみました。

スクショの保存先を変更する

Desktopにフォルダを作成する

デスクトップで右クリックして「新規フォルダ」からフォルダを作成してください。
今回は「ScreenShots」という名前にしました。
スクリーンショット 2018-11-02 9.57.51.png

※コマンドラインで作る場合は

$ cd Desktop
$ mkdir ScreenShots

スクショの保存先を上記のフォルダに変更

Terminalを開きます。
(開き方がわからない方は下に書いてあります。)

以下のコマンドを実行してください。

$ defaults write com.apple.screencapture location ~/Desktop/ScreenShots
$ killall SystemUIServer

~/Desktop/ScreenShotsの部分は作成したフォルダの名前でOKです。今回はDesktopの下にScreenShotsというフォルダを作成したので、~/Desktop/ScreenShotsになっています。

スクショしてみる

無事このフォルダにスクショが保存されました!これでDesktopが汚れずに済みます。
スクリーンショット 2018-11-02 10.19.18.png

設定を戻したくなったら

$ defaults delete com.apple.screencapture location
$ killall SystemUIServer

非エンジニアの方へ

ターミナルとは、簡単に言えばMacに対して命令をすることができる場所です。
command + Spaceキーでスポットライトの検索画面を出して、terminal.appと検索してみてください。
候補に出てくる「ターミナル」をクリックすると、こんな感じの黒い画面が出てきます(色や表示されているものは違うかもしれません)。
スクリーンショット 2018-11-02 10.17.01.png
そこで上記のコマンドを実行してください。
($は「ターミナルで実行してね」という意味なのでコマンドには入れないでください)

1
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
1
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?