Touchbar/keyboard shortcut to Cycle a window through Quarter Snaps

Hello!

First, love this tool. I have been trying to figure out a way for a touch bar button that when pressed repeatedly or held will cycle a single application window through the four different quarter window snap locations, top left, top right, bottom right, bottom left (clockwise) until the window is in the desire quarter. Obviously I can't figure it out.

Any ideas? Just a thought, not a deal breaker.

Thank you!!

There is no automatic way to do this, however you could assign a little Apple Script like this and create 4 named triggers in the "other triggers" section in BTT.

tell application "BetterTouchTool"
	set lastQuarter to get_number_variable "LastQuarter"
	if lastQuarter is 0 then
		set_number_variable "LastQuarter" to 1
		trigger_named_async_without_response "moveToQuarter1"
		
	else if lastQuarter is 1 then
		set_number_variable "LastQuarter" to 2
		trigger_named_async_without_response "moveToQuarter2"
	else if lastQuarter is 2 then
		set_number_variable "LastQuarter" to 3
		trigger_named_async_without_response "moveToQuarter3"
	else
		set_number_variable "LastQuarter" to 0
		trigger_named_async_without_response "moveToQuarter4"
	end if
end tell

!!!! Why can’t all customer service be as brilliant!? I will implement and report back!