Skip to main content

Overview

Screen switching actions enable seamless window movement across multiple displays. These actions are essential for multi-monitor workflows, allowing you to quickly relocate windows to different screens. Defined in the static screenSwitching array (line 81):

Properties

All screen switching actions share a common computed property:
Bool
Returns true for all screen switching actions (line 91)
Used to identify actions that will move the window to a different display.

Sequential Navigation

nextScreen

WindowDirection
Moves the window to the next screen in the display order.Raw Value: "NextScreen"URL Scheme: loop://NextScreenBehavior:
  • Moves window to the next display in macOS screen ordering
  • Cycles back to first screen when at the last screen
  • Preserves window size and relative position
  • Common for clockwise monitor rotation workflows
Display Order:

previousScreen

WindowDirection
Moves the window to the previous screen in the display order.Raw Value: "PreviousScreen"URL Scheme: loop://PreviousScreenBehavior:
  • Moves window to the previous display in macOS screen ordering
  • Cycles to last screen when at the first screen
  • Preserves window size and relative position
  • Opposite direction of .nextScreen
Display Order:

Directional Navigation

Directional screen switching moves windows based on physical display arrangement.

leftScreen

WindowDirection
Moves the window to the display positioned to the left.Raw Value: "LeftScreen"URL Scheme: loop://LeftScreenBehavior:
  • Moves to the display physically positioned to the left
  • Based on display arrangement in System Settings
  • No effect if no display exists to the left
  • Preserves window size and relative position
Physical Layout:

rightScreen

WindowDirection
Moves the window to the display positioned to the right.Raw Value: "RightScreen"URL Scheme: loop://RightScreenBehavior:
  • Moves to the display physically positioned to the right
  • Based on display arrangement in System Settings
  • No effect if no display exists to the right
  • Preserves window size and relative position
Physical Layout:

topScreen

WindowDirection
Moves the window to the display positioned above.Raw Value: "TopScreen"URL Scheme: loop://TopScreenBehavior:
  • Moves to the display physically positioned above
  • Based on display arrangement in System Settings
  • No effect if no display exists above
  • Preserves window size and relative position
  • Common in vertical monitor stacking setups
Physical Layout:

bottomScreen

WindowDirection
Moves the window to the display positioned below.Raw Value: "BottomScreen"URL Scheme: loop://BottomScreenBehavior:
  • Moves to the display physically positioned below
  • Based on display arrangement in System Settings
  • No effect if no display exists below
  • Preserves window size and relative position
  • Common in vertical monitor stacking setups
Physical Layout:

Usage Examples

Keyboard Shortcuts

Multi-Monitor Workflows

Horizontal Dual Monitor Setup:
Vertical Monitor Stack:
Triple Monitor Rotation:

Display Arrangement

The directional screen switching actions (left/right/top/bottom) depend on how your displays are arranged in: System Settings → Displays → Arrangement Example arrangements:

Horizontal Layout

L-Shaped Layout

Vertical Stack

Window Positioning Behavior

When moving windows between screens:
  1. Size Preservation: Window maintains its current size (unless it exceeds the target screen dimensions)
  2. Relative Position: Window attempts to maintain its relative position on the target screen
  3. Screen Bounds: If window is larger than target screen, it’s resized to fit
  4. No Overlap: Window is adjusted to stay within target screen bounds

Radial Menu

Screen switching actions appear in the radial menu but don’t have specific directional angles (line 102):
They typically appear as menu options rather than directional triggers.

Combining with Positioning

Screen switching can be combined with positioning actions:
The screen switching action moves the window first, then apply positioning actions to arrange it on the target display.

Troubleshooting

  • Verify multiple displays are connected and active
  • Check display arrangement in System Settings → Displays
  • Ensure displays are in the expected physical positions
  • Check your display arrangement configuration
  • Verify which display is set as the primary/main display
  • Different resolution screens may affect relative positioning
  • Open System Settings → Displays → Arrangement
  • Drag display icons to match your physical monitor positions
  • Click “Arrange” to update the configuration

General Actions

Combine with maximize or center after moving screens

Halves & Quarters

Position windows after screen switching

WindowDirection Overview

Complete action reference