Sliding objects got you stuck? Lock them down with these quick fixes.
Windows: Hit Win + R, type
wsl --shutdown, press Enter, then reopen your app.Mac: Fire up Activity Monitor → find the process → click the × button.
Linux: Open a terminal and run
killall -9 <process_name>.
What’s causing the movement?
Ever notice how files or apps keep wiggling around even after you close their windows? That’s because invisible system helpers keep them active. The trick is cutting off the process driving the motion.
How do you actually stop it?
- Windows (2024–2026)
- Hit Win + R to pop open the Run dialog.
- Type
wsl --shutdownand press Enter to clear the Windows Subsystem for Linux kernel. - Restart the application or file explorer.
- macOS (Sonoma & Sequoia, 2024–2026)
- Press Cmd + Space, type Activity Monitor, then hit Enter.
- Click the CPU tab and sort by “% CPU” to hunt down the hung process.
- Select it and click the × button in the toolbar.
- Linux (Ubuntu 24.04 LTS / Fedora 40)
- Open a terminal and run
ps aux | grep <app_name>to list the process. - Note the PID (that’s the second column).
- Run
kill -9 <PID>to shut it down instantly.
- Open a terminal and run
Still not working? Try this.
- Windows: Open Task Manager → switch to the Details tab → right-click the stubborn process → pick End task.
- macOS: Open Terminal and run
killall -9 Dockif those icons just won’t stop jiggling. - Linux: Reboot with
sudo rebootwhen the whole desktop environment locks up.
How can you prevent this mess next time?
Windows users can mash Win + X → U → U for a lightning-fast shutdown that cuts off lingering processes. On macOS, set Activity Monitor to launch at login—spot those resource hogs before they drain your battery. Linux folks can drop alias k='killall -9' into their .bashrc for one-command process murder (use sparingly, though).
Microsoft Support confirms force-closing processes this way prevents system hangs. Apple’s Activity Monitor guide backs this up—killing high-CPU tasks restores normal desktop behavior. And the Linux man page for killall warns that -9 should be your last resort—save it for truly frozen apps.