itiligent / Guacamole-Installer

Automated install of Gucamole with options for HTTPS reverse proxy, Active Directory integration, MFA, LetsEncrypt, dark theme, MySQL backup, email alerts & more.
GNU Affero General Public License v3.0
240 stars 44 forks source link

How can I change this text => Connected to Guacamole... #52

Closed akhakpash closed 3 weeks ago

akhakpash commented 3 weeks ago

How can I change this text? Untitled

itiligent commented 3 weeks ago

I dont know for sure, but you can probably change this with time and effort.
As with any open source, to try this, you need to search through and edit the source code before it compiles. The install script provides a prompt at the start to exit after downloading only the sources so you can do this. You will need to search among the source for the specific string(s) of text and test till you figure it out. You would then need to add lines to automate those changes programatically to the souce in the upgrade script, or make this change manually for each upgrade or install.

itiligent commented 3 weeks ago

Another thought, you might be able to edit after compilation in the Tomcat directories somewhere.. again, time and effort is required to seek out this level of editable detail in the code or what is compiled into binaries. Generally I find that making too many changes to the Tomcat configuration away from default Guacmole settings risks breaking various things when it comes to upgrades. Also, as Tomcat packages change, the way you solve this in future may also change.

itiligent commented 3 weeks ago

a clarification to my first post.. To halt the script and edit source before compiling, there is a prompt option that is currently disabled that I forgot to mention. To stop the script just before build time, uncomment this line in 2-install-guacamole.sh

read -p $'Script paused for editing source before building. Enter to begin the build...\n'

Then you will be free to search the extracted sources and make your changes

itiligent commented 3 weeks ago

answered in #57