-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoftwares.sh
54 lines (51 loc) · 1.52 KB
/
softwares.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
declare -A SOFTWARES=(["Chrome"]=ON
["Inkscape"]=OFF
["Imagemagick"]=OFF
["JetbrainsToolbox"]=OFF
["Docker"]=OFF
["VSCode"]=ON
["VIM"]=ON
["NeoVim"]=ON
["htop"]=ON
["tmux"]=ON
["zsh"]=ON
["updateAll"]=ON
["git"]=ON
["curl"]=ON
["virtualbox"]=OFF
["githubCLI"]=OFF
["exiftool"]=ON
["ohmyzsh"]=ON
["mise"]=ON
["realvncviewer"]=OFF
)
declare -A DESCRIPTIONS=(["Chrome"]="Google's Internet Browser"
["Inkscape"]="A editor for vector graphics"
["Imagemagick"]="A cli tool to manipulate images"
["JetbrainsToolbox"]="Jetbrains tool for managing installations"
["Docker"]="A tool for Creating software containers"
["VSCode"]="Microsoft's IDE"
["VIM"]="The classic terminal based text editor"
["NeoVim"]="A modern version of VIM"
["htop"]="A cli tool for system monitor"
["tmux"]="A terminal multiplexer"
["zsh"]="An alternative to bash"
["updateAll"]="A simple script to update all your installed softwares"
["git"]="A version control cli tool"
["curl"]="command line tool for data transfering over internet"
["virtualbox"]="Oracle's virtualization platform (+ext pack)"
["githubCLI"]="A CLI to interact with your github"
["exiftool"]="A tool to manipulate files metadata"
["ohmyzsh"]="A framework for managing zsh configs"
["mise"]="A tool for mananing your programming tools versions"
["realvncviewer"]="A VNC client"
)
DEFAULT_SOFTWARES=()
for software in "${!SOFTWARES[@]}"
do
if [ "${SOFTWARES[$software]}" == ON ]
then
DEFAULT_SOFTWARES+=("\"$software\"")
fi
done