diff options
| author | Daniel Friesel <derf@derf.homelinux.org> | 2008-12-02 23:22:10 +0100 | 
|---|---|---|
| committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-12-02 23:22:10 +0100 | 
| commit | adf0ebdf1340c91eae3ff47ce23f9c90d5ab12c6 (patch) | |
| tree | a2789350e9d4fd4a4f18ccbd08de5c989c2b62fa /etc | |
| parent | 4ee356cdc5e566fbe34468e1bc5b222506e4f61c (diff) | |
Removed imagetag function
It has been replaced by a better shell script in the x repository, using feh actions
Diffstat (limited to 'etc')
| -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 -} | 
