-
Notifications
You must be signed in to change notification settings - Fork 5
/
tudo.config
executable file
·59 lines (44 loc) · 2.88 KB
/
tudo.config
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
#.tudo.config
TERMUX_FILES="/data/data/com.termux/files"
TERMUX_HOME="$TERMUX_FILES/home"
TERMUX_PREFIX="$TERMUX_FILES/usr"
#set TUDO_SHELL_HOME which will be used as tudo shell home directory
#TUDO_SHELL_HOME="$TERMUX_HOME" #default to '$TERMUX_HOME'
#set TUDO_POST_SHELL_HOME which will be used as tudo post shell home directory
#TUDO_POST_SHELL_HOME="$TERMUX_HOME" #default to '$TERMUX_HOME'
#set the prompt string 1 for the tudo shell
#TUDO_SHELL_PS1="Ⲧ " #default to "Ⲧ " #U+2CA6, Ⲧ, coptic capital letter tau
#set the prompt string 1 for the tudo post shell
#TUDO_POST_SHELL_PS1="Ⲧ " #default to "Ⲧ " #U+2CA6, Ⲧ, coptic capital letter tau
#set any additional paths you want to export other than termux bin, android bin and su bin paths,
#separated with colons `:`
#the string must not start or end with or contain two consecutive colons ':'
#the `--export-paths` option will override this value
#ADDITIONAL_PATHS_TO_EXPORT=""
#set to "1" or pass "-L" as argument if you want to automatically export all the paths that already exist
#in the PATH variable at the moment the tudo command is run
#the default paths mentioned above and any path in ADDITIONAL_PATHS_TO_EXPORT are always exported
#export_all_existing_paths_in_path_variable=0 #default to 0
#set any additional ld library paths you want to export other than termux lib and android lib paths,
#separated with colons `:`
#the string must not start or end with or contain two consecutive colons ':'
#the `--export-ld-lib-paths` option will override this value
#ADDITIONAL_LD_LIBRARY_PATHS_TO_EXPORT=""
#set to "1" or pass "-P" as argument if you want to automatically export all the paths that already exist
#in the LD_LIBRARY_PATH variable at the moment the tudo command is run
#the default paths mentioned above and any path in ADDITIONAL_LD_LIBRARY_PATHS_TO_EXPORT are always exported
#export_all_existing_paths_in_ld_library_path_variable=0 #default to 0
#set to 1 if you want to automatically create rc files for interactive shells, otherwise 0
#tudo_shells_automatically_create_rc_files=1 #default to 1
#set to 1 if you want to automatically create history files for interactive shells, otherwise 0
#tudo_shells_automatically_create_history_files=1 #default to 1
#set to 1 if you want to store command history for interactive shells, otherwise 0
#tudo_shells_history_enabled=1 #default to 1
#set to "1" if you want to share rc files and history files between normal termux shell
#and tudo shell if TUDO_SHELL_HOME is same as TERMUX_HOME
#tudo_shell_share_rcfiles_and_histfiles=1 #default to 1
#set to "1" if you want to share rc files and history files between normal termux shell
#and tudo post shell if TUDO_POST_SHELL_HOME is same as TERMUX_HOME
#tudo_post_shell_share_rcfiles_and_histfiles=1 #default to 1
#set to 1 if you want to add path for the su binary to the $PATH_TO_EXPORT, otherwise 0
#add_su_bin_path_to_path_variable=1 #default to 1