An executable shell script for nautilus

learn more… | top users | synonyms

2
votes
2answers
1k views

How to get Nautilus-scripts working on Ubuntu 13.04?

How to get Nautilus-scripts (Terminal here, Root Nautilus, Root Gedit) working on Ubuntu 13.04? I copied those scripts to .gnome2/nautilus-scripts folder but it dose not seem to work on Ubuntu 13.04. ...
1
vote
0answers
8 views

Integration of archives navigation in nautilus

Would there be a tool to integrate the navigation in the content of an archive in Nautilus, instead of using Archive Manager?
0
votes
0answers
28 views

script for VM "ubuntu 10.4 Oracle VM virtual Box

if i have four VM in PC ,one of them get high load by voip and PBX i wont script make a high paurty to VM was work "like get 10%-10%-10%-and 70% to VM was working " when all is work but didn't have ...
1
vote
0answers
30 views

Is it possible to have Nautilus Scripts menu items without icons?

I have opted for menus without icons system-wide for reasons of simplicity and speed. But I still get icons in Nautilus context menus. I don't mind the icons on Open With menu items too much, but all ...
2
votes
1answer
41 views

Is it possible to assign/change custom icons for files in a batch / from commandline?

Actually, I'm talking about icons for Nautilus Scripts, and I have many of them. Although I prefer menus without icons, I cannot prevent icons from being displayed in Nautilus context menu items Open ...
2
votes
3answers
132 views

(Nautilus Scripts) $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS; have problems with space

So the script is: #!/bin/bash for line in $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS; do if [[ "$line" = "" || "$line" = " " ]]; then exit else unzip "$line" -d "temp" fi done It ...
0
votes
1answer
404 views

How can I install a Nautilus script?

I found a nautilus script I would like to use. How do I install it?
0
votes
0answers
89 views

Why is this Nautilus script not working over SFTP?

I wrote the following script to use it in Nautilus. It merges files into folders. But when I try this for sftp://user@mynas/ it is not working. How can I fix the script to get it working via the ...
1
vote
1answer
347 views

Nautilus tags/labels/marks/columns for folders/files

Is there any way how to mark folders or files with tags(or labels, new columns or whatever) in Nautilus? It would be nice to sort marked folders or files through this tags. Especially my first idea ...
0
votes
0answers
93 views

xubuntu nautilus - show multimedia details in right-click properties dialog

I previously used another distro with Nautilus installed, and right-click > properties would show a tab on the properties dialog for video details. This tab would have codec, run time, etc. I now ...
9
votes
1answer
507 views

How do I make a custom right click command for nautilus? [duplicate]

Possible Duplicate: How to customize the context menu in Nautilus? I'm trying to make a Mark as executable command for the right click in nautilus for a faster work flow. I came up with ...
2
votes
2answers
79 views

How to add space to Exec path in a Thumbnailer descrption?

I wish to use mplayer to generate thumbnails for nautilus, so I wrote a perl script as the thumbnailer named "gnome_thumbnailer_with_mplayer", and wrote a description in /usr/share/thumbnailers to ...
11
votes
2answers
443 views

How to open a folder in a new pane in Nautilus?

When I rightclick a folder in Nautilus I find these options "Open in New Window" and "Open in New Tab". Is it possible to add an option "Open in New Pane" which would open the selected folder in a new ...
2
votes
1answer
1k views

Nautilus sftp via command line

I regularly connect to a server via ssh. Lately I've started copying files to and from it, and I find scp very annoying, mainly because bash cannot auto complete over ssh. I find the connect to ...
1
vote
1answer
207 views

Nautilus scripts in top level of contextual menu

Is it possible to have Nautilus scripts appear in the top level of Nautilus' contextual menu, rather than in a Scripts folder?
0
votes
2answers
287 views

How to change desktop background to the next/brev background image with mouse right cick menu depending on wallch program?

I want a script or a tool to change the desktop background using mouse right click menu on the desktop to find in the menu Next and Previous buttons for the next and past background, but depending on ...
0
votes
1answer
502 views

can not run vlc from shell script

I am trying to develop a nautilus script which read selected filepath and en-queue in vlc player. Problem is if filename is space separated then we need to add extra '\' in file name. But when i run ...
9
votes
4answers
3k views

How to customize the context menu in Nautilus?

From time to time I come to ideas of actions I'd like to have available in a menu which pops up when I right-click on files in Nautilus. How to add them there? Is there something like Thunar UCA ...