-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcc_gui_apps.sh
executable file
·98 lines (75 loc) · 3.51 KB
/
cc_gui_apps.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
c_android_studio() {
local -r ENABLE_FIREJAIL="FALSE"
local -r HOME_DIR_NAME=""
local -r LINUX_EXECUTABLE_FULL_PATH="$(c_file_system___return_file_or_directory_which_contains "$CC_STANDALONE_APPS_PATH_ROOT" android-studio)/bin/studio.sh"
local -r ENABLE_ROOT="FALSE"
local -r APP_PARAMS=""
___start_gui_app "$ENABLE_FIREJAIL" "$HOME_DIR_NAME" "$LINUX_EXECUTABLE_FULL_PATH" "$ENABLE_ROOT" "$APP_PARAMS"
}
c_intellij_idea_community() {
local -r ENABLE_FIREJAIL="FALSE"
local -r HOME_DIR_NAME=""
local -r LINUX_EXECUTABLE_FULL_PATH="$(c_file_system___return_file_or_directory_which_contains "$CC_STANDALONE_APPS_PATH_ROOT" idea-IC)/bin/idea.sh"
local -r ENABLE_ROOT="FALSE"
local -r APP_PARAMS="$@"
___start_gui_app "$ENABLE_FIREJAIL" "$HOME_DIR_NAME" "$LINUX_EXECUTABLE_FULL_PATH" "$ENABLE_ROOT" "$APP_PARAMS"
}
c_insomnia() {
local -r ENABLE_FIREJAIL="FALSE"
local -r HOME_DIR_NAME="INSOMNIA"
local -r LINUX_EXECUTABLE_FULL_PATH="$(c_file_system___return_file_or_directory_which_contains "$CC_STANDALONE_APPS_PATH_ROOT" Insomnia)"
local -r ENABLE_ROOT="FALSE"
local -r APP_PARAMS=""
___start_gui_app "$ENABLE_FIREJAIL" "$HOME_DIR_NAME" "$LINUX_EXECUTABLE_FULL_PATH" "$ENABLE_ROOT" "$APP_PARAMS"
}
c_tor_browser() {
local -r LINUX_EXECUTABLE_FULL_PATH="$(c_file_system___return_file_or_directory_which_contains "$CC_STANDALONE_APPS_PATH_ROOT" tor-browser)/tor-browser/Browser/start-tor-browser"
# "detach" is a native param of tor-browser itself.
___execute export MOZ_ENABLE_WAYLAND=1
___execute $LINUX_EXECUTABLE_FULL_PATH --detach
}
___start_gui_app() {
local -r ENABLE_FIREJAIL="$1"
local -r HOME_DIR_NAME="$2"
local -r LINUX_EXECUTABLE_FULL_PATH="$3"
local -r ENABLE_ROOT="$4"
local -r APP_PARAMS="$5"
local -r HOME_DIR_BACKUP="$HOME"
___create_home_and_switch_it "$HOME_DIR_NAME"
# do not enable profiles on firejail commands. because profile rules (as default) does not allow to read from /nix/* and $HOME/app_name/* directories.
# do not use "$APP_PARAMS" using double quote. That makes problem if APP_PARAMS is empty string.
if [ "$ENABLE_ROOT" = "TRUE" ]; then
if ___do_executables_exist "firejail"; then
if [ "$ENABLE_FIREJAIL" = "TRUE" ]; then
___run_command_as_root firejail --net=none --noprofile "$LINUX_EXECUTABLE_FULL_PATH" $APP_PARAMS
return
fi
fi
___run_command_as_root "$LINUX_EXECUTABLE_FULL_PATH" $APP_PARAMS
else
if ___do_executables_exist "firejail"; then
if [ "$ENABLE_FIREJAIL" = "TRUE" ]; then
___nohup_and_disown firejail --net=none --noprofile "$LINUX_EXECUTABLE_FULL_PATH" $APP_PARAMS
return
fi
fi
___nohup_and_disown "$LINUX_EXECUTABLE_FULL_PATH" $APP_PARAMS
fi
HOME="$HOME_DIR_BACKUP"
}
___create_home_and_switch_it() {
# If the value is empty the function should not swithch HOME directory.
# This case required for development-apps like Eclipse, other IDE, VScode...
___is_empty_string "$1" && return
# -p ignores the warning: folder already exist.
mkdir -p "$CC_APPS_HOME" || {
___print_screen "Error: could not create $CC_APPS_HOME (\$CC_APPS_HOME) directory. \$HOME will not change. The script will resume."
return
}
# -p ignores the warning: folder already exist.
mkdir -p "$CC_APPS_HOME/$1" || {
___print_screen "Error: could not create directory under $CC_APPS_HOME/$1. \$HOME will not change. The script will resume."
return
}
HOME="$CC_APPS_HOME/$1"
}