summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rwxr-xr-xetc/functions/imagetag16
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
-}