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:
parent
45b341e8d9
commit
2d430b0559
5 changed files with 27 additions and 42 deletions
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
27
functions/gen-emojis.fish
Normal 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
|
Loading…
Add table
Reference in a new issue