1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2025-02-17 00:43:58 +00:00

Fix emoji routine

This commit is contained in:
Steffo 2025-01-19 11:32:54 +01:00
parent 45b341e8d9
commit 2d430b0559
Signed by: steffo
GPG key ID: 6B8E18743E7E1F86
5 changed files with 27 additions and 42 deletions

View file

@ -1,10 +0,0 @@
which magick --skip-functions >/dev/null 2>/dev/null
if [ $status -eq 0 ]
function gen-emojis-akkoma
for arg in $argv
log-i "Processing" "$arg" "..."
gen-emoji-akkoma "$arg"
end
log-s "All emojis generated successfully!"
end
end

View file

@ -1,12 +0,0 @@
which magick --skip-functions >/dev/null 2>/dev/null
if [ $status -eq 0 ]
function gen-emojis-all
for arg in $argv
log-i "Processing" "$arg" "..."
gen-emoji-akkoma "$arg"
gen-emoji-discord "$arg"
gen-emoji-telegram "$arg"
end
log-s "All emojis generated successfully!"
end
end

View file

@ -1,10 +0,0 @@
which magick --skip-functions >/dev/null 2>/dev/null
if [ $status -eq 0 ]
function gen-emojis-discord
for arg in $argv
log-i "Processing" "$arg" "..."
gen-emoji-discord "$arg"
end
log-s "All emojis generated successfully!"
end
end

View file

@ -1,10 +0,0 @@
which magick --skip-functions >/dev/null 2>/dev/null
if [ $status -eq 0 ]
function gen-emojis-telegram
for arg in $argv
log-i "Processing" "$arg" "..."
gen-emoji-telegram "$arg"
end
log-s "All emojis generated successfully!"
end
end

27
functions/gen-emojis.fish Normal file
View file

@ -0,0 +1,27 @@
which magick --skip-functions >/dev/null 2>/dev/null
if [ $status -eq 0 ]
function gen-emojis
for arg in $argv
log-i "Processing" "$arg" "..."
for arg in $argv
log-i "Processing" "$arg" "..."
gen-emoji-akkoma "$arg"
end
log-s "All emojis generated successfully!"
for arg in $argv
log-i "Processing" "$arg" "..."
gen-emoji-discord "$arg"
end
log-s "All emojis generated successfully!"
for arg in $argv
log-i "Processing" "$arg" "..."
gen-emoji-telegram "$arg"
end
log-s "All emojis generated successfully!"
end
log-s "All emojis generated successfully!"
end
end