سؤال

I can't seem to find a shortcut for launching the activity monitor. Does it have one?

هل كانت مفيدة؟

المحلول

Save in AppleScript Editor and assign a shortcut in FastScripts or some other way:

tell app "Activity Monitor"
    reopen -- makes a new window if there are no existing windows
    activate -- brings the app to front
end tell

نصائح أخرى

Not by default, but you can create one in System Preferences --> Keyboard --> Keyboard Shortcuts. Or you can use spotlight:

  • type + space

  • start typing "activity monitor"

  • as soon as activity monitor is highlighted in the spotlight list, hit return

Create in Automator an Action to launch Activity Monitor:

enter image description here

Then in System Preferences -> Shortcuts Tab -> Services set a keyboard shortcut for the created service:

enter image description here

Otherwise of Spotloight that @Calavera suggest you can use 3rd-party software such as:

  1. QuickSilver
  2. Namely
  3. TigerLaunch
  4. HimmelBar
  5. LaunchBar

I myself use QuickSilver and set shortcut +space to run it and type some part of "Activity Monitor" and press so Activity Monitor will run.

alt text

For starting apps, scripts, etc. with a single shortcut, there exist some specific tools.

  1. NuKit - free trial, download from MacUpdate or their site.
  2. Apptivate - 2.0 is no longer free and as of now, it's unfortunately traded usability for eye candy.

Apptivate offers to switch away from apps with the same shortcut. The NuKit team promised to add it soon.

You can use System keyboard shortcuts, Services and Automator to do this. See my answer to a similar question here

You can you use BetterTouchTool to create keyboard shortcuts and even use the trackpad to create a gesture instead of keyboard shortcuts.

Hammerspoon is my favorite and is probably the most easiest to install and configure. Here is the init.lua code for launching the Activity Monitor.

hs.hotkey.bind({"cmd","shift"}, "Escape", function()
   hs.application.open("Activity Monitor")
end)

PS: I mapped my command key to control. So by mapping the hotkey to "cmd+shift+escape", I get similar functionality that I get in Windows(for opening the task manager)

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى apple.stackexchange
scroll top