diff --git a/Base/etc/FileIconProvider.ini b/Base/etc/FileIconProvider.ini index d700accd85..22096699f9 100644 --- a/Base/etc/FileIconProvider.ini +++ b/Base/etc/FileIconProvider.ini @@ -1,5 +1,6 @@ [Icons] cplusplus=*.cpp,*.cxx,*.cc,*.c++ +font=*.font form=*.frm header=*.h,*.hpp,*.hxx,*.hh,*.h++ html=*.html,*.htm @@ -16,3 +17,4 @@ python=*.py sound=*.wav spreadsheet=*.sheets text=*.txt +truetype=*.ttf diff --git a/Base/res/icons/16x16/app-file-manager.png b/Base/res/icons/16x16/app-file-manager.png new file mode 100644 index 0000000000..2892ce13bd Binary files /dev/null and b/Base/res/icons/16x16/app-file-manager.png differ diff --git a/Base/res/icons/16x16/filetype-font.png b/Base/res/icons/16x16/filetype-font.png new file mode 100644 index 0000000000..3ab6bc9806 Binary files /dev/null and b/Base/res/icons/16x16/filetype-font.png differ diff --git a/Base/res/icons/16x16/filetype-truetype.png b/Base/res/icons/16x16/filetype-truetype.png new file mode 100644 index 0000000000..1d5633e5d1 Binary files /dev/null and b/Base/res/icons/16x16/filetype-truetype.png differ diff --git a/Base/res/icons/32x32/app-file-manager.png b/Base/res/icons/32x32/app-file-manager.png new file mode 100644 index 0000000000..f55905a085 Binary files /dev/null and b/Base/res/icons/32x32/app-file-manager.png differ diff --git a/Base/res/icons/32x32/filetype-font.png b/Base/res/icons/32x32/filetype-font.png new file mode 100644 index 0000000000..d04e66738b Binary files /dev/null and b/Base/res/icons/32x32/filetype-font.png differ diff --git a/Base/res/icons/32x32/filetype-truetype.png b/Base/res/icons/32x32/filetype-truetype.png new file mode 100644 index 0000000000..e21441595f Binary files /dev/null and b/Base/res/icons/32x32/filetype-truetype.png differ diff --git a/Userland/Applications/FileManager/CMakeLists.txt b/Userland/Applications/FileManager/CMakeLists.txt index d81fc89bef..39149a23b9 100644 --- a/Userland/Applications/FileManager/CMakeLists.txt +++ b/Userland/Applications/FileManager/CMakeLists.txt @@ -9,5 +9,5 @@ set(SOURCES PropertiesWindow.cpp ) -serenity_app(FileManager ICON filetype-folder) +serenity_app(FileManager ICON app-file-manager) target_link_libraries(FileManager LibGUI LibDesktop) diff --git a/Userland/Applications/FileManager/main.cpp b/Userland/Applications/FileManager/main.cpp index a9a1200794..dbb880503d 100644 --- a/Userland/Applications/FileManager/main.cpp +++ b/Userland/Applications/FileManager/main.cpp @@ -731,7 +731,7 @@ int run_in_windowed_mode(RefPtr config, String initial_locatio go_menu.add_action(go_to_location_action); auto& help_menu = menubar->add_menu("Help"); - help_menu.add_action(GUI::CommonActions::make_about_action("File Manager", GUI::Icon::default_icon("filetype-folder"), window)); + help_menu.add_action(GUI::CommonActions::make_about_action("File Manager", GUI::Icon::default_icon("app-file-manager"), window)); GUI::Application::the()->set_menubar(move(menubar));