startSettingsCustom.sh 414 B

123456789101112
  1. #!/bin/sh
  2. bindir="${PWD}/bin"
  3. echo "1"$bindir
  4. versiondir=${PWD}
  5. echo "2"$versiondir
  6. cefpath="${bindir}/Chromium/cefclient"
  7. echo "3"$cefpath
  8. urlpath="${versiondir}/res/ManagerDesktop/page.html?entry=expire#basicinfo"
  9. echo "4"$urlpath
  10. cmdpath="${cefpath} --url=file:///${urlpath} --no-sandbox --hide-tabs --hide-controls --always-on-top --disable-web-security --logextend=errPage"
  11. echo "5"$cmdpath
  12. exec ${cmdpath}