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
8686installBraveBrowser=false
8787installDiscord=false
8888installEqMac=false
89+ installFigma=false
8990installFirefox=false
9091installGoogleChrome=false
9192installGrandPerspective=true
Original file line number Diff line number Diff line change @@ -402,6 +402,12 @@ if [ "$installEqMac" = true ]; then
402402 installAppEqMac
403403 showinfo " " " confirm"
404404fi
405+ # -- Figma.app --
406+ if [ " $installFigma " = true ]; then
407+ showinfo " Installing Figma Desktop:" " note"
408+ installAppFigma
409+ showinfo " " " confirm"
410+ fi
405411# -- Google Chrome.app --
406412if [ " $installGoogleChrome " = true ]; then
407413 showinfo " Installing Google Chrome Browser:" " note"
You can’t perform that action at this time.
0 commit comments