Skip to content

Commit

Permalink
DockDestoyer v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasjohnston authored Jul 15, 2018
1 parent ed3714b commit c7ae2b5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions DockDestroyer.app/Contents/MacOS/DockDestroyer
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

echo “Finding the PID of your Dock”
dockPid=$(ps -ax | awk '$4 == "/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock" {print $1}')
echo $dockPid
echo "Killing..."
kill -9 $dockPid
echo "Done!"

0 comments on commit c7ae2b5

Please sign in to comment.