diff options
Diffstat (limited to 'etc/functions')
-rwxr-xr-x | etc/functions/imagetag | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/etc/functions/imagetag b/etc/functions/imagetag deleted file mode 100755 index 632de96..0000000 --- a/etc/functions/imagetag +++ /dev/null @@ -1,16 +0,0 @@ -## vim:ft=zsh -# quick & dirty tagging -typeset file tag - -for file in *(.); { - unset REPLY - typeset REPLY - feh -g 800x600 $file & - echo -n 'Tags: ' - read - for tag in ${(s:, :)REPLY}; { - mkdir -p .tags/$tag - ln -s ../../$file .tags/$tag/$file - } - kill %feh -} |