-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenabling.sh
executable file
·81 lines (68 loc) · 1.99 KB
/
enabling.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env bash
# Created by Jonathan Mikler on 29/February/24
# this script is used to define aliases
_env="$GENERIC_SHELL_TOOLBOX_LOCATION/.env"
function gst_enable(){
echo "Enabling Generic-ToolBox"
# script dir is the first argument passed to the function
if [ -f "$_env" ]; then
# if the .env file exists, check if the TOOLBOX_ENABLED variable exists, if so, overwrite it to 'true'
# If it does not exists, create it and set it to 'true'
local state='true'
if [ -z "${TOOLBOX_ENABLED}" ]; then
# echo "writing TOOLBOX_ENABLED=true to .env file"
echo "TOOLBOX_ENABLED=$state" >> "$_env"
else
sed -i "s/TOOLBOX_ENABLED=.*/TOOLBOX_ENABLED=$state/" "$_env"
fi
echo "Generic-ToolBox enabled"
else
log_error "Error '$_env' file does not exist."
return 1
fi
# reload terminal
source ~/.bashrc
}
function gst_disable(){
echo "Disabling Generic-ToolBox"
_env="$GENERIC_SHELL_TOOLBOX_LOCATION/.env"
if [ -f "$_env" ]; then
sed -i 's/TOOLBOX_ENABLED=.*/TOOLBOX_ENABLED=false/' "$_env"
else
log_error "Error '$_env' file does not exist."
return 1
fi
# reload terminal
source ~/.bashrc
}
function gst_sourcing(){
if [ "${TOOLBOX_ENABLED}" = "true" ]; then
export GST_SOURCE_FILE="$GENERIC_SHELL_TOOLBOX_LOCATION/generic_shell_toolbox.sh"
else
export GST_SOURCE_FILE=""
fi
}
function main(){
gst_sourcing
}
main
# function run_command(){
# local _env=$1
# _commands=(
# "enable"
# "disable"
# )
# case $2 in
# "enable")
# enable_toolbox
# ;;
# "disable")
# echo "Disabling Generic-ToolBox"
# sed -i 's/TOOLBOX_ENABLED=.*/TOOLBOX_ENABLED=false/' $_env
# ;;
# *)
# echo "Error: command not found"
# echo "Available commands: ${_commands[@]}"
# ;;
# esac
# }