changes before turning into a flake

This commit is contained in:
2024-10-31 23:43:37 -06:00
parent cf627acdb0
commit bd50a7ce71
77 changed files with 252 additions and 131 deletions

View File

@@ -1,16 +0,0 @@
#!/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