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?

Linuxmintでファイルタイプアイコンの一括変換のメモ

Last updated at Posted at 2024-11-06

nemoでファイルタイプをわかりやすくするために

Nemoで、JavaScriptとシェルスクリプトのファイルアイコンが同じなので、判別しやすいように変更してみました。
システムのアイコンテーマは、フルアイコンテーマを使っています。

1. MIMEフォルダーの以下のファイルを開く

/usr/share/mime/packages/freedesktop.org.xml
を開く

2. 変更したいファイルタイプの該当の箇所を変更

JavaScriptのアイコンを変更したい場合

JavaScriptの
<generic-icon name="text-x-script"/>
の箇所を
<generic-icon name="text-x-javascript"/>
に変更し、管理者権限で保存

※perl等、他でも"text-x-script"を使っているので、
一括変換はやめましょう。

3. キャッシュ更新

MIMEのファイルだけ変えても、これをしないと変わりません。mimeのキャッシュを更新しましょう。

sudo update-mime-database /usr/share/mime

しばし待ったら完了です。

※ちなみにこれは、デスクトップアプリケーションを変更した場合。今回は不要。

sudo update-desktop-database /usr/share/applications

以上です。

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?