├── AUTHORS ├── CHANGES ├── COPYING ├── INSTALL ├── LICENSE ├── README.md ├── Sunflower.desktop ├── images ├── splash.png ├── sunflower.png ├── sunflower.svg └── sunflower_64.png ├── setup.py ├── styles └── main.css ├── sunflower ├── __init__.py ├── __main__.py ├── accelerator_group.py ├── accelerator_manager.py ├── associations.py ├── clipboard.py ├── common.py ├── config.py ├── emblems.py ├── gui │ ├── __init__.py │ ├── about_window.py │ ├── error_list.py │ ├── history_list.py │ ├── input_dialog.py │ ├── keyring_manager_window.py │ ├── main_window.py │ ├── mounts_manager_window.py │ ├── operation_dialog.py │ ├── preferences │ │ ├── __init__.py │ │ ├── accelerators.py │ │ ├── associations.py │ │ ├── bookmarks.py │ │ ├── commands.py │ │ ├── display.py │ │ ├── item_list.py │ │ ├── operation.py │ │ ├── plugins.py │ │ ├── terminal.py │ │ ├── toolbar.py │ │ └── view_and_edit.py │ ├── preferences_window.py │ ├── properties_window.py │ └── shortcuts_window.py ├── history.py ├── icons.py ├── indicator.py ├── keyring.py ├── menus.py ├── mounts.py ├── notifications.py ├── operation.py ├── parameters.py ├── plugin_base │ ├── __init__.py │ ├── column_editor_extension.py │ ├── column_extension.py │ ├── find_extension.py │ ├── item_list.py │ ├── monitor.py │ ├── mount_manager_extension.py │ ├── plugin.py │ ├── provider.py │ ├── rename_extension.py │ ├── terminal.py │ ├── toolbar_factory.py │ └── viewer_extension.py ├── plugins │ ├── __init__.py │ ├── archive_support │ │ ├── __init__.py │ │ ├── plugin.conf │ │ ├── plugin.py │ │ └── zip_provider.py │ ├── default_toolbar │ │ ├── __init__.py │ │ ├── bookmark_button.py │ │ ├── bookmarks_button.py │ │ ├── home_directory_button.py │ │ ├── parent_directory_button.py │ │ ├── plugin.conf │ │ ├── plugin.py │ │ └── separator.py │ ├── file_list │ │ ├── __init__.py │ │ ├── column_editor.py │ │ ├── dialogs.py │ │ ├── file_list.py │ │ ├── gio_extension.py │ │ ├── gio_provider.py │ │ ├── gio_wrapper.py │ │ ├── local_monitor.py │ │ ├── local_provider.py │ │ ├── plugin.conf │ │ ├── plugin.py │ │ └── trash_list.py │ ├── find_file_extensions │ │ ├── __init__.py │ │ ├── contents.py │ │ ├── default.py │ │ ├── plugin.conf │ │ ├── plugin.py │ │ └── size.py │ ├── gvim_viewer │ │ ├── __init__.py │ │ ├── plugin.conf │ │ └── plugin.py │ ├── owner_column │ │ ├── __init__.py │ │ ├── plugin.conf │ │ └── plugin.py │ ├── rename_extensions │ │ ├── __init__.py │ │ ├── audio_metadata.py │ │ ├── default.py │ │ ├── letter_case.py │ │ ├── plugin.conf │ │ └── plugin.py │ ├── sessions │ │ ├── __init__.py │ │ ├── plugin.conf │ │ └── plugin.py │ └── system_terminal │ │ ├── __init__.py │ │ ├── plugin.conf │ │ └── plugin.py ├── queue.py ├── toolbar.py ├── tools │ ├── __init__.py │ ├── advanced_rename.py │ ├── disk_usage.py │ ├── find_files.py │ ├── version_check.py │ └── viewer.py └── widgets │ ├── __init__.py │ ├── breadcrumbs.py │ ├── command_row.py │ ├── completion_entry.py │ ├── context_menu.py │ ├── emblems_renderer.py │ ├── location_menu.py │ ├── popup_menu.py │ ├── settings_page.py │ ├── status_bar.py │ ├── tab_label.py │ ├── thumbnail_view.py │ └── title_bar.py └── translations ├── be └── LC_MESSAGES │ └── sunflower.mo ├── bg └── LC_MESSAGES │ └── sunflower.mo ├── ca └── LC_MESSAGES │ └── sunflower.mo ├── cs └── LC_MESSAGES │ └── sunflower.mo ├── cs_CZ └── LC_MESSAGES │ └── sunflower.mo ├── de └── LC_MESSAGES │ └── sunflower.mo ├── de_DE └── LC_MESSAGES │ └── sunflower.mo ├── el └── LC_MESSAGES │ └── sunflower.mo ├── en_AU └── LC_MESSAGES │ └── sunflower.mo ├── es └── LC_MESSAGES │ └── sunflower.mo ├── es_AR └── LC_MESSAGES │ └── sunflower.mo ├── fr └── LC_MESSAGES │ └── sunflower.mo ├── hu └── LC_MESSAGES │ └── sunflower.mo ├── it_IT └── LC_MESSAGES │ └── sunflower.mo ├── ja_JP └── LC_MESSAGES │ └── sunflower.mo ├── lt └── LC_MESSAGES │ └── sunflower.mo ├── lv └── LC_MESSAGES │ └── sunflower.mo ├── nl └── LC_MESSAGES │ └── sunflower.mo ├── nl_BE └── LC_MESSAGES │ └── sunflower.mo ├── pl └── LC_MESSAGES │ └── sunflower.mo ├── pl_PL └── LC_MESSAGES │ └── sunflower.mo ├── pt_BR └── LC_MESSAGES │ └── sunflower.mo ├── ru └── LC_MESSAGES │ └── sunflower.mo ├── ru_RU └── LC_MESSAGES │ └── sunflower.mo ├── sk └── LC_MESSAGES │ └── sunflower.mo ├── sr └── LC_MESSAGES │ └── sunflower.mo ├── sv └── LC_MESSAGES │ └── sunflower.mo ├── tr └── LC_MESSAGES │ └── sunflower.mo ├── uk └── LC_MESSAGES │ └── sunflower.mo ├── uk_UA └── LC_MESSAGES │ └── sunflower.mo ├── zh_CN.GB2312 └── LC_MESSAGES │ └── sunflower.mo └── zh_TW └── LC_MESSAGES └── sunflower.mo /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/README.md -------------------------------------------------------------------------------- /Sunflower.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/Sunflower.desktop -------------------------------------------------------------------------------- /images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/images/splash.png -------------------------------------------------------------------------------- /images/sunflower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/images/sunflower.png -------------------------------------------------------------------------------- /images/sunflower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/images/sunflower.svg -------------------------------------------------------------------------------- /images/sunflower_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/images/sunflower_64.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/setup.py -------------------------------------------------------------------------------- /styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/styles/main.css -------------------------------------------------------------------------------- /sunflower/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/__main__.py -------------------------------------------------------------------------------- /sunflower/accelerator_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/accelerator_group.py -------------------------------------------------------------------------------- /sunflower/accelerator_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/accelerator_manager.py -------------------------------------------------------------------------------- /sunflower/associations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/associations.py -------------------------------------------------------------------------------- /sunflower/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/clipboard.py -------------------------------------------------------------------------------- /sunflower/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/common.py -------------------------------------------------------------------------------- /sunflower/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/config.py -------------------------------------------------------------------------------- /sunflower/emblems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/emblems.py -------------------------------------------------------------------------------- /sunflower/gui/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sunflower/gui/about_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/about_window.py -------------------------------------------------------------------------------- /sunflower/gui/error_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/error_list.py -------------------------------------------------------------------------------- /sunflower/gui/history_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/history_list.py -------------------------------------------------------------------------------- /sunflower/gui/input_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/input_dialog.py -------------------------------------------------------------------------------- /sunflower/gui/keyring_manager_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/keyring_manager_window.py -------------------------------------------------------------------------------- /sunflower/gui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/main_window.py -------------------------------------------------------------------------------- /sunflower/gui/mounts_manager_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/mounts_manager_window.py -------------------------------------------------------------------------------- /sunflower/gui/operation_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/operation_dialog.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/gui/preferences/accelerators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/accelerators.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/associations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/associations.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/bookmarks.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/commands.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/display.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/item_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/item_list.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/operation.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/plugins.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/terminal.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/toolbar.py -------------------------------------------------------------------------------- /sunflower/gui/preferences/view_and_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences/view_and_edit.py -------------------------------------------------------------------------------- /sunflower/gui/preferences_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/preferences_window.py -------------------------------------------------------------------------------- /sunflower/gui/properties_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/properties_window.py -------------------------------------------------------------------------------- /sunflower/gui/shortcuts_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/gui/shortcuts_window.py -------------------------------------------------------------------------------- /sunflower/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/history.py -------------------------------------------------------------------------------- /sunflower/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/icons.py -------------------------------------------------------------------------------- /sunflower/indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/indicator.py -------------------------------------------------------------------------------- /sunflower/keyring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/keyring.py -------------------------------------------------------------------------------- /sunflower/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/menus.py -------------------------------------------------------------------------------- /sunflower/mounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/mounts.py -------------------------------------------------------------------------------- /sunflower/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/notifications.py -------------------------------------------------------------------------------- /sunflower/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/operation.py -------------------------------------------------------------------------------- /sunflower/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/parameters.py -------------------------------------------------------------------------------- /sunflower/plugin_base/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sunflower/plugin_base/column_editor_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/column_editor_extension.py -------------------------------------------------------------------------------- /sunflower/plugin_base/column_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/column_extension.py -------------------------------------------------------------------------------- /sunflower/plugin_base/find_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/find_extension.py -------------------------------------------------------------------------------- /sunflower/plugin_base/item_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/item_list.py -------------------------------------------------------------------------------- /sunflower/plugin_base/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/monitor.py -------------------------------------------------------------------------------- /sunflower/plugin_base/mount_manager_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/mount_manager_extension.py -------------------------------------------------------------------------------- /sunflower/plugin_base/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/plugin.py -------------------------------------------------------------------------------- /sunflower/plugin_base/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/provider.py -------------------------------------------------------------------------------- /sunflower/plugin_base/rename_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/rename_extension.py -------------------------------------------------------------------------------- /sunflower/plugin_base/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/terminal.py -------------------------------------------------------------------------------- /sunflower/plugin_base/toolbar_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/toolbar_factory.py -------------------------------------------------------------------------------- /sunflower/plugin_base/viewer_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugin_base/viewer_extension.py -------------------------------------------------------------------------------- /sunflower/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sunflower/plugins/archive_support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/plugins/archive_support/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/archive_support/plugin.conf -------------------------------------------------------------------------------- /sunflower/plugins/archive_support/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/archive_support/plugin.py -------------------------------------------------------------------------------- /sunflower/plugins/archive_support/zip_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/archive_support/zip_provider.py -------------------------------------------------------------------------------- /sunflower/plugins/default_toolbar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/plugins/default_toolbar/bookmark_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/default_toolbar/bookmark_button.py -------------------------------------------------------------------------------- /sunflower/plugins/default_toolbar/bookmarks_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/default_toolbar/bookmarks_button.py -------------------------------------------------------------------------------- /sunflower/plugins/default_toolbar/home_directory_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/default_toolbar/home_directory_button.py -------------------------------------------------------------------------------- /sunflower/plugins/default_toolbar/parent_directory_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/default_toolbar/parent_directory_button.py -------------------------------------------------------------------------------- /sunflower/plugins/default_toolbar/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/default_toolbar/plugin.conf -------------------------------------------------------------------------------- /sunflower/plugins/default_toolbar/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/default_toolbar/plugin.py -------------------------------------------------------------------------------- /sunflower/plugins/default_toolbar/separator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/default_toolbar/separator.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/plugins/file_list/column_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/column_editor.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/dialogs.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/file_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/file_list.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/gio_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/gio_extension.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/gio_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/gio_provider.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/gio_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/gio_wrapper.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/local_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/local_monitor.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/local_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/local_provider.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/plugin.conf -------------------------------------------------------------------------------- /sunflower/plugins/file_list/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/plugin.py -------------------------------------------------------------------------------- /sunflower/plugins/file_list/trash_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/file_list/trash_list.py -------------------------------------------------------------------------------- /sunflower/plugins/find_file_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/plugins/find_file_extensions/contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/find_file_extensions/contents.py -------------------------------------------------------------------------------- /sunflower/plugins/find_file_extensions/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/find_file_extensions/default.py -------------------------------------------------------------------------------- /sunflower/plugins/find_file_extensions/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/find_file_extensions/plugin.conf -------------------------------------------------------------------------------- /sunflower/plugins/find_file_extensions/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/find_file_extensions/plugin.py -------------------------------------------------------------------------------- /sunflower/plugins/find_file_extensions/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/find_file_extensions/size.py -------------------------------------------------------------------------------- /sunflower/plugins/gvim_viewer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/plugins/gvim_viewer/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/gvim_viewer/plugin.conf -------------------------------------------------------------------------------- /sunflower/plugins/gvim_viewer/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/gvim_viewer/plugin.py -------------------------------------------------------------------------------- /sunflower/plugins/owner_column/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/plugins/owner_column/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/owner_column/plugin.conf -------------------------------------------------------------------------------- /sunflower/plugins/owner_column/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/owner_column/plugin.py -------------------------------------------------------------------------------- /sunflower/plugins/rename_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/plugins/rename_extensions/audio_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/rename_extensions/audio_metadata.py -------------------------------------------------------------------------------- /sunflower/plugins/rename_extensions/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/rename_extensions/default.py -------------------------------------------------------------------------------- /sunflower/plugins/rename_extensions/letter_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/rename_extensions/letter_case.py -------------------------------------------------------------------------------- /sunflower/plugins/rename_extensions/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/rename_extensions/plugin.conf -------------------------------------------------------------------------------- /sunflower/plugins/rename_extensions/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/rename_extensions/plugin.py -------------------------------------------------------------------------------- /sunflower/plugins/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/plugins/sessions/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/sessions/plugin.conf -------------------------------------------------------------------------------- /sunflower/plugins/sessions/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/sessions/plugin.py -------------------------------------------------------------------------------- /sunflower/plugins/system_terminal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/plugins/system_terminal/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/system_terminal/plugin.conf -------------------------------------------------------------------------------- /sunflower/plugins/system_terminal/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/plugins/system_terminal/plugin.py -------------------------------------------------------------------------------- /sunflower/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/queue.py -------------------------------------------------------------------------------- /sunflower/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/toolbar.py -------------------------------------------------------------------------------- /sunflower/tools/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sunflower/tools/advanced_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/tools/advanced_rename.py -------------------------------------------------------------------------------- /sunflower/tools/disk_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/tools/disk_usage.py -------------------------------------------------------------------------------- /sunflower/tools/find_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/tools/find_files.py -------------------------------------------------------------------------------- /sunflower/tools/version_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/tools/version_check.py -------------------------------------------------------------------------------- /sunflower/tools/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/tools/viewer.py -------------------------------------------------------------------------------- /sunflower/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sunflower/widgets/breadcrumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/breadcrumbs.py -------------------------------------------------------------------------------- /sunflower/widgets/command_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/command_row.py -------------------------------------------------------------------------------- /sunflower/widgets/completion_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/completion_entry.py -------------------------------------------------------------------------------- /sunflower/widgets/context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/context_menu.py -------------------------------------------------------------------------------- /sunflower/widgets/emblems_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/emblems_renderer.py -------------------------------------------------------------------------------- /sunflower/widgets/location_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/location_menu.py -------------------------------------------------------------------------------- /sunflower/widgets/popup_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/popup_menu.py -------------------------------------------------------------------------------- /sunflower/widgets/settings_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/settings_page.py -------------------------------------------------------------------------------- /sunflower/widgets/status_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/status_bar.py -------------------------------------------------------------------------------- /sunflower/widgets/tab_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/tab_label.py -------------------------------------------------------------------------------- /sunflower/widgets/thumbnail_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/thumbnail_view.py -------------------------------------------------------------------------------- /sunflower/widgets/title_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/sunflower/widgets/title_bar.py -------------------------------------------------------------------------------- /translations/be/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/be/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/bg/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/bg/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/ca/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/ca/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/cs/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/cs/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/cs_CZ/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/cs_CZ/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/de/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/de/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/de_DE/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/de_DE/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/el/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/el/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/en_AU/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/en_AU/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/es/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/es/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/es_AR/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/es_AR/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/fr/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/fr/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/hu/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/hu/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/it_IT/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/it_IT/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/ja_JP/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/ja_JP/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/lt/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/lt/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/lv/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/lv/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/nl/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/nl/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/nl_BE/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/nl_BE/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/pl/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/pl/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/pl_PL/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/pl_PL/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/pt_BR/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/pt_BR/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/ru/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/ru/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/ru_RU/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/ru_RU/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/sk/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/sk/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/sr/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/sr/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/sv/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/sv/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/tr/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/tr/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/uk/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/uk/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/uk_UA/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/uk_UA/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/zh_CN.GB2312/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/zh_CN.GB2312/LC_MESSAGES/sunflower.mo -------------------------------------------------------------------------------- /translations/zh_TW/LC_MESSAGES/sunflower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeanEYE/Sunflower/HEAD/translations/zh_TW/LC_MESSAGES/sunflower.mo --------------------------------------------------------------------------------