-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
132 lines (79 loc) · 2.42 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
Introduction
============
This package provide some scripts for Nautilus, the Gnome file manager application.
Installing
==========
1. Use Python's setuptools_ to install the package::
easy_install rbco.nautilusscripts
This will install a set of scripts named ``nautilus_*`` into ``/usr/bin`` (or similar).
2. Run the ``rbco_nautilusscirpts_install`` script (also in ``/usr/bin``) to symlink the
``nautilus_*`` scripts into the ``~/.gnome2/nautilus-scripts`` directory.
3. If the scripts doesn't show up in the ``Scripts`` context-menu then:
- Open Nautilus.
- Go to File -> Scripts -> Open Scrips Folder.
- Visit each folder and reload its contents to show the scripts.
Available scripts
=================
After installing the following scripts will be available (by folder):
rename
------
- delete_first_n_chars
- remove_accentuation
- add_prefix
- mp3
- replace
- unhide
- delete
- lower_case_underscore
- id3
- add_suffix
fileinfo
--------
- filename_length
- real_path
misc
----
- change_owner_to_me
- backup: Copies FILE to FILE.bak . If FILE.bak exists then first moves FILE.bak to FILE.bak.1 .
- open_in_terminal
- open_real_path
- execute_custom_command
text
----
- rst2html
Changelog
=========
0.8 (2014-08-20)
----------------
- Added support for Nemo and Caja (forks of Nautilus for Linux Mint).
- misc/open_in_terminal now uses "x-terminal-emulator" instead of "gnome-terminal".
- Corrected install script name.
- Allow to pass source directory to install script.
0.7 (2012-05-24)
----------------
- Now all scripts capture and display exceptions to the user.
0.6 (2011-12-27)
----------------
- Added local copy of PyZenity.py because it's gone missing from it's original URL.
0.5 (2011-06-26)
----------------
- Added ``rename/mp3`` script.
0.4 (2011-04-27)
----------------
- Added ``text/rst2html`` script.
0.3 (2011-03-13)
----------------
- Now the ``rbco_nautilusscirpts_install`` script correctly locates the installed scripts, instead
of just assuming they were on ``/usr/bin``.
0.2 (2011-01-31)
----------------
- Added new renaming script: ``remove_accentuation``.
- Now depends on ``rbco.rename`` version ``>=0.3``. Previously was ``>=0.2``.
0.1 (2010-08-31)
----------------
- Initial release
.. References
==========
.. _setuptools: http://pypi.python.org/pypi/setuptools
.. This README.txt file is generated by the ``generate_readme.py`` script. Do not modify it
directly.