Skip to content
Snippets Groups Projects
Commit 7bb356d9 authored by Alexander Schwinn's avatar Alexander Schwinn
Browse files

Remove superfluous shell script "ThunarBulkRename"

(Bug #15373)
parent 4f9682ec
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,6 @@ core
org.xfce.thunar.appdata.xml
thunar.appdata.xml
gtk-doc.make
ThunarBulkRename
Thunar.spec
docs/.*.swp
docs/*.1
......
......@@ -46,19 +46,6 @@ ChangeLog: Makefile
dist-hook: ChangeLog
thunar_scriptsdir = $(HELPER_PATH_PREFIX)/Thunar
thunar_scripts_SCRIPTS = \
ThunarBulkRename
ThunarBulkRename: ThunarBulkRename.in Makefile
$(AM_V_GEN) ( \
rm -f ThunarBulkRename.gen ThunarBulkRename \
&& $(SED) -e "s,\@bindir\@,$(bindir),g" \
< $(srcdir)/ThunarBulkRename.in \
> ThunarBulkRename.gen \
&& mv ThunarBulkRename.gen ThunarBulkRename \
)
desktopdir = $(datadir)/applications
desktop_in_in_files = \
Thunar.desktop.in.in \
......@@ -102,7 +89,6 @@ polkit_policy_DATA = $(polkit_in_files:.policy.in=.policy)
EXTRA_DIST = \
FAQ \
HACKING \
ThunarBulkRename.in \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
......@@ -116,7 +102,6 @@ EXTRA_DIST = \
CLEANFILES = $(appdata_DATA)
DISTCLEANFILES = \
ThunarBulkRename \
intltool-extract \
intltool-merge \
intltool-update \
......
......@@ -2,7 +2,7 @@
_Name=Bulk Rename
_Comment=Rename Multiple Files
_GenericName=Bulk Rename
Exec=@HELPERDIR@/Thunar/ThunarBulkRename %F
Exec=thunar --bulk-rename %F
Icon=Thunar
Terminal=false
StartupNotify=true
......
#!/bin/sh
#
# Copyright (c) 2006 Benedikt Meurer <benny@xfce.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# This is an ugly hack, required because xfdesktop simply
# strips off all parameters from the Exec field, and so
# we cannot just invoke Thunar --bulk-rename %F there
exec @bindir@/Thunar --bulk-rename "$@"
# vim:set ts=2 sw=2 et ai:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment