Shimmy is a lightweight utility designed for macOS users who need quick and precise control over their window positions. It allows users to nudge windows in any direction using customisable global keyboard shortcuts. Unlike full-fledged window management tools, Shimmy focuses on providing simple directional adjustments, making it a perfect companion to other window management solutions.
shimmy-cap.mp4
- macOS
- Go 1.22.1
- A C compiler (to build)
- git clone the repository
- Build the binary with
go build
Running the binary in the terminal activates the following global shortcuts:
Cmd + Shift + Q
- Quit the applicationCmd + Shift + Up
- Move active window upCmd + Shift + Down
- Move active window downCmd + Shift + Left
- Move active window leftCmd + Shift + Right
- Move active window right
Run in the foreground:
# Set movement distance to 10 pixels (default)
./shimmy -p 10
Run in the background:
nohup ./shimmy -p 10 &
- Add support for custom keybinds
- Run in the background as a menu bar app