-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.0.9: add link creator and big element finder
- remove double translations
- Loading branch information
Yann Büchau
committed
Jun 8, 2017
1 parent
1521924
commit bc5eb33
Showing
9 changed files
with
191 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Misc useful custom actions | ||
include(tuca.m4)dnl | ||
--> | ||
<actions> | ||
<action> | ||
<icon>emblem-symbolic-link</icon> | ||
<name xml:lang="de">Verknüpfung erstellen</name> | ||
<name xml:lang="en">create link to this file</name> | ||
<command>TARGET=$(zenity --file-selection --save --filename TUCA_FIRST_FILE) || exit;ln -s TUCA_FIRST_FILE $TARGET || zenity --error;</command> | ||
<description xml:lang="de">Eine symbolische Verknüpfung zu der ausgewählten Datei erstellen.</description> | ||
<description xml:lang="en">Create a symbolic link to the selected file.</description> | ||
<patterns>*</patterns> | ||
<audio-files/> | ||
<image-files/> | ||
<other-files/> | ||
<text-files/> | ||
<video-files/> | ||
</action> | ||
<action> | ||
<icon>edit-find</icon> | ||
<name xml:lang="de">Platzfresser finden</name> | ||
<name xml:lang="en">find space-consuming elements</name> | ||
<command>TMPFILE=$(mktemp);TUCA_WAIT(du -ha --max-depth 1 TUCA_FIRST_FILE | grep -v 'TUCA_FIRST_FILE$' | sort -rh | perl -ne '($s,$n)=m/^(\S+)\s+(\S+.*)$/;$n=~s:.*/([^/]+)$:${1}:g;print "$s\n$n\n"' | tee $TMPFILE);cd TUCA_FIRST_FILE;cat $TMPFILE | zenity --list --column="size" --column="name" --title="" --text="" --print-column 2 | xargs -r --delimiter='\n' xdg-open;rm $TMPFILE</command> | ||
<description xml:lang="de">Die größten Dateien und Ordner hier sortiert auflisten.</description> | ||
<description xml:lang="en">Give a sorted list of the biggest files and folders here.</description> | ||
<patterns>*</patterns> | ||
<directories/> | ||
</action> | ||
</actions> | ||
|
Oops, something went wrong.