SpinWin icon
SpinWin icon

SpinWin

macOS menubar app that visually rotates or spins another app's window, using ScreenCaptureKit to fake what macOS has no API to do.

SpinWin screenshot 1

Cost / License

  • Free
  • Open Source (MIT)

Platforms

  • Mac
SpinWin screenshot 1
SpinWin screenshot 2
0likes
0comments
0alternatives
0articles

Features

Properties

  1.  Lightweight
  2.  Privacy focused

Features

  1.  No registration required
  2.  No Tracking
  3.  Works Offline
  4.  Ad-free
  5.  Sits in the MenuBar

SpinWin News & Activities

Highlights All activities

Recent activities

SpinWin information

  • Developed by

    alokdhir
  • Licensing

    Open Source (MIT) and Free product.
  • Written in

  • Alternatives

    0 alternatives listed
  • Supported Languages

    • English

GitHub repository

  •  43 Stars
  •  1 Forks
  •  0 Open Issues
  •   Updated  
View on GitHub
SpinWin was added to AlternativeTo by Paul on and this page was last updated .
No comments or reviews, maybe you want to be first?

What is SpinWin?

A macOS menubar utility that visually rotates a selected window by any angle (90° increments, arbitrary angles, or a continuous spin).

How it works (and why)

macOS has no public API to rotate another app's window. Real rotation would require private SkyLight calls (CGSSetWindowTransform) with System Integrity Protection disabled — not worth it.

Instead, SpinWin fakes it:

  • Hide the selected window off-screen via the Accessibility API. It keeps rendering there, so it can still be captured.
  • Capture its contents continuously with ScreenCaptureKit (SCStream + desktopIndependentWindow filter) — this grabs only that window's buffer, so the overlay never mirrors itself.
  • Draw the frames in a transparent, borderless overlay window placed where the original was, rotated with a CALayer transform.

Because it's a layer transform, any angle works — the overlay is sized to the rotated content's bounding box so nothing clips, and a diagonal-sized square is used while spinning.

Official Links