Skip to content

Instantly share code, notes, and snippets.

@danielkza
Created August 18, 2013 01:32
Show Gist options
  • Save danielkza/6259494 to your computer and use it in GitHub Desktop.
Save danielkza/6259494 to your computer and use it in GitHub Desktop.
pipelight config
#
# Path to the wine executable
#
winePath = /usr/bin/wine
#
# Path to the wine prefix containing Silverlight
#
winePrefix = $HOME/.wine-pipelight/
#
# Path to the plugin loader executable
# (Should be set correctly by the make script)
#
pluginLoaderPath = $HOME/.pipelight/pluginloader.exe
#
# Path to the Silverlight directory
# Must be changed if a different version should be used.
# The standard installation Path is:
# c:\Program Files\Microsoft Silverlight\5.1.20513.0\
#
dllPath = c:\Program Files\Silverlight\5.1.20513.0\
#
# Name of the Silverlight library to load (relative to the path specified above)
#
dllName = npctrl.dll
#
# fakeVersion allows to fake the version string of Silverlight
# Allows to get around some version checks done by some websites
# when using an old version of Silverlight.
#
#fakeVersion = 5.1.20513.0
#
# overwriteArg allows to overwrite initialization arguments
# passed by websites to Silverlight applications. You can
# use this option as often as you want to overwrite multiple
# parameters. You should always keep the deactivation of the
# gpu acceleration otherwise Silverlight 5.* will crash on
# some video streaming websites.
#
# You may need to overwrite the minimum runtime version if
# you use an old Silverlight version as some websites set
# an artificial limit for the version number although it
# would work with older versions.
#
# overwriteArg = minRuntimeVersion=5.0.61118.0
#
overwriteArg = enableGPUAcceleration=false
#
# windowlessmode refers to a term of the Netscape Plugin API and
# defines a different mode of drawing and handling events.
# On some desktop enviroments you may have problems using the
# keyboard in windowless mode, on the other hand the drawing is
# more efficient when this mode is enabled. Just choose what works
# best for you.
#
windowlessmode = false
#
# embed defines whether the Silverlight plugin should be shown
# inside the browser (true) or an external window (false).
#
embed = true
#
# Path to the dependency installer script provided by the compholio
# package. (optional)
#
#dependencyInstaller = /usr/share/wine-browser-installer/install-dependency
#
# Silverlight version to install
#
# Valid values are:
# silverlight5.1
# silverlight5.0
# silverlight4
#
# If you changes this value, you also need to adjust dllPath
#
silverlightVersion = silverlight5.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment