reverted flake

This commit is contained in:
2024-11-03 15:40:20 -06:00
parent 5f27d4612a
commit 455224c045
78 changed files with 0 additions and 27 deletions

16
gdl/track_files.fish Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env fish
function _update_count
count (find ~/Pictures/To\ Organize/gdl-organizing/ -type f)
end
function track_files -a goal
set -f original_count (_update_count)
while test (_update_count) -ge $goal
echo "Currently there are:" \
(set_color red)(_update_count)(set_color normal)
echo Delete (set_color green)(math (_update_count) - $goal)(set_color normal) "more files to finish"
sleep 10
clear
end
end