User Tools

Site Tools


manual:Preferences

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
manual:Preferences [2020/09/02 17:07]
JMichaelTX [Clipboard] ADD how to disable Clipboard History
manual:Preferences [2023/11/07 00:14] (current)
peternlewis [Engine Animation]
Line 3: Line 3:
 To configure Keyboard~~Maestro,​ first launch Keyboard~~Maestro and choose [[Menus#​Keyboard_Maestro_Preferences|Preferences]] from the [[Menus#​Keyboard_Maestro|Keyboard Maestro menu]]. To configure Keyboard~~Maestro,​ first launch Keyboard~~Maestro and choose [[Menus#​Keyboard_Maestro_Preferences|Preferences]] from the [[Menus#​Keyboard_Maestro|Keyboard Maestro menu]].
  
-{{ preferencesgeneral.png?​472 |Preferences General Pane }}+{{ preferencesgeneral.png?​nolink&​582x641 ​| Preferences General Pane }}
  
 The preferences are divided into sections. The preferences are divided into sections.
Line 15: Line 15:
 * Show or hide the [[Applications_Palette|Applications Palette]]. * Show or hide the [[Applications_Palette|Applications Palette]].
 * configure whether to detect clipboards that resemble passwords and obscure them. * configure whether to detect clipboards that resemble passwords and obscure them.
-* configure the light/dark appearance (v9.0+, OS X 10.14+).+* configure the light/dark appearance (macOS 10.14+).
 * configure the default text size used in various places. * configure the default text size used in various places.
 * configure whether and how to show the status menu. * configure whether and how to show the status menu.
 * configure the style of the status menu. * configure the style of the status menu.
 +* configure whether to include macro icons in the status menu.
 * configure whether to include pasting clipboards in the status menu. * configure whether to include pasting clipboards in the status menu.
 * configure whether to include applications in the status menu. * configure whether to include applications in the status menu.
Line 73: Line 74:
  
 You can paste an image into a Named~~Clipboard by selecting it in the list and pasting an image (if you select part of the text, it will paste the image into the styled text, which works but is probably not what you want). You can paste an image into a Named~~Clipboard by selecting it in the list and pasting an image (if you select part of the text, it will paste the image into the styled text, which works but is probably not what you want).
- 
-You can also inspect variables and other values in the [[Windows#​Value_Inspector_Window |Value Inspector]]. 
  
 ===== Variables Preferences ===== ===== Variables Preferences =====
Line 80: Line 79:
 In the [[Windows#​Preferences_Variables_Pane|Variables preference pane]] you can add and remove variables and see and change their values. In the [[Windows#​Preferences_Variables_Pane|Variables preference pane]] you can add and remove variables and see and change their values.
  
-You do not need to create variables, just using them and giving them a value is all that is required for them to spring into existence. ​ You can also inspect variables and other values in the [[Windows#​Value_Inspector_Window |Value Inspector]].+You do not need to create variables, just using them and giving them a value is all that is required for them to spring into existence. 
 + 
 +You can also inspect variables and other values in the [[Windows#​Value_Inspector_Window |Value Inspector]].
  
 ===== Excluded Preferences ===== ===== Excluded Preferences =====
Line 89: Line 90:
  
 You can also add and remove applications from the clipboard history exclusion list.  When an excluded application is at the front, Keyboard Maestro will not automatically record the clipboard history each time it changes. ​ It will still read the current System Clipboard if you explicitly ask for it in a macro or open the Clipboard History Switcher. You can also add and remove applications from the clipboard history exclusion list.  When an excluded application is at the front, Keyboard Maestro will not automatically record the clipboard history each time it changes. ​ It will still read the current System Clipboard if you explicitly ask for it in a macro or open the Clipboard History Switcher.
 +
 +===== Security Preferences =====
 +
 +Keyboard Maestro is designed to act on your behalf and to do many things for you - essentially acting as you in performing tasks. As such, it needs a wide variety of security permissions to perform these tasks.
 +
 +This preference panel aims to summarise the important preferences and allow you to explicitly request them as needed.
  
 ===== Preferences Set by Command Line ===== ===== Preferences Set by Command Line =====
  
-You can configure various preferences using defaults write from the Mac OS X Terminal. ​ Some preferences will take effect immediately,​ but others may require the editor or engine to be relaunched.+You can configure various preferences using defaults write from the Mac OS X Terminal. ​ Some preferences will take effect immediately,​ but others may require the editor or engine to be relaunched. These preferences are documented here only to provide utility. Their behaviour may change in the future, or have unexpected consequences.
  
 ==== Editor ==== ==== Editor ====
Line 142: Line 149:
 <code bash> <code bash>
 defaults write com.stairways.keyboardmaestro.editor Font-Normal -string "​Monaco"​ defaults write com.stairways.keyboardmaestro.editor Font-Normal -string "​Monaco"​
 +defaults write com.stairways.keyboardmaestro.editor Font-Fixed -string "​Monaco"​
 defaults write com.stairways.keyboardmaestro.editor Font-Shell -string "​USER"​ defaults write com.stairways.keyboardmaestro.editor Font-Shell -string "​USER"​
 defaults write com.stairways.keyboardmaestro.editor Font-AppleScript -string "​FIXED"​ defaults write com.stairways.keyboardmaestro.editor Font-AppleScript -string "​FIXED"​
Line 165: Line 173:
 defaults write com.stairways.keyboardmaestro.engine MaxClipboardHistory -int 200 defaults write com.stairways.keyboardmaestro.engine MaxClipboardHistory -int 200
 </​code>​ </​code>​
 +
 +If you set the max number of items to zero, then the Copy action will fail.
  
 **Maximum Clipboard Flavor Size** (default 100MB) **Maximum Clipboard Flavor Size** (default 100MB)
Line 171: Line 181:
 defaults write com.stairways.keyboardmaestro.engine ClipboardFlavorMaximumSize -int 100000000 defaults write com.stairways.keyboardmaestro.engine ClipboardFlavorMaximumSize -int 100000000
 </​code>​ </​code>​
 +
 +**Multiple Clipboard Separator** (default Return)
 +
 +The separator added if you paste multiple items from the Clipboard Switcher can be configured in the gear menu or set to something else with the command:
 +
 +<code bash>
 +defaults write com.stairways.keyboardmaestro.engine MultipleClipboardSeparator " and "
 +</​code>​
 +
 +**Ignored Clipboard Flavors**
 +
 +You can add additional clipboard flavors to be ignored using:
 +
 +<code bash>
 +defaults write com.stairways.keyboardmaestro.engine ExtraIgnoredClipboardFlavors "​com.whatever.badflavor"​
 +</​code>​
 +
 +The string should be a bar (`|`) separated list of flavors (technically a regular expression). These flavors will be excluded from the clipboard when Keyboard Maestro reads the clipboard.
 +
 +You can also write to `IgnoredClipboardFlavors`,​ which will set the entire list of ignored clipboard flavors, but that is a bad idea since the flavors that are ignored, are ignored for a reason, and overwriting the list will produce negative results.
  
 **Maximum Position of Concealed (Password) Items** (default 10) **Maximum Position of Concealed (Password) Items** (default 10)
Line 187: Line 217:
 **Include Microsoft PDFs in Clipboards** **Include Microsoft PDFs in Clipboards**
  
-Microsoft applications include a PDF flavor with every copy, and starting up the PDF rendering engine is slow, making the first copy after launching a Microsoft application.  ​**Keyboard Maestro ​(v9.0+) ​excludes PDF flavors from clipboards copied in Microsoft applications by default, but you can turn this off with:**+Microsoft applications include a PDF flavor with every copy, and starting up the PDF rendering engine is slow, making the first copy after launching a Microsoft application. ​ Keyboard Maestro excludes PDF flavors from clipboards copied in Microsoft applications by default, but you can turn this off with:
  
 <code bash> <code bash>
Line 195: Line 225:
 **Include Microsoft Image Formats** **Include Microsoft Image Formats**
  
-Microsoft applications also include flavors for every possible image format with every copy.  ​**Keyboard Maestro ​(v9.0+) ​excludes secondary image flavors like BMP when there is a PNG or TIFF flavor available. ​ You can turn this off with:**+Microsoft applications also include flavors for every possible image format with every copy.  Keyboard Maestro excludes secondary image flavors like BMP when there is a PNG or TIFF flavor available. ​ You can turn this off with:
  
 <code bash> <code bash>
Line 209: Line 239:
 </​code>​ </​code>​
  
-==== Safari ​Browser Used in Actions & Tokens ====+==== Browser Used in Actions & Tokens ====
  
 **Change which Safari-based Browser will be targeted by the "​Safari"​ Actions, Tokens, and Functions.** **Change which Safari-based Browser will be targeted by the "​Safari"​ Actions, Tokens, and Functions.**
Line 227: Line 257:
 defaults write com.stairways.keyboardmaestro.engine AppleScriptSafariName -string "​com.apple.Safari"​ defaults write com.stairways.keyboardmaestro.engine AppleScriptSafariName -string "​com.apple.Safari"​
 </​code>​ </​code>​
- 
-==== Chrome Browser Used in Actions & Tokens ==== 
  
 **Change which Chrome-based Browser will be targeted by the various Keyboard Maestro "​[[token:​ChromeTitle|Chrome Related]]"​ Actions, Tokens, and Functions.** **Change which Chrome-based Browser will be targeted by the various Keyboard Maestro "​[[token:​ChromeTitle|Chrome Related]]"​ Actions, Tokens, and Functions.**
Line 252: Line 280:
 </​code>​ </​code>​
  
 +**Add additional Browsers to the Front Browser Actions, Tokens, and Functions.**
  
 +The current list of browsers supported in Keyboard Maestro as a potential front browser include:
 +
 +* com.apple.Safari
 +* com.apple.SafariTechnologyPreview
 +* com.google.Chrome
 +* com.google.Chrome.canary
 +* com.brave.Browser
 +* com.brave.Browser.beta
 +* com.vivaldi.Vivaldi
 +* com.vivaldi.Vivaldi.snapshot
 +* com.microsoft.edgemac
 +
 +Plus whatever browser is specified as the Safari or GoogleChrome above.
 +
 +You can add additional browsers supported as the Front Browser by including their bundle IDs in the `AdditionalWebBrowserBundleIDs` preference. You can list as many as you like, separated by spaces or commas.
 +
 +<code bash>
 +defaults write com.stairways.keyboardmaestro.engine AdditionalWebBrowserBundleIDs -string "​com.example.Safari,​com.example.Chrome"​
 +</​code>​
 +
 +:!: Note:  if the bundle ID includes “safari”,​ it is considered a Safari browser, otherwise it is considered a Chrome-based browser.
 +
 +==== Tokens ====
 +
 +Tokens are limited to 0.9 seconds in execution time, and are executed somewhat asynchronously in Ventura and later. You can control this with:
 +
 +<code bash>
 +defaults write com.stairways.keyboardmaestro.engine TokenTimeout -float 0.9
 +defaults write com.stairways.keyboardmaestro.engine ForceSynchronousTokens -bool YES
 +</​code>​
  
 ==== Engine Animation ==== ==== Engine Animation ====
Line 262: Line 321:
 </​code>​ </​code>​
  
-==== Typed String ​Buffer ​====+==== Typed String ====
  
-You can disable Shift-Space from clearing the Typed String buffer+You can disable Shift-Space from clearing the Typed String buffer ​with:
  
 <code bash> <code bash>
Line 270: Line 329:
 </​code>​ </​code>​
  
-and you can disable clicks from clearing the Typed String buffer+and you can disable clicks from clearing the Typed String buffer ​with:
  
 <code bash> <code bash>
Line 276: Line 335:
 </​code>​ </​code>​
  
-and you can set the idle time for clearing the Typed String buffer (default 5 seconds)+and you can set the idle time for clearing the Typed String buffer (default 5 seconds) ​with:
  
 <code bash> <code bash>
 defaults write com.stairways.keyboardmaestro.engine TypedStringClearTime -float 5.0 defaults write com.stairways.keyboardmaestro.engine TypedStringClearTime -float 5.0
 </​code>​ </​code>​
 +
 +You can disable modifiers taps in the Typed String buffer with:
 +
 +<code bash>
 +defaults write com.stairways.keyboardmaestro.engine AllowModifiersInTypedStrings -bool NO
 +</​code>​
 +
  
 ==== Use Unicode for Keystrokes ==== ==== Use Unicode for Keystrokes ====
Line 386: Line 452:
 defaults write com.stairways.keyboardmaestro.engine ReportUpdatesWhenEditorActivates -bool YES defaults write com.stairways.keyboardmaestro.engine ReportUpdatesWhenEditorActivates -bool YES
 </​code>​ </​code>​
 +
 +==== Prompt With List Show All Limit ====
 +
 +
 +You can set the limit for the maximum number of items shown by default in the [[action:​Prompt_With_List|Prompt With List]] action with:
 +
 +<code bash>
 +defaults write com.stairways.keyboardmaestro.engine PromptWithListShowAllLimit -int 100
 +</​code>​
 +
 +When there is more items than this in the list, by default the action will not show the items as the list may be too long to be practical.
  
 ==== WebKit Inspector for HTML Prompt ==== ==== WebKit Inspector for HTML Prompt ====
Line 407: Line 484:
 The style includes 3 or 6 HSB colors (being background, text, highlighted letter, selected background, selected text, selected highlight letter) each specified as hue,​saturation,​brightness. ​ The background brightness is dropped by 33%, but if there are only three colors, then the selected background color is the background without the 33% drop.  You can select the Custom style in the Theme Editor. The style includes 3 or 6 HSB colors (being background, text, highlighted letter, selected background, selected text, selected highlight letter) each specified as hue,​saturation,​brightness. ​ The background brightness is dropped by 33%, but if there are only three colors, then the selected background color is the background without the 33% drop.  You can select the Custom style in the Theme Editor.
  
-Alternatively ​(v9.0+), you can specify the theme using JSON and including all the details for the theme including optional gradients. ​ The format is:+Alternatively,​ you can specify the theme using JSON and including all the details for the theme including optional gradients. ​ The format is:
  
     {      { 
Line 446: Line 523:
  }'  }'
  
-NoteL the “-string” is important - otherwise the `defaults` command will interpret the JSON itself and that will not work.+Note that the “-string” is important - otherwise the `defaults` command will interpret the JSON itself and that will not work.
manual/Preferences.1599080872.txt.gz · Last modified: 2020/09/02 17:07 by JMichaelTX