File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env zsh
2
+
3
+ function installAppFigma(){
4
+ # --> Download
5
+ downloadFromUrl " https://www.figma.com/download/desktop/mac" " Figma.dmg"
6
+ # --> Mount & move
7
+ unmountFile " Figma.dmg" " Figma"
8
+ moveApplication " Figma.app"
9
+ }
10
+ export -f installAppFigma
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ installBeyondCompare=false
86
86
installBraveBrowser=false
87
87
installDiscord=false
88
88
installEqMac=false
89
+ installFigma=false
89
90
installFirefox=false
90
91
installGoogleChrome=false
91
92
installGrandPerspective=true
Original file line number Diff line number Diff line change @@ -402,6 +402,12 @@ if [ "$installEqMac" = true ]; then
402
402
installAppEqMac
403
403
showinfo " " " confirm"
404
404
fi
405
+ # -- Figma.app --
406
+ if [ " $installFigma " = true ]; then
407
+ showinfo " Installing Figma Desktop:" " note"
408
+ installAppFigma
409
+ showinfo " " " confirm"
410
+ fi
405
411
# -- Google Chrome.app --
406
412
if [ " $installGoogleChrome " = true ]; then
407
413
showinfo " Installing Google Chrome Browser:" " note"
You can’t perform that action at this time.
0 commit comments