Questions tagged [nautilus]

Nautilus is the official file manager and desktop shell for the GNOME desktop. Nautilus is is extensible via C and Python.

Nautilus is the official file manager and desktop shell for the GNOME desktop. Nautilus is extensible via C and Python.

142 questions
5
votes
1 answer

Python-nautilus : add custom emblems (overlay icon)

I use the python-nautilus module, and I try to add a custom emblem (an icon overlay), like that: But I didn't found anything about that. I'm able to add an existing emblem like "multimedia" with this code: import os.path from gi.repository import…
Slot
  • 1,006
  • 2
  • 13
  • 27
5
votes
1 answer

GNOME: Where does Nautilus store emblem data and how?

Nautilus allows users to set emblems on directories and files but surprisingly it doesn't use the actual file metadata stores like xattr to store this added metadata. So where and how does Nautilus store this data? (I'd like to access it from…
isync
  • 537
  • 6
  • 15
4
votes
2 answers

Gnome files Nautilus context menu "Open with" application list

I am using Gnome with Archlinux. My default file manager is Nautilus. How do I add recommended apps in "right-click" menu? (Ubuntu-like) They listed only, when I click "Open with other Application" But it's too long!
4
votes
1 answer

use gtk in a nautilus extension using python

The following code import gtk import nautilus import os def alert(message): """A function to debug""" dialog = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_INFO, gtk.BUTTONS_CLOSE, message) dialog.run() …
Nils
  • 9,682
  • 6
  • 46
  • 72
4
votes
1 answer

Submenu items in Nautilus right-click menu

I am trying to write an extension for nautilus, which add an item to the menu that appears when you right-click a file (as shown in image) However, I would like to add a submenu to my custom menu item. I downloaded a 'nautilus-python' package which…
sqram
  • 7,069
  • 8
  • 48
  • 66
4
votes
1 answer

Develop gvfs adapter for a web-storage service?

Ubuntu has a useful feature where you can mount and view files on an external ssh account, bluetooth device, etc., called gvfs/GIO. Is there a developer's guide/tutorial for making a custom adapter to 'mount' from an external storage or web service,…
NoBugs
  • 9,310
  • 13
  • 80
  • 146
3
votes
3 answers

Speed up nautilus python-extensions for reading image's Exif

I've written a Nautilus extension which reads picture's metadata (executing exiftool), but when I open folders with many files, it really slows down the file manager and hangs until it finishes reading the file's data. Is there a way to make…
Stefano d'Antonio
  • 5,874
  • 3
  • 32
  • 45
3
votes
1 answer

Why does nautilus read directories in advance?

I'm creating a tool base on FUSE that populates a directory (~/sites) with fuse filesystems. When you read a subdir (for example ~/sites/stackoverflow.com) a sftp/ftp/webdav/s3 connection is made to that host. This works beautifully with most tools…
Leon
  • 841
  • 3
  • 10
  • 21
3
votes
2 answers

Where to find information about Nautilus D-Bus interface

I am planning to develop a command line application that interact with Nautilus, but I cannot find a reference for the D-Bus interface that Nautilus exposes.
enzotib
  • 1,596
  • 1
  • 8
  • 14
3
votes
1 answer

Nautilus script not showing up in right click menu when nothing is selected

I have the following script to add an action to my right click menu in Nautilus (using Ubuntu 20.04): ~/.local/share/nautilus/scripts/Open with Disk Usage Analyzer: #!/usr/bin/env bash if [ -n "$NAUTILUS_SCRIPT_SELECTED_URIS" ]; then set…
Mate de Vita
  • 1,102
  • 12
  • 32
3
votes
1 answer

How to tell google chrome to respect system default file browser (Thunar) on Xfce?

In Chrome, after downloading a file, clicking on the "Show in folder" menu now force to use nautilus to open the folder, but my system preferred file browser is Thunar on my xfce desktop. is there a way to let chrome to open folder using system…
FangQ
  • 1,444
  • 10
  • 18
3
votes
0 answers

Fail to install nautilus on Ubuntu 18.04. (unmet dependencies)

Previsouly, my ubuntu coule not load USB disk, and I tried to sudo apt-get remove nautilus. But that did not fix the USB loading issue, and now I can not install nautilus as well. When I ran sudo apt-get install nautilus, I got the folliwing…
Min Chen
  • 31
  • 1
3
votes
1 answer

Gtk Ckipboard: pasting files from a source with custom URI scheme

I'm trying to write a a GTK/C application that puts some files on the Gtk clipboard, so a user with Nautilus will be able to paste them. There is a good example of Gtk Clipboard local file copy and paste on stackoverflow. Unofrtunately the files I…
giox069
  • 137
  • 3
3
votes
2 answers

Gnome 3: Call sushi, the Nautilus quick file previewer via DBus

In Gnome 3, Nautilus has a new file previewer called Sushi. You can select a file in Nautilus, hit the spacebar and it will show a quick preview. This is very similar to what Quick Look (Preview) on OSX does. Quick Look has a command line…
Matt
  • 1,415
  • 2
  • 15
  • 23
3
votes
0 answers

How to open multiple files in a single window in emacs 24?

Using Debian, when selecting multiple files in nautilus and opening them in emacs 23 all of these start in the same window with a different buffer for each. However with emacs-snapshot (GNU Emacs 24.4.50.1) all of these files gets opened in…
Iker
  • 73
  • 1
  • 8
1
2
3
9 10