Skip to content

Commit

Permalink
commit 864909649 on 20201103
Browse files Browse the repository at this point in the history
  • Loading branch information
SDRausty committed Nov 4, 2020
1 parent e94063a commit 7b81bfb
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .conf/VERSIONID
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.751
2.0.752
9 changes: 4 additions & 5 deletions archlinuxconfig.bash
Original file line number Diff line number Diff line change
Expand Up @@ -762,25 +762,24 @@ chmod 700 root/bin/makeyay
_ADDorcaconf_() {
_CFLHDR_ root/bin/orcaconf "# orcaconf contributor https://github.com/JanuszChmiel" "# Reference https://github.com/SDRausty/termux-archlinux/issues/66 Let us expand setupTermuxArch so users can install Orca screen reader (assistive technology) and also have VNC support added easily."
cat >> root/bin/orcaconf <<- EOM
[ -d \$HOME/bin/lock ] && printf "%s\\\\n" "Already confugured orca: DONE 🏁" && exit
[ -f \$HOME/bin/lock/orcaconf.lock ] && printf "%s\\\\n" "Already configured orca: DONE 🏁" && exit
[[ -f /var/lock/texarh/orcaconf.lock ]] && printf "%s\\\\n" "Already configured orca: DONE 🏁" && exit
_INSTALLORCACONF_() {
nice -n 18 pci espeak-ng mate mate-extra orca pulseaudio-alsa tigervnc || printf "%s\\n" "_INSTALLORCACONF_ \${0##*/} did not completed as expected. Continuing..."
[[ ! -f /var/lock/texarh/orcaconfinstall.lock ]] && nice -n 18 pci espeak-ng mate mate-extra orca pulseaudio-alsa tigervnc && touch /var/lock/texarh/orcaconfinstall.lock || printf "%s\\n" "_INSTALLORCACONF_ \${0##*/} did not completed as expected. Continuing..."
}
_INSTALLORCACONF_ || _INSTALLORCACONF_ || (printf "%s\\n" "_INSTALLORCACONF_ \${0##*/} did not completed as expected. Please check for errors and run \${0##*/} again." && exit)
printf "%s\\n" "export DISPLAY=:0
export PULSE_SERVER=127.0.0.1
unset DBUS_SESSION_BUS_ADDRESS
unset SESSION_MANAGER" >> \$HOME/.profile
[ ! -f \$HOME/bin/lock/orcaconf.lock ] && touch \$HOME/orcaconf.lock
[[ ! -f /var/lock/texarh/orcaconf.lock ]] && touch /var/lock/texarh/orcaconf.lock
mateconf || printf "\\e[1;31m%s\\e[0m\\n" "command 'mateconf' did not completed as expected"
# orcaconf EOF
EOM
chmod 700 root/bin/orcaconf
_ADDmateconf_() {
_CFLHDR_ root/bin/mateconf "# mateconf contributor https://github.com/JanuszChmiel " "# Reference https://github.com/SDRausty/termux-archlinux/issues/66 Let's expand setupTermuxArch so users can install Orca screen reader (assistive technology) and also have VNC support added easily."
cat >> root/bin/mateconf <<- EOM
csystemctl || printf "\\e[1;31m%s\\e[0m\\n" "command 'csystemctl' did not completed as expected"
# csystemctl || printf "\\e[1;31m%s\\e[0m\\n" "command 'csystemctl' did not completed as expected"
vncserver -kill :0
vncserver -extension MIT-SHM -localhost -geometry 1024x768 -depth 24 -name remote-desktop :0 -SecurityTypes=None
# mateconf EOF
Expand Down
2 changes: 1 addition & 1 deletion necessaryfunctions.bash
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ fi

_PREPROOTDIR_() {
# create local array of directories to be created for setupTermuxArch
local DRARRLST=("etc" "home" "root/bin" "usr/bin" "usr/local/bin" "var/backups/${INSTALLDIR##*/}/etc" "var/backups/${INSTALLDIR##*/}/root" "var/binds")
local DRARRLST=("etc" "home" "root/bin" "usr/bin" "usr/local/bin" "var/backups/${INSTALLDIR##*/}/etc" "var/backups/${INSTALLDIR##*/}/root" "var/binds" "var/lock/texarh")
for ISDIR in ${DRARRLST[@]}
do
[[ ! -d "$ISDIR" ]] && printf "\\e[0;32m%s\\e[1;32m%s\\e[0;32m%s\\e[0m\\n" "Creating directory " "'/$ISDIR'" "." && mkdir -p "$ISDIR" || printf "\\e[0;32m%s\\e[1;32m%s\\e[0;32m%s\\e[0m\\n" "Directory " "'/$ISDIR'" " exists; Continuing:"
Expand Down
2 changes: 1 addition & 1 deletion printoutstatements.bash
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ FLHDR1[1]="IFS=$'\\n\\t'"
FLHDR1[2]="set -Eeuo pipefail"
FLHDR1[3]="shopt -s nullglob globstar"
FLHDR1[4]="unset LD_PRELOAD"
FLHDR1[5]="VERSIONID=2.0.750"
FLHDR1[5]="VERSIONID=2.0.751"
FLHDR1[6]=" "
FLHDRP[0]="## BEGIN #####################################################################"
FLHDRP[1]=""
Expand Down
4 changes: 2 additions & 2 deletions setupTermuxArch
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# command 'setupTermuxArch h[elp]' has information how to use this file
################################################################################
IFS=$'\n\t'
VERSIONID=2.0.750
VERSIONID=2.0.751
set -Eeuo pipefail
shopt -s nullglob globstar
umask 0022
Expand Down Expand Up @@ -509,7 +509,7 @@ _PREPTMPDIR_ || _PSGI1ESTRING_ "_PREPTMPDIR_ _PREPTERMUXARCH_ ${0##*/}"
}

_PRPREFRESH_() {
printf "\\n%s\\n" "Setting mode to full refresh mode $1; Continuing..."
printf "\\n%s\\n" "Setting mode to refresh mode $1; Initializing system refresh..."
LCR="$1"
_ARG2DIR_ "$@"
_INTROREFRESH_ "$@"
Expand Down
4 changes: 2 additions & 2 deletions setupTermuxArch.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# command 'setupTermuxArch h[elp]' has information how to use this file
################################################################################
IFS=$'\n\t'
VERSIONID=2.0.750
VERSIONID=2.0.751
set -Eeuo pipefail
shopt -s nullglob globstar
umask 0022
Expand Down Expand Up @@ -509,7 +509,7 @@ _PREPTMPDIR_ || _PSGI1ESTRING_ "_PREPTMPDIR_ _PREPTERMUXARCH_ ${0##*/}"
}

_PRPREFRESH_() {
printf "\\n%s\\n" "Setting mode to full refresh mode $1; Continuing..."
printf "\\n%s\\n" "Setting mode to refresh mode $1; Initializing system refresh..."
LCR="$1"
_ARG2DIR_ "$@"
_INTROREFRESH_ "$@"
Expand Down
4 changes: 2 additions & 2 deletions setupTermuxArch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# command 'setupTermuxArch h[elp]' has information how to use this file
################################################################################
IFS=$'\n\t'
VERSIONID=2.0.750
VERSIONID=2.0.751
set -Eeuo pipefail
shopt -s nullglob globstar
umask 0022
Expand Down Expand Up @@ -509,7 +509,7 @@ _PREPTMPDIR_ || _PSGI1ESTRING_ "_PREPTMPDIR_ _PREPTERMUXARCH_ ${0##*/}"
}

_PRPREFRESH_() {
printf "\\n%s\\n" "Setting mode to full refresh mode $1; Continuing..."
printf "\\n%s\\n" "Setting mode to refresh mode $1; Initializing system refresh..."
LCR="$1"
_ARG2DIR_ "$@"
_INTROREFRESH_ "$@"
Expand Down
2 changes: 1 addition & 1 deletion setupTermuxArch.sha512
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ce3b843843a7c1b8e4fb21e113d502a7c81451486bc79ef856d247fc9da73f3e0476c75cfb1305b0cb71791413f342d25eaee69d11f19a6279e9a961b5fab17f setupTermuxArch.tar.gz
03df64d0b605496d57d8ef45b8b2d6a902f9da50b55c9c6bdcf3d5d91d9c80af9d1e4f146fe23cf5d54c4438d84c9ea201b18ba8f765242b4c441378bbeb16b3 setupTermuxArch.tar.gz
Binary file modified setupTermuxArch.tar.gz
Binary file not shown.
18 changes: 9 additions & 9 deletions sha512.sum
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
a99413b4dad7782c6e05e72c36d420ecd3eaa666911b1caaaecddc3b05875a9b6235ffeae904418fde2c9aa4d3898dd4fd9315d5f442e481749d832806831fbd ./.conf/PRGNAMEID
be17974c55ffe9dffb02632dc54198ce0734e8a594325c35f21247c923fb78e83a0e763d4a20acdf4f58922b224909e1b4fce84393eff6bbf46c2e438a7c65b2 ./.conf/VERSIONID
34ce034450e485f59974b294689d8f797587abd80270cd0548f8d7d60e4fbf100ee51af52e0f4925570979e3df0a5fb42d2d43d9ea603c8953b55b3eb0287cf0 ./.conf/VERSIONID
d0886992184d64cd9bd693afafbb55d80036a6eb486f9fb3b2eedc22be35d18c5a744aac0f98df2d85a35098c6804ff8933de341087d172704fc1d21c9dfd5b5 ./.gitmodules
ccf293248249a718ec3e2dd92af558241a9510bbf575ed6af48158acc302cefd7b5cc41d30ac6e525c35de5afd396691a33a35890918d9b537046b1dcf8d7df0 ./404.md
20251c21db7e77e53a1936ec5cd8a5a9a02c5291b38beabafd50c9363d8603336e6f5dd2428d575ba09cab584bc7a3e21d4818da6bb669886b77955ae38bf500 ./CHANGE.log
d87962b05f29fca58b3ca44b5ba4f8534d218a925a31eab9d4ebb242b685029b6b4ab045bf9f3d94b59e1047dc3ba160e8684e264c247f3d56fba95827cc19af ./CONTRIBUTORS.md
1fbd5bbe1d7a8fad9bcbfe3410fab3ebbd1e79bc728b301eeb78b956357d3d0cd5829e500879e5621eb531147f2c2fc0e4f76f313dd515892bec6010bd3a2a00 ./LICENSE
494c1a4bbb505fb3009f0e434530b6401adf6fb502fd0f01eb31b757e6dd397fd2e78dc603ef03de0f86faaa25fcb763f1b5b8c2aa397ff8f5cbda6728351722 ./NOTICE.md
0a18df647ec799c37dc56e9ef9de98c9fee1158822638f95391106ee4b448bf269ee03d6dbefe1c5847900960be8be6441e00a59ed6ee5dc9b8187f5bf2d61e5 ./README.md
5a18d909b8afe8ef6427093b6bb40519572edae81aa3c50da2ccb00d5185fad8a7643ea511e196ee19931f380c12868fb583e3be1fa6f2e1e887cd111d07683e ./archlinuxconfig.bash
038ac8e72cd698fb63406c8735703197efe3b9b1aae8c0af2e00b11f7b7c42ff35a65e0b18b52d32d976c5a08bfc1c6f351198688cabd28bbd00124cd90d9002 ./archlinuxconfig.bash
f5f36554698e7866c68bbd1ed40ea3a4d9c331b0bca9f730915f6bf746626222178156d6788d35cc2430134e15c4aa9fc2fc7cdc8e9b0310cd115c3b438e4ca5 ./diff.makepkg.zip
dca70999c2b05ca1a64e1f9f4936665cfb3ffba5f12e5c4b2f27b721a4457976c35b1009c369681197342eb995f4d322c956d484a58ead63937cc072210b5139 ./espritfunctions.bash
72438d0ff1cdb173969abb5b315df0d7c294de376dac5b8a87a6b37a24d0f6c956d8562a6abd620e616bf3f095e2fa8e4568b0a3fbcd8ae59e08e1a10e6d87fa ./getimagefunctions.bash
1417a8ce0a3e20d9937dc24ed958953ee9bfc765ddbdcf32a61bd8ddcea26de8a085d215a9ad4d52e143c64bfac06e044bcbc46f8a5cc56c28a0ae496ab2354d ./knownconfigurations.bash
49623689a9e39090a8d566990311eb74056a34fcb10c5dce3b08021d7b81faa7ced58034d58c59acccf1aee0f156b2e1b92dc4668e47377c163e845059a814b2 ./maintenanceroutines.bash
fe56ca3a5c6418e37087bdbd7e59510eebf05fdcdc8ba7a7ea6d4a82446e95d8bb172dbb6f4f531c81a3cca229c19a88bef285cdce0b338e7403070e6b4f6f3c ./necessaryfunctions.bash
2a8ce14501e06f55df1dc25b1f90cd5352844e0f7b22f179b678f065cc4601abbb34f18ac1c35357f80e3abdf99169c6f470f9c6e122d268dcd484a346254de4 ./printoutstatements.bash
d64028fdfb8ad63cda7beeae8baea3e0c27aa4b412cbd8b0bd3f1a90dc55394ed658d006084dd20dcb05650dc8be51573bdce6ae9304a12b40776d8a3616c713 ./necessaryfunctions.bash
ddcd7606a20b1ee3af45fd7044c3b470dc78354934bcecb4851f7d43ec8bdef030c942b47dfc7720bbdcbe80d59f0b5cf65e1d4f722a8dde6adb3c79bfbacae4 ./printoutstatements.bash
fdcfcc010ded1ca05a1ac51878f6fce049a7c3d3ca9b45d19a57ff8cac47a77eafbb50307e0fe22bf51364878d7f222d38dd2fa5a8eca5c33cdc6ed3830070f6 ./pullTermuxArchSubmodules.bash
b08550ecb00c7ad0050faf6056ebd7bb919fae434799acd00e2e8afc7658ca69550c126194887b26a205a9835c81166017fecce41768d2f2a752e1bdf23b1b29 ./robots.txt
1d9c19ec37d03732c2c11482adda658d454ee4ee6ff785cecf6b426e8bc1218e97b533a9dbb613e8d274d5aaa69c1ac0351b5f037c9862c6f9054b0d81a42335 ./setupTermuxArch
1d9c19ec37d03732c2c11482adda658d454ee4ee6ff785cecf6b426e8bc1218e97b533a9dbb613e8d274d5aaa69c1ac0351b5f037c9862c6f9054b0d81a42335 ./setupTermuxArch.bash
1d9c19ec37d03732c2c11482adda658d454ee4ee6ff785cecf6b426e8bc1218e97b533a9dbb613e8d274d5aaa69c1ac0351b5f037c9862c6f9054b0d81a42335 ./setupTermuxArch.sh
cd17bbded59a2729628b30e81ce685ed44529324e8a20253befe9dc979e155f725a5e82d5f8c21a12a7d54221a5837922b9a1bcd095ef8af763562db9380766c ./setupTermuxArch.sha512
ce3b843843a7c1b8e4fb21e113d502a7c81451486bc79ef856d247fc9da73f3e0476c75cfb1305b0cb71791413f342d25eaee69d11f19a6279e9a961b5fab17f ./setupTermuxArch.tar.gz
6e789bab7ed6d1411e9935738b2f55fea06c49e1e687dc1277242542bd2443fedda03047d7aa266c84d11ebca6a6a6e26fc7406d0ecc2d69bfb0ee5c7cfb832f ./setupTermuxArch
6e789bab7ed6d1411e9935738b2f55fea06c49e1e687dc1277242542bd2443fedda03047d7aa266c84d11ebca6a6a6e26fc7406d0ecc2d69bfb0ee5c7cfb832f ./setupTermuxArch.bash
6e789bab7ed6d1411e9935738b2f55fea06c49e1e687dc1277242542bd2443fedda03047d7aa266c84d11ebca6a6a6e26fc7406d0ecc2d69bfb0ee5c7cfb832f ./setupTermuxArch.sh
02e5222928e81cf987be8d94dc13e1a7f9fe519cb40d6c34d5c6d1a88d5709bd23eaf21c66cf22df081dbef6226c3ba6651d7bfae64d41fb2980222dfa5271dc ./setupTermuxArch.sha512
03df64d0b605496d57d8ef45b8b2d6a902f9da50b55c9c6bdcf3d5d91d9c80af9d1e4f146fe23cf5d54c4438d84c9ea201b18ba8f765242b4c441378bbeb16b3 ./setupTermuxArch.tar.gz
0c2c6374e0a697b0e900b07f97f0b6e3d913224676442e54cd636d567c804b9ec7c48853fb91eab04455b9072b3311a46856e47e7364dedcbedb87925652c2b6 ./sitemap.xml

1 comment on commit 7b81bfb

@SDRausty
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#34

Please sign in to comment.