54
27

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 1 year has passed since last update.

macOSAdvent Calendar 2020

Day 5

Macデフォルトのディレクトリ名を英語表示にする方法

Last updated at Posted at 2020-12-05

Macのディレクトリ名はOS設定を日本語にしていると日本語表示になります。
Documents書類Pictures写真 とか正直わかりにくい。
実体は英語表記のディレクトリ名なので、ターミナルとかからいじるときに表記が別々で面倒なので統一したい。
けどOS設定は日本語が良い。

方法としては簡単で各ディレクトリに存在している .localized というファイルを削除する。

$ rm ~/Applications/.localized
$ rm ~/Documents/.localized
$ rm ~/Downloads/.localized
$ rm ~/Desktop/.localized
$ rm ~/Public/.localized
$ rm ~/Pictures/.localized
$ rm ~/Music/.localized
$ rm ~/Movies/.localized
$ rm ~/Library/.localized

サイドバーなんかはFinderを再起動させると反映されるようです。
スクリーンショット 2020-12-05 17.11.44.png

サイドバーに アプリケーション が残っているのでこっちも削除

rm /Applications/.localized

.localized はただの空のドットファイルなので、逆に

mkdir ~/Desktop/Documents
touch ~/Desktop/Documents/.localized

みたいなことをすると、デスクトップに 書類 というフォルダを作ることができる。

54
27
3

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
54
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?