Skip to content

Commit 2759a68

Browse files
Adds Productivity Application «Figma»
1 parent 137cc72 commit 2759a68

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

Applications/Figma.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

config.default.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ installBeyondCompare=false
8686
installBraveBrowser=false
8787
installDiscord=false
8888
installEqMac=false
89+
installFigma=false
8990
installFirefox=false
9091
installGoogleChrome=false
9192
installGrandPerspective=true

run.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,12 @@ if [ "$installEqMac" = true ]; then
402402
installAppEqMac
403403
showinfo "" "confirm"
404404
fi
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 --
406412
if [ "$installGoogleChrome" = true ]; then
407413
showinfo "Installing Google Chrome Browser:" "note"

0 commit comments

Comments
 (0)