Tagged Questions
The nautilus tag has no wiki summary.
3
votes
1answer
41 views
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 ...
3
votes
4answers
417 views
Methods to debug Ubuntu Nautilus scripts written in Python
When writing a Nautilus Script (e.g. using Python), I currently am aware of two methods for basic debugging:
Using (e.g. Zenity) pop-up windows as "print" statements.
Capturing stderr and stdout in ...
3
votes
1answer
946 views
Edit original Nautilus context menu
Does anyone know a way to simplify the standard context (right click) menu in Nautilus? I am making a very simplified interface for people who don't use computers very often, and I want to use ...
3
votes
2answers
1k views
How to change icon/emblem of a directory from bash
I'm playing around with get_iplayer (fantastic) it's running every few hours to grab any new episodes of whatever....
After it has finished grabbing anything new i'd like to change the emblem of ...
2
votes
2answers
1k views
Ssh(sftp) with certificate via Nautilus in Ubuntu 10.10
Before I connected to my server via Nautilus (sftp).
Now I moved to Amazon EC2, and there's just one way connect to server (ubuntu 10.10 too), using ssh -i mycert.pem, no password, just certificate.
...
2
votes
1answer
374 views
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, ...
2
votes
3answers
662 views
Escape whitespace in paths using nautilus script
I didn't think this would be as tricky as it turned out to be, but here I am. I'm trying to write a Nautilus script in Python to upload one or more images to Imgur just by selecting and right clicking ...
2
votes
1answer
77 views
nautilus extesions using mono?
Is it possible to write nautilus extensions using mono?
I seem to find only c and python references.
1
vote
2answers
74 views
Mounting Raw Disk Image File in Nautilus
I'm running Ubuntu 10.10. As part of SD card creation, I have a script that successfully creates a raw disk image file, correctly formatted with an ext2 file system. I have built SD cards from the ...
1
vote
1answer
110 views
Set Nautilus file icon per extension
Is it possible to change the icon (not the emblem) of a file in Nautilus' icon view mode by means of its extension interface?
It would be cool, I think, to see the album covers of MP3 files of ...
1
vote
2answers
553 views
Java + Linux: Working Directory is my home folder
A lot of people have the problem that when they start from nautilus a JAR-application, that the CWD (Current Working Directory) is set to their home folder (and not the folder in which the JAR is in). ...
1
vote
2answers
193 views
How can I make a nautilus-like sidebar using mono gtk#
I have been looking for weeks for a way to do this:
I am working on a music player, and would like something like this:
Library >
Music (6)
Videos (2)
...
1
vote
1answer
160 views
Nautilus python
I'm developing a nautilus extension and I have the following code:
#!/usr/local/bin/python
# -*- coding: utf-8 -*-
import urllib
import gtk
import pygtk
import nautilus
import gconf
import gtk.glade
...
1
vote
5answers
915 views
Modify nautilus source code, where to start?
I have a simple starter problem to change an open source project.
Let me first explain the situation:
I want to make some changes on an open source project (NAUTILUS) , The change is to work on ...
1
vote
3answers
189 views
Is there a way to make Nautilus move files under version control using the VCS's move command?
For example, say I moved a file from /project/file.cs to /project/subdir/file.cs. It would be nice if nautilus automatically converted this to bzr mv /project/file.cs /project/subdir/file.cs. Is it ...
1
vote
1answer
540 views
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 ...
0
votes
1answer
49 views
FUSE filesystem hide from nautilus
I have written a FUSE driver for linux, and when I mount it I get an entry in the nautilus sidebar. I do not want this - the unmount button doesnt even work. I would like to hide this entry in the ...
0
votes
1answer
38 views
Launching a .class file with java with a script
I'm trying to use a nautilus script in Ubuntu 11.04 to launch the currently selected file in java. So i'm trying to do java FileName in a script. Currently I have
!/bin/bash
test = 'java' + $@
...
0
votes
2answers
54 views
How can I link rpmdb library with makefile?
I try to install nautilus-rpm in Fedora 15.
This is error message.
[test@localhost nautilus-rpm-0.1]$ make
make all-recursive
make[1]: Entering directory `/home/designmade/다운로드/nautilus-rpm-0.1'
...
0
votes
1answer
32 views
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.
0
votes
1answer
65 views
Opening a folder locating a specific file in Ubuntu Nautilus Browser
My requirement is simple, I hope some intelligent geeks can help me here out.
I am working on a project[LINUX-UBUNTU], I have a c program, in which I have a char array having a path to a file, an ...
0
votes
1answer
83 views
Putting Webkit onto the Nautilus desktop (on Ubuntu Maverick) with PyGTK
I can get what I think is the Nautilus desktop window by using this code:
screen = wnck.screen_get_default()
while gtk.events_pending():
gtk.main_iteration()
for window in screen.get_windows():
...
0
votes
2answers
371 views
Shell scripts for Meld Nautilus context menu
Beyond Compare provides "Select for compare" and "Compare to Selected" by using two nautilus scripts (stored in /home/user/.gnome2/nautilus-scripts).
Script 1: Select for compare
#!/bin/sh
...
0
votes
2answers
182 views
Nautilus script: $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS empty for WebDAV folders
When writing a Nautilus script, $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS gives the path to the file whose context menu has been clicked, for instance /home/nico/test.txt.
But when the file is within a ...
0
votes
0answers
367 views
nautilus: cannot handle network:/// (under x11 forwarding, related to dbus-launch)
I have a strange problem with nautilus, while I click on "Networks" on the left pane, it says "cannot handle network:///) and I also cannot use smb:// kind of url (same error message).
By following ...
0
votes
1answer
56 views
opening a parent folder and highlighting particular child in default file browser using python
I am using following code to open a folder in default file browser.
if os.name == 'mac':
subprocess.call(('open', folderPath))
elif os.name == 'nt':
subprocess.call(('start', folderPath))
elif ...
0
votes
0answers
241 views
Nautilus icon positions
I'm looking for where Nautilus stores the icon positions on a Ubuntu 10.10 system. I would like to back-up this information in case it's lost somehow, and possibly programatically manipulate this ...
0
votes
1answer
165 views
Nautilus file explorer and GtkIconView
In order to learn GTK programming, I am building a simple GTK application that reads files in a directory and displays them as icons. I am trying to build something like the Nautilus icon view file ...
0
votes
1answer
162 views
nautilus extensions: where are the docs?
I've googled and googled and I can't find the docs for writing extensions to Nautilus.