Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kiosk improvements #445

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Mar 4, 2021

  1. Add --single-app command-line option for easier kiosk mode

    Combined with "--app=URL", "--single-app" will replace the
    URL of an existing browser window, instead of opening a new one.
    If no existing browser window is open, "--single-app" is a no-op
    and a new browser window will open.
    
    Example:
    
       # Open a browser in full screen, app mode (e.g. a "kiosk")
       midori -e fullscreen -a https://www.google.com
    
       # Replace the webpage shown on the existing browser
       midori --single-app -a https://www.yahoo.com
    agordon committed Mar 4, 2021
    Configuration menu
    Copy the full SHA
    38a633c View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2021

  1. new -e/--execute command: 'force-fullscreen'

    Complementary to '-e fullscreen' which toggles fullscreen mode,
    this command always turns full-screen mode (or no-op if already
    in full screen mode).
    This is useful for kiosk mode, especially with changing the kiosk
    webpage display from the command line.
    
    Example:
    
      midory -e force-fullscreen -a https://www.yahoo.com
    agordon committed Mar 5, 2021
    Configuration menu
    Copy the full SHA
    2f32d9a View commit details
    Browse the repository at this point in the history