On Mon, Feb 21, 2022 at 10:31 AM Bryan Ohana <[email protected]> wrote:
> Hi Everyone > > On the homepage of Guacamole I would like to add TEXT and or Section > between the recent connection and the ALL Connection sections. Do you know > how we can achieve that ? > > Sure, this can be done using a Guacamole extension that appends or replaces HTML. There are a couple of places to look documentation-wise that will help you: https://guacamole.apache.org/doc/gug/guacamole-ext.html https://github.com/apache/guacamole-client/tree/master/doc/guacamole-branding-example The page in the manual tells you about the various places where you can replace or add to HTML and how to accomplish that using "<meta>" tags. The second link is for the example branding extension included in the git repo - this just gives you an example of what you can do, and you take a look at the code, there, and see how to adjust things within the interface. Once you've got your extension ready you just drop the JAR in GUACAMOLE_HOME/extensions (along with authentication extensions, for example) and re-deploy the web application. You may have to clear the browser's cache and reload the page a couple of times, but you should see changes/additions made in the extension you built deployed in the web application. -Nick
