Re: Application icon
Re: Application icon
- Subject: Re: Application icon
- From: "David P. Henderson" <email@hidden>
- Date: Mon, 8 Oct 2001 14:48:49 -0400
On Sunday, October 7, 2001, at 09:44 , Clark S. Cox III wrote:
>
You could also just kill the dock, without having to log out or
>
restart. it restarts automatically. In a terminal, enter this, and hit
>
return:
>
ps -ax | grep
>
"/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock"
>
On Monday, October 8, 2001, at 02:18 , Finlay Dobbie wrote:
>
I prefer
>
ps -caux | grep Dock | awk '{print $2}' | xargs kill
On Monday, October 8, 2001, at 04:13 , Ondra Cada wrote:
>
Well, yep, it works. But what about a simple one-line command:
>
>
kill `ps cax | fgrep Dock | awk '{ print $1 }'`
>
Or instead of using the Terminal, and multiple commands and piping use a
simple one line, one command AppleScript Application:
tell application "Dock" to quit
I named mine Kill Dock
Dave
--
Chaos Assembly Werks
"The Trend over the last 20 years or so has been to design computer
languages that enforce a state of paranoia. You're expected to program
every module as if it were in a state of siege In Perl culture, by
contrast, you're expected to stay out of someone's home because you
weren't invited in, not because there are bars on the windows."
from Programming Perl