nemo-5.2.4/0000775000175000017500000000000014167325357011421 5ustar fabiofabionemo-5.2.4/debian/0000775000175000017500000000000014167325357012643 5ustar fabiofabionemo-5.2.4/config.h.meson.in0000664000175000017500000000337514167325357014574 0ustar fabiofabio#pragma once // config.h.in. Generated from configure.ac by autoheader. // Define to the version of this package. #mesondefine VERSION // Enable debug code #mesondefine ENABLE_DEBUG // ***** Enable features // define to enable the empty view that is used for performance measurement #mesondefine ENABLE_EMPTY_VIEW // Define to enable xmp support #mesondefine HAVE_EXEMPI // Define to enable EXIF support #mesondefine HAVE_EXIF // Define if libselinux is available #mesondefine HAVE_SELINUX // Define to enable pango-1.44 fixes #mesondefine HAVE_PANGO_144 // ***** Localisation // always defined to indicate that i18n is enabled #mesondefine ENABLE_NLS #mesondefine HAVE_GETTEXT // the gettext translation domain #mesondefine GETTEXT_PACKAGE // Define to 1 if you have the header file. #mesondefine HAVE_LOCALE_H // path for translations #mesondefine LOCALEDIR #mesondefine LOCALE_DIR // Define to 1 if you have the header file. #mesondefine HAVE_MALLOC_H // Define to 1 if you have the `mallopt' function. #mesondefine HAVE_MALLOPT // Define to 1 if you have the header file. #mesondefine HAVE_SYS_MOUNT_H // Define to 1 if you have the header file. #mesondefine HAVE_SYS_PARAM_H // Define to 1 if you have the header file. #mesondefine HAVE_SYS_VFS_H // Define to 1 if you have the header file. #mesondefine HAVE_X11_XF86KEYSYM_H // Define to 1 if statx is supported by the kernel (defined in // /usr/include/stat.h). Lack of support by the build machine // does not preclude support at runtime (under a valid kernel,) // we just construct the definitons ourselves instead. Runtime // support is still checked at runtime (safely.) #mesondefine NATIVE_STATX #mesondefine ENABLE_TRACKER nemo-5.2.4/meson.build0000664000175000017500000001566414167325357013577 0ustar fabiofabio# Meson build file # https://github.com/linuxmint/nemo project('nemo', 'c', version: '5.2.4', meson_version: '>=0.41.0' ) # 1. If the library code has changed at all since last release, then increment revision. # 2. If any interfaces have been added, then increment current and set revision to 0. # Interface break is not allowed. nemo_extension_current = 5 nemo_extension_revision = 0 # We need to decrement current by one in the calculation of the age because # the library was started with version "1:0:0" instead of "0:0:0" NEMO_EXTENSION_VERSION_INFO = '@0@:@1@:@2@'.format( nemo_extension_current, nemo_extension_revision, nemo_extension_current - 1 ) ################################################################################ conf = configuration_data() gnome = import('gnome') pkgconfig = import('pkgconfig') cc = meson.get_compiler('c') prefix = get_option('prefix') buildtype = get_option('buildtype') # Surround the version in quotes to make it a C string conf.set_quoted('VERSION', meson.project_version()) conf.set('ENABLE_DEBUG', buildtype == 'debug') check_headers = [ 'malloc.h', 'sys/mount.h', 'sys/param.h', 'sys/vfs.h', 'X11/XF86keysym.h', ] foreach h : check_headers conf.set10('HAVE_' + h.underscorify().to_upper(), cc.has_header(h)) endforeach conf.set10('HAVE_MALLOPT', cc.has_function('mallopt', prefix: '#include ')) if not get_option('deprecated_warnings') add_global_arguments([ '-Wno-deprecated-declarations', '-Wno-deprecated', '-Wno-declaration-after-statement', '-DGLIB_DISABLE_DEPRECATION_WARNINGS', ], language: 'c', ) endif if get_option('profiling') add_global_arguments('-fno-omit-frame-pointer', language: 'c') endif ################################################################################ # Find dependencies glib_version = '>=2.45.7' math = cc.find_library('m', required: true) gtk = dependency('gtk+-3.0', version: '>=3.10.0') gio = dependency('gio-2.0', version: glib_version) gio_unix= dependency('gio-unix-2.0', version: glib_version) glib = dependency('glib-2.0', version: glib_version) gmodule = dependency('gmodule-no-export-2.0', version: glib_version) gobject = dependency('gobject-2.0', version: '>=2.0') go_intr = dependency('gobject-introspection-1.0', version: '>=1.0') libnotif= dependency('libnotify', version: '>=0.7.0') cinnamon= dependency('cinnamon-desktop', version: '>=4.8.0') gail = dependency('gail-3.0') libxml = dependency('libxml-2.0', version: '>=2.7.8') x11 = dependency('x11') xapp = dependency('xapp', version: '>=2.0.0') # Facultative dependencies trackerChoice = get_option('tracker') tracker_enabled = false if trackerChoice != 'false' trackerRequired = (trackerChoice == 'true') # Check all the possible versions tracker_sparql = dependency('tracker-sparql-2.0', required: false) if not tracker_sparql.found() tracker_sparql = dependency('tracker-sparql-1.0', required: false) endif if not tracker_sparql.found() tracker_sparql = dependency('tracker-sparql-0.18', required: false) endif if not tracker_sparql.found() tracker_sparql = dependency('tracker-sparql-0.16', required: trackerRequired) endif tracker_enabled = trackerRequired or tracker_sparql.found() endif conf.set('ENABLE_TRACKER', tracker_enabled) gtkdoc_enabled = get_option('gtk_doc') if gtkdoc_enabled find_program('gtkdoc-scan', required: true) endif libexif_enabled = get_option('exif') if libexif_enabled libexif = dependency('libexif', version: '>=0.6.20') endif conf.set('HAVE_EXIF', libexif_enabled) exempi_enabled = get_option('xmp') if exempi_enabled exempi = dependency('exempi-2.0', version: '>=2.2.0') endif conf.set('HAVE_EXEMPI', exempi_enabled) libselinux_enabled = get_option('selinux') if libselinux_enabled libselinux = dependency('libselinux', version: '>=2.0') endif conf.set('HAVE_SELINUX', libselinux_enabled) # make sure pango development files are installed pango = dependency('pango', version: '>=1.40.0') # check for newer pango for necessary workarounds new_pango = dependency('pango', version: '>=1.44.0', required: false) if new_pango.found() conf.set('HAVE_PANGO_144', true) else message('................using pango @0@ instead'.format(new_pango.version())) endif enableEmptyView = get_option('empty_view') conf.set10('ENABLE_EMPTY_VIEW', enableEmptyView) conf.set_quoted('GETTEXT_PACKAGE', 'nemo') conf.set_quoted('LOCALE_DIR', join_paths(get_option('prefix'), get_option('localedir'))) conf.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir'))) conf.set('ENABLE_NLS', cc.has_header('libintl.h')) conf.set('HAVE_GETTEXT', true) conf.set('HAVE_LOCALE_H', cc.has_header('locale.h')) # STATX Support check statx_supported = cc.compiles( ''' #define _GNU_SOURCE #include struct statx stxbuf; ''' ) if not statx_supported message('WARNING: No native statx support (Kernel < 4.11) - using compatibility wrappers.') else message('Native statx support used.') endif conf.set10('NATIVE_STATX', statx_supported) # End STATX configure_file( input : 'config.h.meson.in', output: 'config.h', configuration: conf ) ################################################################################ rootInclude = include_directories('.') nemoDataPath = join_paths(get_option('prefix'), get_option('datadir'), 'nemo') libExecPath = join_paths(get_option('prefix'), get_option('libexecdir')) # Keep this constant, in case some extensions are behind in being updated... nemoExtensionPath = join_paths(get_option('prefix'), get_option('libdir'), 'nemo', 'extensions-3.0') nemo_definitions = [ '-DNEMO_DATADIR="@0@"'.format(nemoDataPath), '-DNEMO_EXTENSIONDIR="@0@"'.format(nemoExtensionPath), '-DLIBEXECDIR="@0@"'.format(libExecPath), ] po_subdir = join_paths(meson.source_root(), 'po') subdir('install-scripts') subdir('cut-n-paste-code/libegg') subdir('data') subdir('eel') subdir('files') subdir('gresources') subdir('libnemo-extension') subdir('libnemo-private') # subdir('po') subdir('src') subdir('search-helpers') subdir('test') subdir('docs') message('\n'.join(['', ' @0@-@1@'.format(meson.project_name(), meson.project_version()), '', ' prefix: @0@'.format(prefix), ' source code location: @0@'.format(meson.source_root()), ' compiler: @0@'.format(cc.get_id()), ' debugging support: @0@'.format(buildtype), ' libexif support: @0@'.format(libexif_enabled), ' exempi support: @0@'.format(exempi_enabled), ' Tracker support: @0@'.format(tracker_enabled), '', ' nemo-extension documentation: @0@'.format(gtkdoc_enabled), ' nemo-extension introspection: @0@'.format(true), '', ' perf profiling support: @0@'.format(get_option('profiling')), '', ])) nemo-5.2.4/gresources/0000775000175000017500000000000014167325357013602 5ustar fabiofabionemo-5.2.4/gresources/nemo-list-view-ui.xml0000664000175000017500000000021514167325357017614 0ustar fabiofabio nemo-5.2.4/gresources/nemo-style-fallback.css0000664000175000017500000000124014167325357020142 0ustar fabiofabio/* For Places Sidebar diskfull indicators */ .places-treeview { -NemoPlacesTreeView-disk-full-bg-color: shade(@theme_bg_color, .65); -NemoPlacesTreeView-disk-full-fg-color: shade(@theme_selected_bg_color, 1.0); -NemoPlacesTreeView-disk-full-bar-width: 2px; -NemoPlacesTreeView-disk-full-bar-radius: 1px; -NemoPlacesTreeView-disk-full-bottom-padding: 1px; -NemoPlacesTreeView-disk-full-max-length: 70px; } .places-treeview:selected { -NemoPlacesTreeView-disk-full-bg-color: shade(@theme_bg_color, 2.0); -NemoPlacesTreeView-disk-full-fg-color: shade(@theme_fg_color, 2.0); } .places-treeview:hover { } .places-treeview:selected:hover { } nemo-5.2.4/gresources/nemo-icon-view-ui.xml0000664000175000017500000000360314167325357017575 0ustar fabiofabio nemo-5.2.4/gresources/nemo-desktop-icon-grid-view-ui.xml0000664000175000017500000000125514167325357022170 0ustar fabiofabio nemo-5.2.4/gresources/meson.build0000664000175000017500000000024214167325357015742 0ustar fabiofabiogresources = gnome.compile_resources( 'nemo-resources', 'nemo.gresource.xml', source_dir: '.', c_name: 'nemo', install_header: false, install: false ) nemo-5.2.4/gresources/thumbnail_frame.png0000664000175000017500000000427014167325357017450 0ustar fabiofabioPNG  IHDRxsRGBrIDATx۽jGw%}{8ESl AQoy`,9 .yM༮+{SG|pnosT=T?V_s{Wʿo~V]XֿUoV &` @ @` @ @ @ @ @ @ cCZ,Z @ @  @ @dsXWEK @ @ @ @1!`^m-@ @ V @ @<.{ X@ @ @X@ @  ֺ&` @ @` @ @,lsXWEK @ @ @ @1!`^m-@ @ V @ @<.{ X@ @ @X@ @  ֺ&` @ @` @ @,lsXWEK @ @ @ @1!`^m-@ @ V @ @<.{ X@ @ @X@ @_^uuSWB՘ \~a\=V՗=VOxi>nM~=pf2d˟T}_CuW}_ s6d&3]L{~#1d&3]Loۿ']w`IENDB`nemo-5.2.4/gresources/nemo-directory-view-ui.xml0000664000175000017500000002704214167325357020654 0ustar fabiofabio nemo-5.2.4/gresources/nemo-shell-ui.xml0000664000175000017500000001142314167325357017003 0ustar fabiofabio nemo-5.2.4/gresources/nemo-shortcuts.ui0000664000175000017500000005114514167325357017141 0ustar fabiofabio False True shortcuts 12 True General True New window <Primary>N True Close window or tab <Primary>W True Close all windows <Primary>Q True Toggle extra pane F3 True Search <Primary>F True Bookmark current location <Primary>D True Edit bookmarks <Primary>B True Make link <Primary>M True Pin/Unpin selection <Primary><shift>D True Show help F1 True Shortcuts <Primary>F1 True Opening True Open Return <Primary>O True Open in new tab <Primary><shift>T True Open in new window <Primary><shift>O True Open item location (recent files and search only) <Primary><alt>O True Tabs True New tab <Primary>T True Go to previous tab <Primary>Page_Up True Go to next tab <Primary>Page_Down True Switch to tab <alt>0...8 True Move tab left <shift><Primary>Page_Up True Move tab right <shift><Primary>Page_Down True Navigation True Go back BackSpace <alt>Left True Go forward <alt>Right True Go up <alt>Up True Go down <alt>Down True Go to home folder <alt>Home True Toggle location entry <Primary>L True Dual Pane True Toggle extra pane F3 True Go to other pane's location <alt>S True Focus other pane F6 True View True Zoom in <Primary>plus True Zoom out <Primary>minus True Reset zoom <Primary>0 True Refresh view F5 <Primary>R True Show/hide hidden files <Primary>H True Show/hide sidebar F9 True Show/hide action menu F10 True Icon view <Primary>1 True List view <Primary>2 True Compact view <Primary>3 True Editing True Create folder <shift><Primary>N True Rename F2 True Move to trash Delete True Delete permanently <shift>Delete True Cut <Primary>X True Copy <Primary>C True Paste <Primary>V True Select all <Primary>A True Invert selection <shift><Primary>I True Select items matching <Primary>S True Undo <Primary>z True Redo <Primary>y True Show item properties <Primary>I <alt>Return nemo-5.2.4/gresources/nemo-desktop-icon-view-ui.xml0000664000175000017500000000145714167325357021251 0ustar fabiofabio nemo-5.2.4/gresources/nemo-style-fallback-mandatory.css0000664000175000017500000000147714167325357022152 0ustar fabiofabio/* Things that can traditionally be controlled by the user theme, but that we *must* * have regardless, for a usable application. A couple things that we cannot do without. */ /* Inactive F3 pane shading */ .nemo-window .nemo-inactive-pane .view, .nemo-window .nemo-inactive-pane iconview { background-color: @theme_unfocused_bg_color; } /* Rename box styling in the icon view. */ .nemo-window .nemo-window-pane widget.entry { border: 1px solid; border-radius: 3px; color: @theme_fg_color; border-color: @theme_selected_bg_color; background-color: @theme_bg_color; } .nemo-window .nemo-window-pane widget.entry:selected { border: 1px solid; border-radius: 3px; color: @theme_selected_fg_color; border-color: @theme_selected_bg_color; background-color: @theme_selected_bg_color; } nemo-5.2.4/gresources/nemo-desktop-overlay.glade0000664000175000017500000016505214167325357020675 0ustar fabiofabio both vertical 50 200 100 10 10 75 200 100 10 10 True False 32 nemo-horizontal-layout-symbolic 3 True False 32 nemo-vertical-layout-symbolic 3 True False 32 nemo-auto-arrange-symbolic 3 1 Smaller Desktop Smaller 2 Small Desktop Small 3 Normal Desktop Normal 4 Large Desktop Large 5 Larger Desktop Larger Vertical Vertical Layout Horizontal Horizontal Layout 1 Name Desktop Sort by Name 2 Size Desktop Sort by Size 4 Type Desktop Sort by Type 5 Date Desktop Sort by Date False Current Monitor Layout 650 preferences-desktop True False vertical True False crossfade True False 0 True False vertical True False True True False 80 80 15 30 6 True False 6 vertical 5 True False 10 10 True False start Icon Size True True 0 True False liststore1 0 2 1 False True 1 False True 0 True False Layout 0 False True 1 True False 0 0 in True False True False vertical True False vertical True False True True False False True False 5 20 True False Auto-arrange False True 6 0 True True center False True end 1 False True 0 False True 1 True False vertical True False False True 0 True False True True False False True False 5 20 True False Direction False True 6 0 True False liststore2 0 1 0 False True end 1 False True 1 False True 2 True False vertical True False False True 0 True False True True False False True False 5 20 True False Sort items by False True 6 0 True False liststore3 0 2 1 False True end 1 False True 1 False True 3 True False vertical True False False True 0 True False True True False False True False 5 20 True False Reverse sort False True 6 0 True True center False True end 1 False True 1 False True 4 True False vertical True False False True 0 True False True True False False True False 5 20 Reset grid spacing True True True True True 0 False True 1 False True 5 False True 2 True False 0 0 none True False True False vertical True False vertical button True True True True True 2 False True 5 False True 5 True True 0 -1 True False end 12 25 True False nemo-horizontal-layout-symbolic False True 1 True True Adjust horizontal grid spacing adjustment1 False False False True True 6 2 True False 32 nemo-horizontal-layout-wide-symbolic False True 3 True False end 6 25 vertical True False 5 5 nemo-vertical-layout-symbolic False False 0 True True Adjust vertical grid spacing False vertical adjustment2 False False False True True 1 True False 5 32 nemo-vertical-layout-wide-symbolic False True 2 1 True True 2 substack_enabled page0 True False center vertical 10 True False <b><big>Desktop icons are not currently enabled for this monitor.</big></b> True False True 0 button True True True none False True 2 substack_disabled page1 1 view preferences-desktop-display-symbolic False True 0 nemo-5.2.4/gresources/nemo-statusbar-ui.xml0000664000175000017500000000041714167325357017705 0ustar fabiofabio nemo-5.2.4/gresources/nemo-desktop-preferences.glade0000664000175000017500000007523114167325357021514 0ustar fabiofabio 50 200 100 10 10 75 200 100 10 10 True False 6 vertical 5 True False 10 10 True False start Desktop Layout True True 0 True False end False No desktop icons Show desktop icons on primary monitor only Show desktop icons on non-primary monitor(s) only Show desktop icons on all monitors False True 2 False True 0 True False Desktop Icons 0 False True 1 True False 10 0 0 in True False True False vertical True False vertical True False True True False False True False 20 20 5 20 True False Computer False True 6 0 True True center False True end 1 False True 0 False True 2 True False vertical True False False True 0 True False True True False False True False 20 20 5 20 True False Home False True 6 0 True True center False True end 1 False True 1 False True 3 True False vertical True False False True 0 True False True True False False True False 20 20 5 20 True False Trash False True 6 0 True True center False True end 1 False True 1 False True 4 True False vertical True False False True 0 True False True True False False True False 20 20 5 20 True False Mounted Drives False True 6 0 True True center False True end 1 False True 1 False True 5 True False vertical True False False True 0 True False True True False False True False 20 20 5 20 True False Network False True 6 0 True True center False True end 1 False True 1 False True 6 False True 2 True False Options 0 False True 3 True False 2 0 0 in True False True False vertical True False vertical True False True True False False True False 20 20 5 20 True False Show icons from missing monitors False True 6 0 True True center False True end 1 False True 0 False True 2 False True 4 nemo-5.2.4/gresources/nemo.gresource.xml0000664000175000017500000000201714167325357017257 0ustar fabiofabio nemo-bookmarks-window.glade nemo-file-management-properties.glade nemo-desktop-overlay.glade nemo-desktop-preferences.glade nemo-search-bar.glade nemo-shortcuts.ui nemo-icon-view-ui.xml nemo-directory-view-ui.xml nemo-desktop-icon-view-ui.xml nemo-desktop-icon-grid-view-ui.xml nemo-list-view-ui.xml nemo-shell-ui.xml nemo-statusbar-ui.xml thumbnail_frame.png knob.png nemo-style-fallback.css nemo-style-fallback-mandatory.css nemo-style-application.css nemo-5.2.4/gresources/knob.png0000664000175000017500000000031614167325357015241 0ustar fabiofabioPNG  IHDR PXIDATu1 @п!Hkx /#M6bH,[[8L1f>L8/_p=Ƽ`S+yn ӢMYl)іm~jm٢);L~X6h[6[D+o^Tw=sꎻ~B&AIENDB`nemo-5.2.4/gresources/nemo-bookmarks-window.glade0000664000175000017500000004257514167325357021046 0ustar fabiofabio False 5 Edit Bookmarks center normal True False vertical 2 True False end gtk-sort-ascending True True True True False True 1 gtk-jump-to True True True False True False True 2 gtk-remove True True True False True False True 4 gtk-close True True True False True False True 5 False True end 0 True False 5 18 True True False True False vertical 6 True False <b>_Bookmarks</b> True True bookmark_tree_view 0 False False 0 True False True False False False 0 True True never in True True False True True True 1 True True 1 True True 0 True False True False start vertical 18 True False vertical 6 True False <b>_Name</b> True True 0 False False 0 True False True False False False 0 True False True True 1 True True 1 False True 0 True False vertical 6 True False 2 2 <b>_Location</b> True True 0 False False 0 True False True False False False 0 True False True True 1 True True 1 False True 1 True True 1 True True 1 bookmark_jump_button bookmark_delete_button bookmark_close_button nemo-5.2.4/gresources/nemo-file-management-properties.glade0000664000175000017500000105107614167325357022771 0ustar fabiofabio True True True False go-previous-symbolic True False edit-find-symbolic True False view-grid-symbolic True False view-list-symbolic True False view-compact-symbolic True False xapp-prefs-preview-symbolic True False go-next-symbolic True False go-up-symbolic True False view-refresh-symbolic True False computer-symbolic True False go-home-symbolic True False location-symbolic True False utilities-terminal-symbolic True False folder-new-symbolic Icon View List View Compact View Always Local Files Only Never Decimal Decimal (long format) Binary Binary (long format) By Name By Size By Type By Detailed Type By Modification Date By Access Date By Trashed Date 33% 50% 66% 100% 150% 200% 400% 100 KB 500 KB 1 MB 3 MB 5 MB 10 MB 100 MB 1 GB 2 GB 4 GB 8 GB 16 GB 32 GB 64 GB 33% 50% 66% 100% 150% 200% 400% 33% 50% 66% 100% 150% 200% 400% Always Local Files Only Never Yes Local Files Only No False File Management Preferences center 800 600 dialog True False vertical True False True False page_stack False True 0 True False crossfade True True True False True False vertical True False 6 vertical 6 True False <b>Default View</b> True 0 False False 0 True False 40 True False vertical 6 True False 12 True False View _new folders using: True default_view_combobox 0 False False 0 True False model1 0 False True 1 False True 0 _Inherit view type from parent True True False True 0 True False False 1 True False 12 True False _Arrange items: True sort_order_combobox 0 False False 0 True False model2 0 False True 1 False True 2 Reverse sort True True False True 0 True False False 3 Sort _folders before files True True False True 0 True False False 4 Sort _favorites before other files True True True True 0 True False False 5 False True 1 False True 0 True False 6 vertical 6 True False <b>Icon View Defaults</b> True 0 False False 0 True False 40 True False vertical 6 True False 12 True False Default _zoom level: True icon_view_zoom_combobox 0 False False 0 True False model3 0 False True 1 False True 0 _Text beside icons True True False True 0 True False False 1 False True 1 False True 1 True False 6 vertical 6 True False <b>Compact View Defaults</b> True 0 False False 0 True False 40 True False vertical 6 True False 12 True False _Default zoom level: True compact_view_zoom_combobox 0 False False 0 True False model4 0 False True 1 False True 0 A_ll columns have the same width True True False True 0 True False False 1 False True 1 False True 2 True False 6 vertical 6 True False <b>List View Defaults</b> True 0 False False 0 True False 40 True False vertical 6 True False 12 True False D_efault zoom level: True list_view_zoom_combobox 0 False False 0 True False model5 0 False True 1 False True 0 False True 1 False True 3 True False 6 vertical 6 True False <b>Tree View Defaults</b> True 0 False False 0 True False 40 True False vertical 6 Show _only folders True True False True 0 True False False 0 False True 1 False True 4 views Views view-grid-symbolic True True True False True False vertical True False 6 vertical 6 True False <b>Behavior</b> True 0 False False 0 True False 40 True False vertical _Single click to open items True True False True 0 True True False False 0 _Double click to open items True True False True 0 True single_click_radiobutton False False 3 1 Click on a file's name twice to rename it True True False True 0 True False False 3 2 Open each _folder in its own window True True False True 0 True False False 3 3 Always start in dual-pane view True True False True 0 True False False 3 4 Ignore per-folder view preferences True True False True 0 True False False 3 5 Disable file operation queueing True True False True 0 True False False 3 6 Double-click on a blank area to go to the parent folder True True False True 0 True False False 3 7 False False 1 False True 0 True False 6 vertical 6 True False <b>Executable Text Files</b> True 0 False False 0 True False 40 True False vertical 6 _Run executable text files when they are opened True True False True 0 True True False False 0 _View executable text files when they are opened True True False True 0 True scripts_execute_radiobutton False False 1 _Ask each time True True False True 0 True scripts_execute_radiobutton False False 2 False False 1 False True 1 True False 6 vertical 6 True False <b>Trash</b> True 0 False False 0 True False 40 True False vertical 6 Ask before moving files to the Trash True True False True 0 True False False 0 Ask before _emptying the Trash or deleting files True True False True 0 True False False 1 I_nclude a Delete command that bypasses Trash True True False True 0 True False False 2 Bypass the Trash when the Delete key is pressed True True False 0 True False False 3 False False 1 False True 2 True False 6 vertical 6 True False <b>Media Handling</b> True 0 False False 0 True False 40 True False vertical 6 Automatically mount removeable media when inserted and on startup True True False True 0 True False False 0 Automatically open a folder for automounted media True True False True 0 True False False 1 Prompt or autorun/autostart programs when media are inserted True True False True 0 True False False 2 Automatically close the device's tab, pane, or window when a device is unmounted or ejected True True False True 0 True False False 3 False False 1 False True 3 True False 6 vertical 6 True False <b>Bulk Rename</b> True 0 False False 0 True False 40 40 True False vertical True False 4 True False Command to invoke when renaming multiple items: 0 False True 0 True True True out False True 1 False True 0 False False 1 False True 4 behavior Behavior xapp-prefs-behavior-symbolic 1 True True True False True False vertical True False 6 vertical 6 True False <b>Icon Captions</b> True 0 False False 0 True False 40 True False vertical 6 True False Choose the order of information to appear beneath icon names. More information will appear when zooming in closer. True 0 False False 0 True False True False False False 0 True False False False 1 False False 1 True False True False True False False 0 True False False False 1 False False 2 True False True False False False 0 True False False False 1 False False 3 False False 1 False True 0 True False 6 vertical 6 True False <b>Date</b> True 0 False False 0 True False 40 True False 12 True False _Format: True date_format_combobox False False 0 True False False False 1 False False 1 False False 1 True False 6 vertical 6 True False <b>Window and Tab Titles</b> True 0 False False 0 True False 40 True False vertical 6 Show the full p_ath in the title bar and tab bars True True False True 0 True False False 0 False False 1 False True 2 True False 6 vertical 6 True False <b>File Size</b> True 0 False False 0 True False 40 True False 12 True False _Prefixes: True size_prefixes_combobox False False 0 True False model11 0 False False 1 False False 1 False False 3 True False 6 vertical 6 True False <b>File Properties</b> True 0 False False 0 True False 40 True False vertical 6 Show advanced permissions in the file property dialog True True False True 0 True False False 0 False False 2 False False 4 True False 6 vertical 6 True False <b>Move/Copy To Menu</b> True 0 False False 0 True False 40 True False vertical 6 List bookmarks in the menu True True False True 0 True False False 0 List devices and network locations in the menu True True False True 0 True False False 1 False False 1 False True 5 display Display xapp-prefs-display-symbolic 2 True True True False True False vertical True False 6 vertical 6 True False <b>List Columns</b> True 0 False False 0 True False 12 True False vertical 6 True False Choose the order of information to appear in the list view. True 0 False False 0 True True 1 True True 0 list-columns List Columns view-list-symbolic 3 True True True False True False vertical True False 6 vertical 6 True False <b>Previewable Files</b> True 0 False False 0 True False 40 True False vertical 6 True False 12 True False Show _thumbnails: True preview_image_combobox 0 False False 0 True False model7 0 False False 1 False False 0 _Inherit thumbnail visibility from parent True True False True 0 True False False 1 True False 12 True False _Only for files smaller than: True preview_image_size_combobox 0 False False 0 True False model64 0 False True 1 False True 2 False True 1 False True 0 True False 6 vertical 6 True False <b>Folders</b> True 0 False False 0 True False 40 True False vertical 6 True False 12 True False Count _number of items: True preview_folder_combobox 0 False False 0 True False model10 0 False True 1 False True 0 False True 1 False True 1 True False 6 vertical 6 True False <b>Tooltips</b> True 0 False False 0 True False 40 True False vertical 3 Show tooltips in icon and compact views True True False True 0 True False False 3 0 Show tooltips in list views True True False True 0 True False False 3 1 Show tooltips on the desktop True True False True 0 True False False 3 2 True False <i>By default, a folder tooltip shows the item count, and files display their size. Select additional information to display in the tooltip:</i> True 0 False True 3 3 True False 40 True False vertical 6 Detailed file type True True False 0 True False False 0 Modified date True True False 0 True False False 1 Created date True True False True 0 True False False 2 Accessed date True True False True 0 True False False 3 File or folder location True True False True 0 True False False 4 False True 4 False False 1 False True 2 preview Preview xapp-prefs-preview-symbolic 4 True True True False True False vertical True False 6 vertical 6 True False Visible Buttons 0 False True 0 True False 40 3 6 6 True True True False 6 show_previous_icon_toolbar_togglebutton True True True image1 False True 0 True False Previous False True 1 0 0 True False 6 show_previous_icon_toolbar_togglebutton True True True image2 False True 0 True False Next False True 1 1 0 True False 6 show_previous_icon_toolbar_togglebutton True True True image3 False True 0 True False Up False True 1 0 1 True False 6 show_previous_icon_toolbar_togglebutton True True True image4 False True 0 True False Refresh False True 1 1 1 True False 6 show_previous_icon_toolbar_togglebutton True True True image5 False True 0 True False Computer False True 1 0 2 True False 6 show_previous_icon_toolbar_togglebutton True True True image6 False True 0 True False Home False True 1 1 2 True False 6 show_previous_icon_toolbar_togglebutton True True True image7 False True 0 True False Location entry toggle False True 1 0 3 True False 6 show_previous_icon_toolbar_togglebutton True True True image8 False True 0 True False Open in terminal False True 1 1 3 True False 6 show_previous_icon_toolbar_togglebutton True True True image9 False True 0 True False New folder False True 1 0 4 True False 6 show_previous_icon_toolbar_togglebutton True True True image10 False True 0 True False Search False True 1 1 4 True False 6 show_previous_icon_toolbar_togglebutton True True True image11 False True 0 True False Icon view False True 1 0 5 True False 6 show_previous_icon_toolbar_togglebutton True True True image12 False True 0 True False List view False True 1 1 5 True False 6 show_previous_icon_toolbar_togglebutton True True True image13 False True 0 True False Compact view False True 1 0 6 True False 6 show_show_thumbnails_icon_toolbar_togglebutton True True True image14 False True 0 True False Show Thumbnails False True 1 1 6 False True 2 True True 0 toolbar Toolbar xapp-prefs-toolbar-symbolic 5 True True True False True False 6 vertical True False Visible Entries 0 False True 0 True False True False vertical 5 True False vertical True False Selection False True 5 0 True False True True False _Open True True False 2 2 True True True True False Open in New _Tab True True False 2 2 True True True True False Open in New _Window True True False 2 2 True True True True False _Scripts True True False 2 2 True True True True False Cu_t True True False 2 2 True True True True False _Copy True True False 2 2 True True True True False _Paste True True False 2 2 True True True True False D_uplicate True True False 2 2 True True True True False P_in True True False 2 2 True True True True False Favorite True True False 2 2 True True True True False Ma_ke Link True True False 2 2 True True True True False _Rename... True True False 2 2 True True True True False Cop_y to True True False 2 2 True True True True False M_ove to True True False 2 2 True True True True False Open in Terminal True True False 2 2 True True True False Open as Root True True False 2 2 True True True False Mo_ve to Trash True True False 2 2 True True True True False _Properties True True False 2 2 True True False True 1 False True 2 True False 0 True False vertical 5 True False vertical True False Background False True 5 0 True False True True False Create New _Folder True True False 2 2 True True True True False _Scripts True True False 2 2 True True True True False Open in Terminal True True False 2 2 True True True False Open as Root True True False 2 2 True True True False Show _Hidden Files True True False 2 2 True True True True False _Paste True True False 2 2 True True True True False _Properties True True False 2 2 True True False True 1 False True 4 True False vertical True False Icon View False True 5 0 True False True True False Arran_ge Items True True False 2 2 True True True True False _Organize by Name True True False 2 2 True True False True 1 True False 5 True False vertical True False Desktop False True 5 0 True False True True False _Customize True True False 2 2 True True False True 1 False True 6 True False 1 True False 1 True False Visible action and extension entries can be configured in the Plugins tab True True True end 2 page0 Context Menus open-menu-symbolic 6 True True True False True False vertical plugins Plugins xapp-prefs-plugins-symbolic 7 True True 1 True True 0 Always Local Files Only Never nemo-5.2.4/gresources/nemo-search-bar.glade0000664000175000017500000002676514167325357017563 0ustar fabiofabio True False True other False True 6 end False False 0 False True False True vertical 6 True False 6 True False Search for files: 1 False True 0 True False True True False system-search-symbolic True True 1 True True False True Case sensitive True False xapp-text-case-symbolic False True 2 True True False True Search folders recursively True False nemo-recursive-search-symbolic False True 3 True True 1 False True 0 True False 6 True False Search content: 1 False True 0 True False True True False system-search-symbolic True True 1 True True False True Case sensitive True False xapp-text-case-symbolic False True 2 True True False True Regular expression True False xapp-use-regex-symbolic False True 3 True True 1 False True 1 False True 0 False False 0 nemo-5.2.4/gresources/nemo-style-application.css0000664000175000017500000000351714167325357020717 0ustar fabiofabio/* Desktop text stuff */ .nemo-window.nemo-desktop-window notebook, .nemo-window.nemo-desktop-window paned { background-color: transparent; } .nemo-desktop-window, .nemo-desktop-window:backdrop { box-shadow: none; } NemoDesktopWindow GtkPaned { background-color: transparent; } .nemo-canvas-item { border-radius: 3px; } .nemo-desktop { -NemoIconContainer-activate-prelight-icon-label: true; } .nemo-desktop.nemo-canvas-item { color: #eeeeee; text-shadow: 1px 1px alpha(black, 0.8); } .nemo-desktop.nemo-canvas-item:hover { background-color: alpha(black, 0.5); background-image: none; text-shadow: none; } .nemo-desktop.nemo-canvas-item:selected { background-color: alpha(@theme_selected_bg_color, 0.8); background-image: none; text-shadow: none; color: #f5f5f5; } /* EelEditableLabel (icon labels) */ .nemo-desktop.view .entry, .nemo-desktop.view .entry:active, .nemo-desktop.view .entry:focus, .nemo-desktop.view .entry:backdrop { border-image: none; border-style: solid; border-width: 1px; border-color: #000000; border-radius: 3px; color: #000000; caret-color: #000000; text-shadow: none; background-image: -gtk-gradient(linear, left top, left bottom, from (shade(rgba(255,255,255,1), 0.86)), color-stop (0.15, shade(rgba(255,255,255,1), 0.96)), color-stop (0.50, shade(rgba(255,255,255,1), 0.98)), to (shade(rgba(255,255,255,1), 1.00))); } .nemo-desktop.view .entry:selected, .nemo-desktop.view .entry:focus:selected, .nemo-desktop.view .entry:backdrop:selected { background-color: @theme_selected_bg_color; color: @theme_selected_fg_color; text-shadow: none; } nemo-5.2.4/files/0000775000175000017500000000000014167325357012523 5ustar fabiofabionemo-5.2.4/files/meson.build0000664000175000017500000000043514167325357014667 0ustar fabiofabiomessage('Copying ./files structure') install_subdir('usr/share/gtksourceview-2.0', install_dir: get_option('datadir'), ) install_subdir('usr/share/gtksourceview-3.0', install_dir: get_option('datadir'), ) install_subdir('usr/share/nemo', install_dir: get_option('datadir'), ) nemo-5.2.4/files/usr/0000775000175000017500000000000014167325357013334 5ustar fabiofabionemo-5.2.4/files/usr/share/0000775000175000017500000000000014167325357014436 5ustar fabiofabionemo-5.2.4/files/usr/share/gtksourceview-3.0/0000775000175000017500000000000014167325357017635 5ustar fabiofabionemo-5.2.4/files/usr/share/gtksourceview-3.0/language-specs/0000775000175000017500000000000014167325357022533 5ustar fabiofabionemo-5.2.4/files/usr/share/gtksourceview-3.0/language-specs/nemo_action.lang0000664000175000017500000001014514167325357025672 0ustar fabiofabio application/nemo-action *.nemo_action # nemo-5.2.4/data/icons/hicolor/actions/scalable/mount-archive-symbolic.svg0000664000175000017500000000417114167325357025436 0ustar fabiofabio image/svg+xml nemo-5.2.4/data/icons/hicolor/actions/scalable/nemo-recursive-search-symbolic.svg0000664000175000017500000001334214167325357027063 0ustar fabiofabio image/svg+xml nemo-5.2.4/data/icons/hicolor/actions/scalable/nemo-horizontal-layout-symbolic.svg0000664000175000017500000000451414167325357027316 0ustar fabiofabio image/svg+xml Gnome Symbolic Icon Theme Gnome Symbolic Icon Theme nemo-5.2.4/data/icons/hicolor/actions/scalable/nemo-auto-arrange-symbolic.svg0000664000175000017500000000413714167325357026200 0ustar fabiofabio image/svg+xml Gnome Symbolic Icon Theme Gnome Symbolic Icon Theme nemo-5.2.4/data/icons/hicolor/actions/scalable/sidebar-hide-symbolic.svg0000664000175000017500000000066114167325357025175 0ustar fabiofabio nemo-5.2.4/data/icons/hicolor/actions/scalable/nemo-horizontal-layout-wide-symbolic.svg0000664000175000017500000000523614167325357030246 0ustar fabiofabio image/svg+xml nemo-5.2.4/data/icons/hicolor/actions/16x16/0000775000175000017500000000000014167325357017331 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/actions/16x16/menu-sort-down.png0000664000175000017500000000037114167325357022736 0ustar fabiofabioPNG  IHDRabKGD pHYs  tIME 2sIDAT8= 0 sB$mx|!M!}NK `uL)ZkC0l:|;̌Xkݟ$Uk.M,[&PJ s]GFYsQᔤIENDB`nemo-5.2.4/data/icons/hicolor/actions/16x16/menu-none.png0000664000175000017500000000035414167325357021742 0ustar fabiofabioPNG  IHDRabKGD pHYs  tIME & $OyIDAT81 R^AewZPM.;)mëYYxy$mZkS1}3I;쒙j-IUsU|w/YJAreGf OrilCq*p! !Nu]fr+jp8{,7f^g8??!4M`R[;op zv>|j )RD"hK4oCxubۅ\R7LӼiZw|u:u'cW"D%b^. Ri^ha@u 11Li|ڕIENDB`nemo-5.2.4/data/icons/hicolor/actions/16x16/menu-sort-right-free.png0000664000175000017500000000032514167325357024022 0ustar fabiofabioPNG  IHDRabKGD pHYs  tIME" ybIDAT8ұ 0 DD^!d\%Cd|@C,l?.@@ 03J)19Ǒ H!lOcW0˭,V~呾lw}IENDB`nemo-5.2.4/data/icons/hicolor/actions/16x16/menu-sort-up.png0000664000175000017500000000034214167325357022411 0ustar fabiofabioPNG  IHDRabKGD pHYs  tIME ةoIDAT8Q  1&fˑHꨳN~فlRPk5 J& UPDX$fz1fRr{`G~| lU$6IENDB`nemo-5.2.4/data/icons/hicolor/actions/16x16/menu-sort-up-free.png0000664000175000017500000000036214167325357023332 0ustar fabiofabioPNG  IHDRabKGD pHYs  tIME"6oIDAT8Q }tG`@zhD2)Uڒ(9fg"H~ \z3ZZb2ID"B3{OU5j:m^KH)巛0@!' 4U^ tIENDB`nemo-5.2.4/data/icons/hicolor/actions/16x16/menu-sort-down-free.png0000664000175000017500000000040314167325357023651 0ustar fabiofabioPNG  IHDRabKGD pHYs  tIME ^IDAT8;1 DCt9BFQp CK X$ڝΉߓ{ I `ERzK\K)YHd&N! lscyEԏL{^yQ/QYG&)IENDB`nemo-5.2.4/data/icons/hicolor/actions/16x16/menu-sort-right.png0000664000175000017500000000033314167325357023102 0ustar fabiofabioPNG  IHDRabKGD pHYs  tIME .BhIDAT8ұ CQ+;@s[CC0?U(UrJ':4 䜩@)%B֞# s \kZW*c ߈+. ʲF IENDB`nemo-5.2.4/data/icons/hicolor/actions/16x16/menu-sort-left-free.png0000664000175000017500000000033714167325357023642 0ustar fabiofabioPNG  IHDRabKGD pHYs  tIME!BolIDAT8ݒ 0 _lAd쑑XҮ!S t'~! hd!%81`lSJp 0< ay|)"_NZ+DnpD2u}acIENDB`nemo-5.2.4/data/icons/hicolor/actions/32x32/0000775000175000017500000000000014167325357017325 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/actions/32x32/nemo-eject.png0000664000175000017500000000250414167325357022062 0ustar fabiofabioPNG  IHDR szzbKGD pHYs|4ktIME rIDATXWKcW$潘L4[$~7 Epнe]2~UA S(Ih͠HM1cyI1w}i/NSJxd2\2L2N}9555j urrA2|娢(PEa\&ɧ3n;Տ2dXc A(D"Ǘ0Zksƽ־ *jXCi4Mvtt7==~*?>>x)vo|k:&6bZ&L1ox$b!ki  :J)!EcccONk=333#@`BUպƋ"|>"T*A4="Ľ_|ul477QJ)EWWDQD|5X fn8...@$Iztm65Յr\w$Ii4^QyVW<ש7|zdn@xWz466jQ3 (J/-;~0`p466Iv- v[Fw3(.u!ܹ]^^b\'RTRz*R 7JeJ?ZA@$3sxFNlBSS+>i-!Ŏ;yy|,;"T2l8BMWk#R՞AA8Y(B'hln]Q(zύךr땢YA?>dGEQ^~H$~nFRl6K-~mU*VVVB;;;p$`:<< r[%``qq1θ1zoZVmycX 3=oJUωD"w8F ---}57?.\e~e,ndRJ%vvv ?rڟoif3\ 6`wwwt:eYP(|0SJsܺP'K.ȝux_?p7IENDB`nemo-5.2.4/data/icons/hicolor/status/0000775000175000017500000000000014167325357016427 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/status/scalable/0000775000175000017500000000000014167325357020175 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/status/scalable/nemo-bookmark-not-found-symbolic.svg0000664000175000017500000001422014167325357027204 0ustar fabiofabio image/svg+xml Gnome Symbolic Icon Theme Gnome Symbolic Icon Theme nemo-5.2.4/data/icons/hicolor/status/48x48/0000775000175000017500000000000014167325357017226 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/status/48x48/progress-90.png0000664000175000017500000000572214167325357022034 0ustar fabiofabioPNG  IHDR00WbKGD pHYs B(xtIME׺& _IDATh}}?33~뻽ۻخ}al>l&1Vi!Bд%L"RFDT$BRP #4v jb|Ϸ<]0H?3 el\-%i$9LҌqg<έ| 䑜@R@RB; HvWYg- ((Iq=c_ME ̇d 2 qmQ3M X=71+#q*Sr1OKz ~]\1ArEoOe|96$(rNnbHF[- |'ϐKs#wr;g+g/`>l}L|NTO\^m;U^2Nν'Vݓ R)}||reYTU*mcv=MP 2 L۶mZ8QQm<7}:Yƃ\ݙVs3S(OcmF/,dY:::j*.JrB4MX,R(p]* xX/*UW]b+ߢH  խ- Y  P#i",JRrLRu]lۮlBR Ǣy3&) pt#OG V6 ђa?SJv'o\9T*!m|>i(B @ut]oV |&*JXu`4dw*vlD OG riIb+#WR}JP S*0̺a:;;I&$Ix_JRd~tX} 7s ~X>%v K90M}7 NVgG2:o|g ~{5 v;7Ik/$; ֚8Nv,c ݵ1PYVA6qS@Gm]Цi*S >ڠ, T&NqS$w^`0yfB@,ROƁgWx@@jΏ37xQv<%pc ϳլCYi/߲QZvOuFud)矁&u~S 8leևee=%,%Nf210׼.P'<}?ÓٮyGs >z#FaUƤH"EIWx1`4{@=B {$Ԉ+5.EYp&2#dx1ふf+86AIENDB`nemo-5.2.4/data/icons/hicolor/status/48x48/progress-50.png0000664000175000017500000000466214167325357022032 0ustar fabiofabioPNG  IHDR00WbKGD pHYs B(xtIME\ ?IDAThe?;nrwP[Գ@P6 J)IM4 FIK415B@ E)HҤGݻ3;ݽZ I>?GG.ݼVg@+*PL`1g?16K a D1""by߰HUDP$q:~/ƙI@MSJFlIfp.9ĉtr)O<3@)gi߫Ӎh$ʓ'f9}N-<dN{)qs?bocqՠ#((IʤqaTFqwy v&(s;B0CrS/9]b3T .r0 NQ§ ؆ C<`FBPJ |e㯾||)9֯1'N!$۸?b֭WhGG:J)4M>R qPJ"8RJJ%=iTƺΗ\=Ĭ)h`_V ȼΖ[:F*2GGG)8CTT*.]uM'NN]EJG1Py+ he9?ZxWzbLC@ضMXP( Durl?Phjj"(YԹ(ꫯp#иUQfqH9O:#q<|bme_WHJI*}&8Qr|Ay}4,m`7ωTmimm /$LVszm*^e׭vTJJeyR=)mq߽c&---4LjD"a єHDBD"e/Jd4CCV 3% Ti9»lZ,b@)/_N*BP(uN6E$ylH7Qna @:O9 r ݠvBad}qoE{Lf8DϲoSp1e gI࢐[0LlC]p !"S 8Q01NH";xK}t1|d,B;iY м sw?Mm.mRTx`Au\έ\Ox[/,^Q&Nbs 9Oym }Wv3R)}E˳WėTG>yoIX]@ajO q#Mf<9п4chEQORqH) B8!JSN(8txdLֺ=0&W,bYw7 ^k ^K+{ٓic||R8T** n=MPI2 Lu]Z$UQf~‹;_m:1nfU ~X 7tD|'!```UUmks+i"1 (6m! q!@J븮K,0 <ϫVu0 H$B8FQlFJih8 P*XzE@뾣kP TE,/ӗ oA\4r\=`)rb18ibFPT*2SSSd2Q_MMPUP(իP"`V]7C<t7ljh%_nݺ4'͢z,@\:0]כr%Mtww#G;vQO@| [prN\.e]F*nUUF\7DRˁ<} <*5Q:EԶ8]T Xlc%IWfE> p¢s= ! a6\_V='D T Я{EASU ]'ѓs=|t{3dƾ$ٶ#+9C\S`D®nps隃M\!r6.gY5?;68188_` 1U6,V{/$Xslg CA讆\r* B lgGk: 㔸PPQ4UV%``H+]ll[18/Jֶ|2 KG=P :"?Hώ󸉗W[W?$Nkt(8&ְ0sW12+ݧY^&x8>py+Ψ:]W`$DFg s+}?F[,|/3^89kP"G 6s ZS9 ]c!~=c"OnDZme]˷϶@uV%\ɟGpI| ýb-e |y^(?(!Z{FE,e-,$#?F ;3\" Y5,a) :M91s^bG`Bg:htaV\ĉA$(@)`c3x9NAvާwR_% Ǒ@R5`gI{_^2IENDB`nemo-5.2.4/data/icons/hicolor/status/48x48/progress-40.png0000664000175000017500000000443114167325357022023 0ustar fabiofabioPNG  IHDR00WbKGD pHYs B(xtIME% LlIDAThlu_qwdv&YDW%d 3F?4(ĐIjB$ƈp3N#QdYvtmovy߯]f1$ӧycm@7 }hö 4S`Q$@hGGSB3M*0@TI빙3yO]8 Yd f+"C'*PFU<Ë|O3~kĢ1>U,J֐a&`&evq/w4{bdv[t 1|~65ItI3nhP>-r> t!ƹ c^|޹TjSs510IGWg ؖ-KI̋Vڮc YZk&&&( D" &ϓf9r;v-SB\{%K ʮaiX| +V}iCf>t?7yS,LpV laD4D;a!*aԋّe`xx\3SŅ p^*G658x?w^35}>ɧXϥq"8xX>9sH="AGɹ 2Ȁ߈zmUwqxFksBb6;;xW y <25/kb9Y`|,F,ٙa9/'}cs^˹!IENDB`nemo-5.2.4/data/icons/hicolor/status/48x48/progress-80.png0000664000175000017500000000551614167325357022034 0ustar fabiofabioPNG  IHDR00WbKGD pHYs B(xtIME gb* IDATh{T?93;3;ξ  euU\߯V-JcZXߘhh4Fiؘ6MH#J4bP|[,{﹧̢̝FMO,w\{g)=\b@ +JƐ06ƣ\ bY @rIIYE~ϵ@ǑjE0؀A8K0̳imi]1g\-L}vbXIqFFF#HL&d2ԄYR)$}] 5$ؼI8El,f9 7v,:K^S9M];vc4%wrl@c}D@ )(h3Z9WEwD븒/< gudx0S:7q#I&ņwA%I$EޢUB$񴲜fTGýhf13[bAwFfof`+< уMG>b灝w?p< $ĉ|Xû:Y3S1 0|-|N&M 9lqF7,GyVbbrXoʐb;Cv$mf:ȑl___sRih`4t|H3f\e \a`3M44%4y\m~ }b  @@$H/KF?@;`ݝWu2vpa ]tͼb'y7&ZX9|Whc KLf9  Z Y@xs(0^W_p*R6|0nq4y\xop&C>ͮ۩bE|xޥܨB7Aa+&Cwު>q'`,y˴\a,~4Z+|?@)9Y)UJFi_=?2omz'<VC8uTow3=cihB4W(T*5HR"Rp N :< M.j: 3ՙ|#iiڵke|ߧRPT ׯffA 4c*ok!F? м;m7H̉~e˖x.u!a(Ƕm\E 8B \.!(Ju==ض3pСC/ 5g_<[^dGG-5xGWWaW6ccctuuFJR tu52B AC:pg[A$ mofr9.^H2auRJz*dYrBL&$a655E.c玝iq.WBx{[[!͒N) MkDj hkkM#0 r\߱͛6Lr|@jdddb[>[z\4xa$ \qlۮ JyΒfRbv}7M0 "{5]}zddJTbv|tqiǡ\.eYuaH eYMiDQۑR֫xǹr cLOOw{^6C*ka!덉ѠڊAPLC)ZkZIwKW9e~m$IZI8hH$Yg;-K$qѹT*2:6J4[mkU\ץ瞍rS0 Ccj[ hM__tÜ3ZOKj, CB9wCI(C5T5d̦֢J'qX0UJ9[l豣!P,B9 Üjz/a`[-ntaܠha7u㺹jloZs9:tԐR"ܵK^:]VvOr;<0\Z-jT0E^->9:0RUG(@Xq@ۺzNfm|@t?kIENDB`nemo-5.2.4/data/icons/hicolor/status/48x48/progress-10.png0000664000175000017500000000356214167325357022024 0ustar fabiofabioPNG  IHDR00WbKGD pHYs B(xtIMELIDATh_h\Y?{̝?I&ͶL:-ۥ ba}YZ[>)˪((EI|Q}Ђ TE7aYibR)3ܹs|m$֭?slXz8}z# Gi*uo'v9}1,aahbX;r(l+0Q@@E<?b7Iܡ:&ce/'9ۼ3<$[LZa~OO+恗8_>CgG $_.ZÃc;/ ^m\tSrq|G |xzיꜽ>U{)߶ݯ0ƠMhVk6?mFGA;g^wכ% Ν;WڳoȈ#eY=5Zk6A`C" R(hܺu ˲ԕwT̙3C^'Y}n$?j g~~!N,Bk PJqM0D)EEA@EH)H%Q;|"!^ M~zbR000!B}Z(Rh4jhWfd2nK^>rHr=!V}կ},L d ll6iZ֚0 WbmPB5L/O>'{Οd}Ra"z˲mqp'mY]9~7x|q=#7|>O>'{èl$E=pرb$"zS'I==lc QccccbRApU&&&btXE^' C}93>ƍ,,,P.T*uJҪ2fjJ¾NNZ3~?KϿ410.rB@^_K[yFFFbpp06{= j۱}ѣG?~?\}5dV#B4Luq'%!vY^^\.q؛RJ$ <(3+333g!fopR,T*ض}; ٶjVRL&F)w^~k׮155._>թF'4-ٿ?|>B,ZXMTs{Z<x2NgzI۩?3&''kqrtd2I"@v9K6!L.Jܷmj:7effi6;#YTL&CmN&!ҝ0={P(RcnoK,""r"E"3u'dѢKS)Rկ֔(q-&8y$H$4 *ڬTH(r{B cd3iF #Da+;꭛r7,1֥?\Z5: I^ݽ|`UU񃸑=v_ױ E`YYl%`zK%`߱9x7Нps|d`6V|X dKd+'2l`K o)IENDB`nemo-5.2.4/data/icons/hicolor/status/48x48/progress-0.png0000664000175000017500000000321314167325357021734 0ustar fabiofabioPNG  IHDR00WbKGD pHYs B(xtIME4̘IDAThoi?3{˙i`qJV  J,h9TBh@@ B⌊lZQ)-&?̼iBAȏjdyw`XSL12/)-~@~YK p7yjgK< c Zqj[kyZcA_?RqFĩk+#eYc5Zk>qcC.#cR(Xp}h<3z෤o/-f;wP*2i-aC666h44M6z}O-&NҖ9idIw~gqftu]jvHȨT*fgg)Y'=!^/+|eŋ_:_܊lZqLضͨ yR(FkZk J):B:Ν+ρuVKKuPJam$P(8iF58Yq},N1uR1z^ƙ3gIxD|[RJeYJ)(BAP \qHH$}(bwwFR q2oJ)B8{ ط>)n޼j5&mgd(H)3bmxǑ#GPJe]|7Xxkw|y`"[͏w^ uBaց/*;<D`?qs2n̰W(F7SL1F1 35 uZVIENDB`nemo-5.2.4/data/icons/hicolor/status/48x48/progress-30.png0000664000175000017500000000414114167325357022020 0ustar fabiofabioPNG  IHDR00WbKGD pHYs B(xtIME:IDAThk\g=9sfvgc6L 15mQۦ4B*1 ~RTDA ()ƠP*$-Z/R"]I7ٝdfwg9agNfv6n"!}afϞ=}.YX38T@I4EL2m~V~ F3f ?Q {"n @@$ɰ]q~$X7'=UD pY7$q9o5ËW1z 9?cֳH՘ 8̓pf`e΢|E~~Hq~+& Ϣ9G'E=|)33hNs;ٴ~a,oh; tM&Cw4x;eg,JZkhJOZiV_xy$:H~#<@zo\Vnh]|``6M5aW(h45X R"hp Ð=Y)?O.Gƛ]d}`チ̠fS}FA  f&a055E>'G߃ @Jic Џ"[!z~t" w~PP(3!B<:Z )%iRT(J(.=0HӤRx.Oj)y],*V@ -|vnYe*Sߺ7&zRiBJTU*zPJl^$$͢"JO%w.P 2}x<#]nJ%Vqlj&x>2 Lt:ojZ5m;[v={xgB`#;uXHuGXZk&'')b10\JIQ*;w).^ɓ'iyH\&sٲe_ .簼ٙB @o5ךBSN$2 LNN) er\GmbHP`ㆍ´̽ͻK['hD@<==k!ϓf)Qyli200mV;BPZ#d劕=;w?ޥCX kV}y#fT}2 ejbsC=/#"L"$!Rm6kpp+b;+udKIК59ǑRƲ, Lb6aFtnضM<u] àRqL}rzM[7P'Ydwn}(e&b1jXa <$IR`vE$QH)m;:M4BغuKǾEDmHjݸ  ^z%ahhBeYX0fYVV2MuGJu={1FFFNz%ӴZUW͛7d-XoOT}I޸2 fgnJ"PY$k$yz㗿|a6L&p]X,g;T8;FRT>qZSbfeJRuP#W# 0dSZ~z,FKe0$s@JB4I!cvH.L$H$1|y`׮]-[7.kj!QT((=[iB)@U7? C h!J.) =9 3%o}4͸8(! jKv3||peTˎr-x" lnf-v[swO7l m:shspip#)_\FoWZ֊7 -ْ-YKJY%D[P PIENDB`nemo-5.2.4/data/icons/hicolor/status/48x48/progress-70.png0000664000175000017500000000536314167325357022033 0ustar fabiofabioPNG  IHDR00WbKGD pHYs B(xtIME :.B IDATh{pT?ݬU$(T@b:Zk;TvdcccG[j3vvZ: tN0("ZEtL l$>=]v $v=N3&WlX!i@5PShņ^$饛0y3`~H !!I"$ǼX ԜV ؀d f5]Əs%NByeO20*\΋w uwI/o|*if:1&f f'0C>tnqq!KI,ep޹ gx#XE1$'Hp?7erqq8]"9=,dd2g}v,Q]&(*҉,H 7)gwl_ꓺt )%#!p1qpWqđdoy^OhAϸ' $͛775ϟq4 )%wpL&C6EJC6EL&C?ۇ+7Ml(Hh CrȤh=Z!Jfd2d2,²9MP>"H$޲,Sʵ+NJ TSQ'^<>Ʋh4Jyy"8C:&J1<<MH$b19  Fwx^6$pܽvaq谪3ϣ>|[V4 qBfI&$IRtq,kei.BPSS8A|z‹n/T1%`E:pUxm˂o:FeY Q]1 0E)t:^o؆(tBlZ7R/ʖ)XA$>43GEEpp8L0̃/4d2'ЈaV^q"60u:!"(򥷵RJz{{x<l΋۶$D8q}}}倎60|x^E!H 4M4M#D*tU9F'5kp~}c@4 KQiTU0M0rD,"ɐN& 065MCUU</;(1J =/i,b)sxHS+ߣI=(SFy򲅥,e?IGxDZr&i,O7Wp9fAvV죭xW&<"*YM9_eqZ % #d*깒y:}2=@bn'x.vGt?0xﰞE,C]җ;e3ϒBOE':7t`&sY sx ig/:lzZoXs\ŵ\bR+v^ub}Sy0ȭ{{5:%̧QK qH^H&1Le.=N `wg `*2%dfkn=L,!FIENDB`nemo-5.2.4/data/icons/hicolor/status/48x48/progress-60.png0000664000175000017500000000515314167325357022027 0ustar fabiofabioPNG  IHDR00WbKGD pHYs B(xtIME 85z} IDATh{\e:;ҲbZ[K,P\`ARZR?4b5j[ii  "s=s{f:mgb K3'_Lvw].Zf  Fz%CHF1>̳fq0d"") ɐ}^嗬gD.6P,V~B?/]> I@3JF!\ְ8"*m\&^k\ θr<<ClNm~9L L4IEw>[ rǘ|GC vqapZ Z8 乏,!n^YgH2BLE/aLMkTp-YgH+)gv۟߶V'tM*GH)<yboÓ'>=CzOz]҆/Y^$B&rOp6 6tϙw١VC4(R<2m#DJI m!(;v EQāGӹxvaF)@wY@/Ȕu@D[DL&AJmS.)88u4MCQIRRwqBh@XE£u:{Q^!3Ŏp:i!xeYJ%"B4M#ϓf<X,F4:="릛n O'QX˪ZWN>?kpS4E4*kb2"DBݍy-[}'Pd8"ϚM?B躎8D" uݪU0BAE!#4M4Möm)J/XM͉I%pêUn+i###UR!e*Hh4iQT!8r˲(R)QiJ `ҥZ ,Cjw^7OUlقituuNu ,\׭uW4`0HKK BWСCoy͒O^CFGG;-Dss3/&HTk$X%kU"Ah*;n;N3u_+%5&OeïEdodѢE1  4aĢQ i }\&1J?OP[l9Wh4Jm1.?pz:*Po)3gdUS'tr]W\W ǿ&<UH8L(R'Nv8r]yIg̮YY$<###xrҸB@zz(hĢZ {Ce4ϳN NRԓa$zyW5!O9 Ignec+f쫔ͱu" h%L" NrSÝ|[k?7y_<d 0#E@&; ^`(YL>  v,=\~! ?UfV眂1,Ukp$OvSm`.$kuw]Fn>ȶqȥ\˻d㎛` y 8N?0?lll @i\ϒQ[durԓ@2K縣>>O |"&OIXLv# PbCp6IENDB`nemo-5.2.4/data/icons/hicolor/devices/0000775000175000017500000000000014167325357016526 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/devices/scalable/0000775000175000017500000000000014167325357020274 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/devices/scalable/drive-removable-media-usb-symbolic.svg0000664000175000017500000000713314167325357027567 0ustar fabiofabio image/svg+xml Gnome Symbolic Icon Theme Gnome Symbolic Icon Theme nemo-5.2.4/data/icons/hicolor/apps/0000775000175000017500000000000014167325357016047 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/apps/scalable/0000775000175000017500000000000014167325357017615 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/apps/scalable/nemo.svg0000664000175000017500000000747514167325357021311 0ustar fabiofabio nemo-5.2.4/data/icons/hicolor/apps/24x24/0000775000175000017500000000000014167325357016632 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/apps/24x24/nemo.png0000664000175000017500000000153214167325357020277 0ustar fabiofabioPNG  IHDRw=sRGBbKGD pHYs B(xtIME  \ +IDATHՕj$U& 'Vܺƽd#2$.BnWJd㢪; 4߹4WdfKzЍ岿?=::ʇ<>>.?x2TI}7e&o#ykONN8;;$lo>h캱$2>3bq8=`3ly%ކ ]?eADt"L!gi,)n)cE# ؂&@B1ȃ 3IՅT(ꨵPQU/n3?=kTXkR;:-Mu0Id08{(,mK-h2ݗ- UB-(*Z]5SC7-/0싯tb}j_ {^I9Yׯ.Xt3f;c7{H6ƞ-2r]Z 1E U+uΡ1ɍDZ'vJ[h5-V6W)r5֘FG^bylQj7$c&fk<FD˲ijK=u)QL' @mlmiJm)N\5B$1l._>ĝ*ƒ CGFRGg|m0 nemo-5.2.4/data/icons/hicolor/apps/16x16/nemo.png0000664000175000017500000000100214167325357020271 0ustar fabiofabioPNG  IHDRasRGBbKGD pHYs B(xtIME 6R?HIDAT8˥nAɝC)ܝ厖xJ*D?YTFD۝8}"\0LN--ȼy0Ny~$I85I]yND\azie{zf< dYoI6܊O_.&ZU0}.NZ__>I@aFQސW"1)oDfc+JQtKOH0n m͔z+Hu,bD F;HkTbΪ\0_\q:t%hwAvD:ՂKH*ʹQ4 ੈ\FA/W'="p\2w4IENDB`nemo-5.2.4/data/icons/hicolor/apps/32x32/0000775000175000017500000000000014167325357016630 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/apps/32x32/nemo.svg0000664000175000017500000000762614167325357020322 0ustar fabiofabio nemo-5.2.4/data/icons/hicolor/apps/32x32/nemo.png0000664000175000017500000000206014167325357020272 0ustar fabiofabioPNG  IHDR szzsRGBbKGD pHYs B(xtIME "Q%tIDATXWnd5= $:JYBKXWe]6!!4Nw__Waa_۝00 qdپ}9ex^{~qqq񵻯Dc򫳳O.Ep DWWW ]߇ i0 vyyC{!.NNN>@SSWe2&)>`@DpssǏUAwҝ ӗ_\:g8Z a  aF`h &%$`1iDe"w <B " z%+n:jMa]y55!B DD2uni \s3B5A5M07iVJu2#DP# T df>3P0iyu xTS Nz ׅLs{leuSERFe6 :M&jP.͞Hy^؂1q( H>"p_sg]i0wPtfP@zNVi; `4l|ˡ@HB/:Am; ([S!F= 3 'rf`<9VŤ;"YX S)联f"#ǔb]}ݮsV0Mcn{D@q|p _dpEO6eywB|o立65Og;5_IENDB`nemo-5.2.4/data/icons/hicolor/apps/22x22/0000775000175000017500000000000014167325357016626 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/apps/22x22/nemo.svg0000664000175000017500000000735314167325357020315 0ustar fabiofabio nemo-5.2.4/data/icons/hicolor/apps/22x22/nemo.png0000664000175000017500000000145014167325357020272 0ustar fabiofabioPNG  IHDRĴl;sRGBbKGD pHYs B(xtIME  ((IDAT8Օn$E[H?+"b#ˁIyRH< БW zlOOw?+oDI>u. L9==}wNYRwGGG`礳T}'''?G"bTJ)*~8)ts_VOvwqw2s}h> ٹ;pϘ "dFAFA,n?"32%`//.(c6207< wp7T:r/sw""B)n6kKH 3"sCFFQݰH&[p2C6N*:Pmdk uͪ_Jl2|!i6R6:2N0Uu%%k<nxj$IBAڼAHҶ WYW)x%mgS G(VERuDEm"oȧt461L33 P0W:PD@d{w7#3ݷ`JAl+|{"E6n"uaR+lUg$sRzubVIENDB`nemo-5.2.4/data/icons/hicolor/categories/0000775000175000017500000000000014167325357017231 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/categories/scalable/0000775000175000017500000000000014167325357020777 5ustar fabiofabionemo-5.2.4/data/icons/hicolor/categories/scalable/nemo-prefs-plugins-symbolic.svg0000664000175000017500000000450014167325357027070 0ustar fabiofabio image/svg+xml nemo-5.2.4/data/icons/hicolor/categories/scalable/nemo-prefs-behavior-symbolic.svg0000664000175000017500000000464114167325357027214 0ustar fabiofabio image/svg+xml nemo-5.2.4/data/icons/hicolor/categories/scalable/nemo-prefs-preview-symbolic.svg0000664000175000017500000000364214167325357027076 0ustar fabiofabio image/svg+xml nemo-5.2.4/data/icons/hicolor/categories/scalable/nemo-prefs-toolbar-symbolic.svg0000664000175000017500000000230314167325357027050 0ustar fabiofabio image/svg+xml Gnome Symbolic Icon Theme Gnome Symbolic Icon Theme nemo-5.2.4/data/icons/hicolor/categories/scalable/nemo-prefs-display-symbolic.svg0000664000175000017500000000512614167325357027061 0ustar fabiofabio image/svg+xml nemo-5.2.4/data/org.Cinnamon.xml0000664000175000017500000000134514167325357015407 0ustar fabiofabio nemo-5.2.4/data/nemo.service.in0000664000175000017500000000010414167325357015252 0ustar fabiofabio[D-BUS Service] Name=org.Nemo Exec=@bindir@/nemo --no-default-windownemo-5.2.4/data/nemo.FileManager1.service.in0000664000175000017500000000013114167325357017504 0ustar fabiofabio[D-BUS Service] Name=org.freedesktop.FileManager1 Exec=@bindir@/nemo --no-default-window nemo-5.2.4/data/nemo_search_helper.lang0000664000175000017500000000741314167325357017024 0ustar fabiofabio application/nemo-search-helper *.nemo_search_helper #