made a rewrite of icon count in fish, and made it accurate

This commit is contained in:
germedeb 2022-09-10 19:58:55 -03:00
parent cf3dc5a0a9
commit d919e9801a
1 changed files with 42 additions and 0 deletions

42
tasks/aletaiconcount.fish Normal file
View File

@ -0,0 +1,42 @@
#!/usr/bin/fish
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
#
# SPDX-License-Identifier: GPL-3.0-or-later
# show total
set_color -o brgreen; printf "Total: "
set_color normal; find icons -depth -iname \*.svg | wc -l
printf "───────────────\\n"
set_color -o brblue; printf "Actions: "
set_color normal; find icons/apps* -depth -iname \*.svg | wc -l
set_color -o brblue; printf "Animations: "
set_color normal; find icons/animations* -depth -iname \*.svg | wc -l
set_color -o brblue; printf "Apps: "
set_color normal; find icons/apps* -depth -iname \*.svg | wc -l
set_color -o brblue; printf "Categories: "
set_color normal; find icons/categories* -depth -iname \*.svg | wc -l
set_color -o brblue; printf "Devices: "
set_color normal; find icons/devices* -depth -iname \*.svg | wc -l
set_color -o brblue; printf "Emblems: "
set_color normal; find icons/emblems* -depth -iname \*.svg | wc -l
set_color -o brblue; printf "Mimetypes: "
set_color normal; find icons/mimetypes* -depth -iname \*.svg | wc -l
set_color -o brblue; printf "Places: "
set_color normal; find icons/places* -depth -iname \*.svg | wc -l
set_color -o brblue; printf "Status: "
set_color normal; find icons/status* -depth -iname \*.svg | wc -l
set_color -o brblue; printf "Ui: "
set_color normal; find icons/ui* -depth -iname \*.svg | wc -l