using System;
using System.Drawing;
// The 'windowHandle' parameter will contain the window handle for the:
// - Active window when run by hotkey
// - Window Location target when run by a Window Location rule
// - TitleBar Button owner when run by a TitleBar Button
// - Jump List owner when run from a Taskbar Jump List
// - Currently focused window if none of these match
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
//change this variable with your default sound device
string defaultSound = "[default sound device]";
//change this variable with your steam.exe path
string steamDirectory = @"C:\Program Files (x86)\Steam\Steam.exe";
//ask steam to shutdown if it is running
if(BFS.Application.IsAppRunningByFile(steamDirectory))
BFS.Application.Start(steamDirectory, "-shutdown");
//set the default audio playback device
BFS.Audio.SetDefaultPlaybackSounds(defaultSound);
}
}