Skip to content

Instantly share code, notes, and snippets.

@maforget
Created January 4, 2021 04:48
Show Gist options
  • Save maforget/186a99205140acd3f7d3328ad1466e62 to your computer and use it in GitHub Desktop.
Save maforget/186a99205140acd3f7d3328ad1466e62 to your computer and use it in GitHub Desktop.
Automate Fullscreen in ComicRack on Book Opening or Startup of the Application
#
# Sample handler for the opening a new book event
#
#@Name Open Book in Fullscreen
#@Key fullscreenBook
#@Hook BookOpened
#@Description Open Book in Fullscreen
def fullscreenBook(book):
ComicRack.ComicDisplay.FullScreen = True
#
# This script is called after ComicRack has started
#
#@Name Automatically Start in Fullscreen
#@Hook Startup
#@Enabled false
#@Description Automatically Start in Fullscreen
def fullscreenStart():
ComicRack.ComicDisplay.FullScreen = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment