Better Window Manager AppleScript

Apply Window State Named:

Apply a window state with a specific name to the current window.

tell application "Better Window Manager"
	apply window state Window State Name "Full Screen"
end tell
Apply Application Specific Window State Named:

If you have mulitple windoew states with the same name, but they are for different applications, then you can provide the application name that the window state was saved for.

tell application "Better Window Manager"
	apply window state Window State Name "Full Screen" Application Name "Activity Monitor"
end tell