Giter VIP home page Giter VIP logo

swiftbar's Introduction

GitHub license Latest Release Github all releases

SwiftBar Logo

SwiftBar

Add custom menu bar programs on macOS in three easy steps:

  • Write a shell script
  • Add it to SwiftBar
  • ... there is no 3rd step!

You can get plugins from awesome BitBar repository, or in SwiftBar itself using the Get Plugins... menu item.

How to get SwiftBar

Download from GitHub Releases

or Install with Homebrew

brew install swiftbar

Runs on macOS Catalina (10.15) and up.

...or build it from source

  • Clone or download a copy of this repository
  • Open SwiftBar/SwiftBar.xcodeproj
  • Press play

Plugin Repository

SwiftBar is bundled with a Plugin Repository. You can access it at Swiftbar → Get Plugins...

A screenshot of SwiftBar’s Plugin Repository

If you want to add\remove plugin or have other questions about repository content please refer to this issue.

Creating Plugins

To add a new plugin to SwiftBar, you need to create an executable script following the required format (see below) and put it into Plugin Folder.

Plugin Folder

With the first launch, Swiftbar will ask you to set the Plugin Folder. SwiftBar will try to import every file in this folder as a plugin.

Important:

  • hidden folders are ignored
  • nested folders are traversed by SwiftBar, including symlinks
  • .swiftbarignore file is supported, you can use it to exclude files from being imported as plugins.

You can hide a folder by prepending . or using this command chflags hidden <folder name>.

Plugin Naming

Plugin files must adopt the following format:

{name}.{time}.{ext}
  • name - Anything you want.
  • time - Refresh interval (optional). Should be a number + duration modifier (see below)
  • ext - File extension.

Duration modifiers:

  • ms - milliseconds, e.g. 1ms - refresh every millisecond
  • s - seconds, e.g. 1s - refresh every second
  • m - minute, e.g. 10m - refresh every ten minutes
  • h - hour, e.g. 3h - refresh every three hours
  • d - day, e.g. 1d - refresh every day

Example filename: date.1m.sh

Whether you are using a plugin from the plugin repository, or creating your own, plugins will initially appear in the menu bar in no pre-determined order. However, you can reorder how they appear by holding down Cmd and dragging them (this process can sometimes also be used on some other non-SwiftBar icons in the menu bar too). Plugin position will be remembered unless you change the name of the plugin file, in which case they'll need to be re-positioned again.

Plugin API

Plugin is an executable script in the language of your choice. When SwiftBar detects a new file in Plugin Folder it makes this file executable if needed and runs it.

Script should produce output (STDOUT) in the required format (see next chapter). Script errors should be redirected to STDERR.

Plugin API is adopted from the BitBar\xbar, which means that SwiftBar can run any existing BitBar\xbar plugin.

Script Output

When parsing plugin output SwiftBar recognizes the following blocks:

  • Header: responsible for what you see in the menu bar
  • Body: responsible for dropdown menu contents

Header is everything before first ---. Each --- after the first one will be interpreted as a menu separator. You have one or more lines in the header.

The simplest plugin looks like this:

echo "This is Menu Title"

If you provide multiple titles, the provided titles will be cycled in the menu bar and shown in the dropdown menu:

echo "This is a primary Menu Title"
echo "This is a secondary Menu Title"
echo "This is a n-th Menu Title"
echo "---"
echo "This is not a Menu Title, this will be shown in the drop-down menu only"

Script output for both header and body is split by line (\n). Each line must follow this format:

<Item Title> | [param = ...] 

Where:

  • "Item Title" can be any string, this will be used as a menu item title.
  • [param = ...] is an optional set of parameters\modificators. Each parameter is a key-value separated by =. Use | to separate parameters from the title.

Parameters

Text Formatting:

Parameter Value Description
color CSS color or HEX, light_color,dark_color Sets item text color. If only one color is provided, it is used for both light and dark appearance.
sfcolor CSS color or HEX, light_color,dark_color Sets SF Symbol color. If only one color is provided, it is used for both light and dark appearance. If you fame multiple SF Symbols you can provide different colors by adding index, like this sfcolor2
font macOS font name Sets font name to use in item text
size Number Sets item text size
md True Enables markdown support in menu title for **bold** and *italic*
sfsize Number Sets size for SF Symbol image embedded in text
length Number Trims item text to a provided number of characters. The full title will be displayed in a tooltip.
trim True Trims whitespace characters
ansi True Enables support of ANSI color codes. Conflicts with: symbolize
emojize False Disables parsing of GitHub style Emojis (e.g., :mushroom: into 🍄). Requires: symbolize=false when setting to true.
symbolize False Disables parsing of SF Symbols (e.g., "SF Symbols Test :sun.max: :cloud.fill: :gamecontroller.fill: :bookmark: :sun.dust:"Screenshot of SF Symbols). Always False on Catalina.

Visuals:

Parameter Value Description
dropdown False Only applicable to items in Header. When set to False, item will not be displayed in dropdown menu, but will be cycled in the menu bar.
alternate True Marks a line as an alternative to the previous one for when the Option key () is pressed in the dropdown.
image Image encoded in Base64, light_image,dark_image Sets an image for item. If only one image is provided, it is used for both light and dark appearance.
templateImage Image encoded in Base64 Same as image, but the image is a template image. Template images consist of black and clear colors (and an alpha channel). Template images are not intended to be used as standalone images and are usually mixed with other content to create the desired final appearance.
sfimage SFSymbol name Sets an image for item from SF Symbol. Only available on Big Sur and above.
sfconfig SFSymbol configuration Configures Rendering Mode for sfimage. Accepts a json encoded as base64, example json {"renderingMode":"Palette", "colors":["red","blue"], "scale": "large", "weight": "bold"}. Original issue #354
checked True Sets a checkmark in front of the item.
tooltip Text Sets a tooltip for the item.
webview True Present provided href as a webview, instead of standard menu bar menu
webvieww Number Sets webview width in pixels
webviewh Number Sets webview height in pixels

Actions:

Parameter Value Description
refresh True Plugin Script will be executed on item click
href Absolute URL Sets an URL to open when item clicked
bash Absolute file path Executable script to run in Shell
terminal False bash script will be run in the background, instead of launching the Terminal
params param0=,param1=,param10=... Parameters for bash script
shortcut CMD+OPTION+T Hotkey assigned to item. If item is in header, hotkey will show the menu; otherwise, hotkey will launch associated action.

Environment Variables

When running a plugin, SwiftBar sets the following environment variables:

Variable Value
SWIFTBAR 1
SWIFTBAR_VERSION The running SwiftBar version number (in x.y.z format)
SWIFTBAR_BUILD The running SwiftBar build number (CFBundleVersion)
SWIFTBAR_PLUGINS_PATH The path to the Plugin Folder
SWIFTBAR_PLUGIN_PATH The path to the running plugin
SWIFTBAR_PLUGIN_CACHE_PATH The cache to data folder, individual per plugin
SWIFTBAR_PLUGIN_DATA_PATH The path to data folder, individual per plugin
SWIFTBAR_PLUGIN_REFRESH_REASON Plugin refresh reason\trigger
SWIFTBAR_LAUNCH_TIME SwiftBar launch date and time, ISO8601
OS_APPEARANCE Current macOS appearance (Light or Dark)
OS_VERSION_MAJOR The first part of the macOS version (e.g., 11 for macOS 11.0.1)
OS_VERSION_MINOR The second part of the macOS version (e.g., 0 for macOS 11.0.1)
OS_VERSION_PATCH The third part of the macOS version (e.g., 1 for macOS 11.0.1)
OS_LAST_SLEEP_TIME Last OS sleep date and time, ISO8601. Empty if OS didn't sleep since SwiftBar launch.
OS_LAST_WAKE_TIME Last OS wake from sleep date and time, ISO8601. Empty if OS didn't sleep since SwiftBar launch.

Script Metadata

It is recommended to include metadata in plugin script. Metadata is used in the About Plugin screen in SwiftBar. SwiftBar adopts metadata format suggested by BitBar\xbar:

# <xbar.title>Title goes here</xbar.title>
# <xbar.version>v1.0</xbar.version>
# <xbar.author>Your Name</xbar.author>
# <xbar.author.github>your-github-username</xbar.author.github>
# <xbar.desc>Short description of what your plugin does.</xbar.desc>
# <xbar.image>http://www.hosted-somewhere/pluginimage</xbar.image>
# <xbar.dependencies>python,ruby,node</xbar.dependencies>
# <xbar.abouturl>http://url-to-about.com/</xbar.abouturl>
# <xbar.droptypes>Supported UTI's for dropping things on menu bar</xbar.droptypes>

Hiding default items

SwiftBar supports these optional metadata flags to hide default menu items:

# <swiftbar.hideAbout>true</swiftbar.hideAbout>
# <swiftbar.hideRunInTerminal>true</swiftbar.hideRunInTerminal>
# <swiftbar.hideLastUpdated>true</swiftbar.hideLastUpdated>
# <swiftbar.hideDisablePlugin>true</swiftbar.hideDisablePlugin>
# <swiftbar.hideSwiftBar>true</swiftbar.hideSwiftBar>

Option+Click will show all items: SwiftBar

Refresh schedule

A special tag can be used as an alternative to refresh interval defined in plugin's name, value adopts Cron syntax:

<swiftbar.schedule>01,16,31,46 * * * *</swiftbar.schedule>

You can configure multiple schedules, using the sepparator |:

<swiftbar.schedule>1 * * * *|2 * * * *</swiftbar.schedule>

Other Parameters

  • <swiftbar.refreshOnOpen>true</swiftbar.refreshOnOpen> - refreshes plugin on click, before presenting the menu
  • <swiftbar.runInBash>false</swiftbar.runInBash> - doesn't wrap plugins in Bash when running
  • <swiftbar.type>streamable</swiftbar.type> - mark plugin as Streamable
  • <swiftbar.environment>[var1=default value, var2=default value, ... ]</swiftbar.environment> - this variables will be passed in plugin's environment, in later release SwiftBar will provide a UI to change values for these variables.
  • <swiftbar.persistentWebView>true</swiftbar.persistentWebView> - makes WebView persistent, so it doesn't reload on each menu bar click

Metadata for Binary Plugins

For binary plugins metadata can be added as an extended file attribute:

xattr -w "com.ameba.SwiftBar" "$(cat metadata.txt | base64)" <plugin_file>

Plugin Types

Standard (default)

For Standard type of plugins, SwiftBar expects that plugin execution is finite, i.e., plugin runs and exits with output to stdout:

  • exit with code 0 and non-empty stdout - menu bar is built from the output
  • exit with code 0 and empty stdout - nothing in the menu bar
  • exit with code 1 - error shown in the menu bar

Optionally, a standard plugin can be run on a repeatable schedule, configured in the plugin's file name or schedule metadata property.

Shortcuts

This plugin type is aimed for people who want to use Shortcuts app to create menu bar items. The Plugin API is pretty much the same as Standard. Create a Shortcut that outputs text in the required format, select this Shortcut in the Shortcuts Plugin section of SwiftBar's Settings, and you are good to go.

For Shortcuts plugins, SwiftBar provides a handy UI to configure refresh schedule.

Example Shortcuts:

Ephemeral

Ephemeral plugins create menu bar items on demand by running SwiftBar's Shortcut action or calling a URL scheme. The Plugin API is pretty much the same as Standard.

Here are the parameters for the URL scheme:

  • name - this is the plugin name, should be unique
  • content - this is the markup you want SwiftBar to render
  • exitafter - this is optional parameter forces plugin to exit after a period of time, set in seconds.. Defaults to 0, which means "don't exit".

Shortcuts Action is pretty self-explanatory.

This plugin type is best used for notifications or other temporary menu bar items.

Streamable

Swiftbar launches a separate process for each Streamable plugin, which runs indefinitely until SwiftBar is closed or a failure. You should use Streamable plugins only when dealing with a stream of incoming events; an example could be financial market info read from a websocket or CPU load information for a remote computer.

To let SwiftBar know when to update the menu bar item, Streamable plugins must use a special line separator ~~~. SwiftBar will reset the menu item on each occurrence of this separator.

In the example below, SwiftBar will show "Test 1" in the menu bar for 3 seconds, then nothing for 5 seconds, and "Test 2" indefinitely.

#!/bin/bash
#<swiftbar.type>streamable</swiftbar.type>

echo "Test 1"
echo "---"
echo "Test 2"
echo "Test 3"
sleep 3
echo "~~~"
sleep 5
echo "~~~"
echo "Test 2"

You can mark a plugin as streamable with a special metadata property <swiftbar.type>streamable</swiftbar.type>

URL Scheme

Some notes:

  • Instead of the plugin name, you can (and probably should) use the plugin file name. This considered a unique plugin ID, whereas name can be the same between multiple plugins. If your plugin's filepath is ~/Documents/SwiftBar/myplugin.1m.sh, then the name is myplugin and the ID myplugin.1m.sh
  • When using open(1) to trigger scheme URLs, use -g to prevent the command from stealing focus from your active app.
Endpoint Parameter Description Example
refreshallplugins none Force refresh all loaded plugins swiftbar://refreshallplugins
refreshplugin name or plugin plugin name Force refresh plugin by name. If provided, additional URL parameters are exposed as ENV variables to the plugin swiftbar://refreshplugin?name=myplugin
refreshplugin index plugin index in menubar, starting from 0 Force refresh plugin by its position in menubar swiftbar://refreshplugin?index=1
enableplugin name or plugin plugin name Enable plugin by name swiftbar://enableplugin?name=myplugin
disableplugin name or plugin plugin name Disable plugin by name swiftbar://disableplugin?name=myplugin
toggleplugin name or plugin plugin name Toggle(enable\disable) plugin by name swiftbar://toggleplugin?name=myplugin
addplugin src source URL to plugin file Add plugin to Swiftbar from URL swiftbar://addplugin?src=https://coolplugin
notify name or plugin plugin name. Notification fields: title, subtitle, body. href to open an URL on click (including custom URL schemes). silent=true to disable sound Show notification swiftbar://notify?plugin=MyPlugin&title=title&subtitle=subtitle&body=body&silent=true
setephemeralplugin name plugin name, should be unique. content - plugin content, exitafter - optionally set the lifetime of the menubar in seconds Creates an Ephemeral Plugin. To remove existing Ephemeral Plugin set it's content to an empty string "" swiftbar://setephemeralplugin?name=ephemeral&content=hi

Preferences aka 'defaults'

List of preferences that are not exposed in SwiftBar UI:

  • defaults write com.ameba.SwiftBar StealthMode -bool YES - hides SwiftBar menu item when all plugins are disabled
  • defaults write com.ameba.SwiftBar DisableBashWrapper -bool YES - doesn't wrap plugins in Bash when running
  • defaults write com.ameba.SwiftBar MakePluginExecutable -bool NO - disables auto chmod +x all files in Plugin Directory
  • defaults write com.ameba.SwiftBar PluginDeveloperMode -bool YES - enables editing in Preferences -> Plugins
  • defaults write com.ameba.Swiftbar PluginDebugMode -bool YES - enables Plugin Debug View
  • defaults write com.ameba.SwiftBar StreamablePluginDebugOutput -bool YES - enables debug output for Streamable plugins, Swiftbar will expose the stream data in Console.App

Logs and Error

If plugin fails to run SwiftBar will show ⚠️ in the menu bar, you can see details by clicking on Error in dropdown menu. Use macOS Console.app to view SwiftBar logs.

Acknowledgements

SwiftBar uses these open source libraries:

To freeze and secure dependencies these libraries are forked to SwiftBar organization.

Translation/Localization

SwiftBar can be translated here.

More Apps

If you enjoy SwiftBar you may like these as well:

  • TRex - Easy to use text extraction tool for macOS
  • Esse - Swiss army knife of text transformation for iOS and macOS

swiftbar's People

Contributors

bilal-fazlani avatar bjinse avatar bringel avatar bs10x avatar cliss avatar darmen avatar eu81273 avatar fenhl avatar flisk avatar futurist avatar harry-evans avatar hodgesd avatar icod avatar incanus avatar jerry23011 avatar jmjordan avatar jpcanepa avatar kant avatar krubenok avatar martinschilliger avatar melonamin avatar mferber avatar milotype avatar nickxiao-zoom avatar peanball avatar xfangfang avatar xilopaint avatar yolonir avatar zearin avatar zeveisenberg avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

swiftbar's Issues

Question: support for droptypes from the BitBar beta API?

Among other stuff, the BitBar v2 beta API has a droptypes option, e.g.

# <bitbar.droptypes>filenames</bitbar.droptypes>

I'm not seeing those in the relevant SwiftBar README section, so my question is whether SwiftBar already supports those, and, if not, if it will be implemented eventually.

BitBar beta: https://github.com/matryer/bitbar/tree/beta
Examples: https://github.com/matryer/bitbar/blob/beta/Docs/DropToPlugin.md#example
UTIs: https://developer.apple.com/library/archive/documentation/Miscellaneous/Reference/UTIRef/Articles/System-DeclaredUniformTypeIdentifiers.html

[REQ] Add a link to the GitHub repo to the SwiftBar submenu

The SwiftBar submenu should have a link to the GitHub repo or its Issues section, e.g. between "Get Plugins…" and "About", incl. separators.

(This could be added until SwiftBar functionality is at least en par with the v2.0.0 beta of BitBar, and is stable with little bugs.)

Icons and text not supported together in status item in menu bar

Outputting the following:

241 mi | templateImage=iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAErWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS41LjAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iCiAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgZXhpZjpQaXhlbFhEaW1lbnNpb249IjM2IgogICBleGlmOlBpeGVsWURpbWVuc2lvbj0iMzYiCiAgIGV4aWY6Q29sb3JTcGFjZT0iMSIKICAgdGlmZjpJbWFnZVdpZHRoPSIzNiIKICAgdGlmZjpJbWFnZUxlbmd0aD0iMzYiCiAgIHRpZmY6UmVzb2x1dGlvblVuaXQ9IjIiCiAgIHRpZmY6WFJlc29sdXRpb249IjE0NC4wIgogICB0aWZmOllSZXNvbHV0aW9uPSIxNDQuMCIKICAgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIKICAgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIgogICB4bXA6TW9kaWZ5RGF0ZT0iMjAyMC0wMi0xNFQxMzozOTozMloiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjAtMDItMTRUMTM6Mzk6MzJaIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0icHJvZHVjZWQiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFmZmluaXR5IERlc2lnbmVyIChTZXAgMjIgMjAxOSkiCiAgICAgIHN0RXZ0OndoZW49IjIwMjAtMDItMTRUMTM6Mzk6MzJaIi8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cjw/eHBhY2tldCBlbmQ9InIiPz4kmJgeAAABgmlDQ1BzUkdCIElFQzYxOTY2LTIuMQAAKJF1kc8rRFEUxz8zQyPjV1EsLCZhNcSoiY0yk4aSpjHKYPPmmR9qZrzee9Jkq2ynKLHxa8FfwFZZK0WkZGVhTWzQc55RI5lzO/d87vfec7r3XHDGsmrOqOqDXN7Uo+GgdyY+63U/4qQBD610KKqhjUQiE1S0txscdrzqsWtVPveveRaShgqOGuFhVdNN4THhiRVTs3lTuEXNKAvCx8I+XS4ofG3riRI/2Zwu8YfNeiwaAmeTsDf9ixO/WM3oOWF5OZ257LL6cx/7JXXJ/PSUxA7xdgyihAniZZxRQgToZ0jmAD346ZUVFfL7vvMnWZJcVWaNAjqLpMlg4hN1WaonJaZET8rIUrD7/7evRmrAX6peF4TqB8t66QL3BnwWLet937I+D8B1D2f5cv7SHgy+il4sa5270LgGJ+dlLbEFp+vQdqcpuvItucSdqRQ8H0F9HJovoXau1LOffQ5vIbYqX3UB2zvQLecb578ALAJny/gySdMAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAILSURBVFiF7de7axVBFMfxTzTxAZIIMUoUNYWVBsRH44PY2KTxH/B/sPcfsVILFUxnJVpG8dUIN4hYKGpMECIagxIUvCYWM5dsNpu9e3cXc4v84DDLmZkzX86Zmd1lU/nq6WDsFgxiT8IGoj+pJSzga8Lmo7800GGcw3mcwSHszli8qJbwHdN4hqd4gtk8oEu4HEEORN+POPkN5vAlti37huVUzFYm90Xbm3g+hrPYFcd+ivFv4WEa6BTu4wUe4xEa+BsDjMR2Z7QdsW3gdYxxHKP4Fe13bH/iIxbRi5MYwwWcxsVWjKyS9cUsjQvlOoLhjHEtfY4LbMNLDLUZ+1Yo2wM8RzNnvB7cFcqQtCY+YFJI71yqf1LIbNI3i9tCtqeFTKfjXlfgYPXhZmLShLAPkprICJ62G6k5+3Ev0X8NW9vBJHUCd9Cf0Xe1ANCVjHlDQoZHOwEpovECQGN1L5qn4QJAA/8TqMfajZ2092UDl715lzGV05/Xl6uyQIQLsUxfrroOqIqOWn8PjWwEUK/wrkrDLOjss2aVqpSsiVcZ/oa1XwCFVQWotXgRX2FVBco63qWPPF2Yoarqt3pD/8H2jQSCd1aAKpWL6iWTgugKoMY6z6XUdUB16KCVPTS4wSwIr4l5zNQRrLeGGMtCqRZriFULEF0INKUmoI7+i9poRthLXaE+9Vwhm2qrf1g7s4YViKR/AAAAAElFTkSuQmCC

Results in the following behaviour:
Screenshot 2020-11-30 at 10 12 16@2x

And then on click:
Screenshot 2020-11-30 at 10 12 20@2x

Whereas the desired behaviour to match BitBar would be:
Screenshot 2020-11-30 at 10 11 44@2x

Abnormal output (1.1.0 Beta 1)

Plugin code below:

#!/usr/bin/env bash

# <bitbar.title>Yabai Stats</bitbar.title>
# <bitbar.version>v1.0</bitbar.version>
# <bitbar.author>Rocky Zhang</bitbar.author>
# <bitbar.author.github>yanzhang0219</bitbar.author.github>
# <bitbar.desc>Show yabai status (workspace id, workspace layout) on the menubar.</bitbar.desc>
# <bitbar.dependencies>yabai, skhd</bitbar.dependencies>

export PATH="/usr/local/bin:$PATH"

spaces=$(yabai -m query --displays | jq 'sort_by(.frame.x) | map(.spaces | join(" ")) | join(" │ ")' | sed "s/\"//g")
cur_space_type=$(yabai -m query --spaces | jq '.[] | select(.focused == 1) | .type | if . == "bsp" then "B" elif . == "float" then "F" elif . == "stack" then "S" else . end' | sed "s/\"//g")

echo "${spaces} - ${cur_space_type}"

My plugin shows the current total desktops (i.e., workspaces) on the menu bar, cooperating with the macOS tiling window manager yabai.

On 1.0.2, it shows like this:
image

4 | 1 2 | 3 means I am using three monitors, and desktop 4 is on the left monitor, desktop 1 and 2 are on the middle monitor, desktop 3 is on the right monitor. B means the current desktop type is "bsp" which is used by yabai to denote that the current desktop is managed.

However, on 1.1.0 Beta 1, it becomes abnormal.
image

It only shows the hyphen.

Thank you!

Hidden files (started with ".") should be ignored

Old bitbar ignores hidden files and foders, (filename started with "."). Swiftbar parses this files and shows errors. Please ignore this files and folders too. I store some data for plugins there.

Edit: it igrores hidden files, but not ignore files in hidden folder

Thanks

SF Symbols Not Working

Again, perhaps this is user error, but I'm running the following plugin on Big Sur:

#!/bin/sh
if [[ $(sw_vers -productVersion) == 11* ]]; then
	echo "SF Symbols Test"
	echo "---"
	echo "sfimage=sun"
	echo 'sfimage="sun"'
	echo "| sfimage=sun"
	echo '| sfimmge="sun"'
else
	echo "Catalina is not supported"
fi

And when I do, I see the following:

Screen Shot 2020-11-23 at 11 22 25 AM

(It's not unreasonable for the text to be shown; I was just trying several different mechanisms to get it to work.)

Feature request: system version environment variable offered by SwiftBar

This would obviously break compatibility with the BitBar API, i.e. plugins would only run in SwiftBar, unless the user accounts for the variable SYSTEM_VERSION to be empty, and then runs his own checks.

We could probably come up with different environment variables, but one could be SYSTEM_VERSION, which would read e.g. "10" for legacy systems, and "11", "12", "13" etc. for new-era systems.

I had the idea when applying the sfimage= visual parameter.

Currently I'm doing it like this:

#!/bin/zsh
# initial version checks
export SYSTEM_VERSION_COMPAT=0
legacy=false
sysvers=$(sw_vers -productVersion)
vmaj=$(echo "$sysvers" | awk -F"." '{print $1}')
if [[ $vmaj -le 10 ]] ; then
	if [[ $vmaj -eq 10 ]] ; then
		vmin=$(echo "$sysvers" | awk -F"." '{print $2}')
		[[ $vmin -lt 16 ]] && legacy=true
	else
		legacy=true
	fi
fi
# later in the script
if $paused ; then
	if $legacy ; then
		echo "⏸ Pings On Hold | color=blue"
	else
		echo "Pings On Hold | sfimage=pause.circle.fill color=blue"
	fi
	echo "---"
fi

If SwiftBar offered the system version number (the major version number) via environmental variable, the whole inital version check could be skipped… unless the script runs in BitBar; then the variable would be empty, and you would need those additional checks.

General bug: invert font or icon in menu bar when selected

Screenshot below:

Here it's just the SF Mono font (standard color black) in normal system mode ("light mode"). When selected, the menulet padding is colored, as it should be—in my case grey—, but the font should be inverted from black to white. (The same should be applied to icons: black to white when selected in "light" mode, and white to black when selected in system dark mode.)

snap

Plugings are not recognized when path contains spaces

I set Swiftbar (1.0.2) to Bitbar plugins folder but no plugins are loaded. Preferences says "Plugins folder is empty"

But there are plugins

matej@Matejs-MacBook-Pro ~/Projects/Others/BitBar Plugins $ ls -la *.php
-rwxr-xr-x@ 1 matej  staff  369 Oct 23 10:38 geo.1h.php
lrwxr-xr-x  1 matej  staff   58 Apr 27  2020 xcodeBuildTimes.1m.php -> ../Xcode Build Time Counter/sources/xcodeBuildTimes.1m.php

If i rename folder and remove space " ", it is working

v1.0.2 beta 3 crash

Same issue as before: script with a command exiting with error (cat a non-existent file), while sending stderr to /dev/null, then click on the ⚠️ icon in the menu bar, and SwiftBar crashes.

Process:               SwiftBar [6785]
Path:                  /Users/USER/*/SwiftBar.app/Contents/MacOS/SwiftBar
Identifier:            com.ameba.SwiftBar
Version:               1.0.2 (128)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           SwiftBar [6785]
User ID:               501

Date/Time:             2020-11-28 20:33:46.447 +0100
OS Version:            Mac OS X 10.15.7 (19H15)
Report Version:        12
Bridge OS Version:     4.6 (17P6610)
Anonymous UUID:        27A319F2-68D4-6212-7623-A3120AF6D7A2

Sleep/Wake UUID:       0BD0A671-E79A-4D9A-8FC3-74D2FAB0D109

Time Awake Since Boot: 290000 seconds
Time Since Wake:       37000 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes:       0x0000000000000001, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Illegal instruction: 4
Termination Reason:    Namespace SIGNAL, Code 0x4
Terminating Process:   exc handler [6785]

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   com.ameba.SwiftBar            	0x000000010cf85541 0x10cf48000 + 251201
1   com.ameba.SwiftBar            	0x000000010cf7df6c 0x10cf48000 + 221036
2   com.apple.AppKit              	0x00007fff2bbeb02e -[NSMenu _sendMenuOpeningNotification:] + 106
3   com.apple.AppKit              	0x00007fff2b969e71 -[NSCarbonMenuImpl _carbonOpenEvent:handlerCallRef:] + 195
4   com.apple.AppKit              	0x00007fff2b89ae51 NSSLMMenuEventHandler + 1197
5   com.apple.HIToolbox           	0x00007fff2cefa8ff DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1254
6   com.apple.HIToolbox           	0x00007fff2cef9d8d SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 329
7   com.apple.HIToolbox           	0x00007fff2cef9c3d SendEventToEventTargetWithOptions + 45
8   com.apple.HIToolbox           	0x00007fff2cf7e5db SendMenuOpening(MenuSelectData*, MenuData*, double, unsigned int, unsigned int, __CFDictionary*, unsigned char, unsigned char*) + 482
9   com.apple.HIToolbox           	0x00007fff2d0a05a5 PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, unsigned int, Rect const*, unsigned short, unsigned int, Rect const*, Rect const*, __CFDictionary const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 818
10  com.apple.HIToolbox           	0x00007fff2d09fdb6 _HandlePopUpMenuSelection8(OpaqueMenuRef*, OpaqueEventRef*, unsigned int, Point, unsigned short, unsigned int, unsigned int, Rect const*, unsigned short, Rect const*, Rect const*, __CFDictionary const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 410
11  com.apple.HIToolbox           	0x00007fff2cf772b5 _HandlePopUpMenuSelectionWithDictionary + 329
12  com.apple.AppKit              	0x00007fff2ba5cdcd SLMPerformPopUpCarbonMenu + 1611
13  com.apple.AppKit              	0x00007fff2b9033a8 _NSSLMPopUpCarbonMenu3 + 782
14  com.apple.AppKit              	0x00007fff2b902ff4 -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOptions:] + 439
15  com.apple.AppKit              	0x00007fff2bce45b7 +[NSStatusBarButtonCell popupStatusBarMenu:inRect:ofView:withEvent:] + 136
16  com.apple.AppKit              	0x00007fff2bce3b3a -[NSStatusBarButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 144
17  com.apple.AppKit              	0x00007fff2b7a41dd -[NSControl mouseDown:] + 748
18  com.apple.AppKit              	0x00007fff2b7a25f0 -[NSWindow(NSEventRouting) _handleMouseDownEvent:isDelayedEvent:] + 4914
19  com.apple.AppKit              	0x00007fff2b70ce21 -[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:] + 2612
20  com.apple.AppKit              	0x00007fff2b70c1c9 -[NSWindow(NSEventRouting) sendEvent:] + 349
21  com.apple.AppKit              	0x00007fff2bce54a9 -[NSStatusBarWindow sendEvent:] + 347
22  com.apple.AppKit              	0x00007fff2b70a554 -[NSApplication(NSEvent) sendEvent:] + 352
23  com.apple.AppKit              	0x00007fff2b5575bf -[NSApplication run] + 707
24  com.apple.AppKit              	0x00007fff2b529396 NSApplicationMain + 777
25  com.ameba.SwiftBar            	0x000000010cf4c386 0x10cf48000 + 17286
26  libdyld.dylib                 	0x00007fff683adcc9 start + 1

Thread 1:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff684eedfa mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff684ef170 mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff2e2f6ef5 __CFRunLoopServiceMachPort + 247
3   com.apple.CoreFoundation      	0x00007fff2e2f59c2 __CFRunLoopRun + 1319
4   com.apple.CoreFoundation      	0x00007fff2e2f4e3e CFRunLoopRunSpecific + 462
5   com.apple.AppKit              	0x00007fff2b708954 _NSEventThread + 132
6   libsystem_pthread.dylib       	0x00007fff685b2109 _pthread_start + 148
7   libsystem_pthread.dylib       	0x00007fff685adb8b thread_start + 15

Thread 2:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 3:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 4:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 5:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 6:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 7:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00007fff8ea1aa08  rbx: 0x00007fff815050b8  rcx: 0xffffffffffffffff  rdx: 0x0000000000000000
  rdi: 0x00007ffee2cb60f0  rsi: 0x00007fff8151b520  rbp: 0x00007ffee2cb61c0  rsp: 0x00007ffee2cb60e0
   r8: 0x00007ffee2cb60e0   r9: 0x00000000000007fb  r10: 0x000000010cfb3908  r11: 0x000000010cf7df40
  r12: 0x00007fff671f8800  r13: 0x00006000000e4e60  r14: 0x00007ffee2cb6100  r15: 0x00007fff671f86d0
  rip: 0x000000010cf85541  rfl: 0x0000000000010246  cr2: 0x000000010ed0a000
  
Logical CPU:     4
Error Code:      0x00000000
Trap Number:     6


Binary Images:
       0x10cf48000 -        0x10cfabfff +com.ameba.SwiftBar (1.0.2 - 128) <3B86C3D7-0297-304A-9A2F-E453C4C3CC65> /Users/USER/*/SwiftBar.app/Contents/MacOS/SwiftBar
       0x1102ba000 -        0x1102bd047  libobjc-trampolines.dylib (787.1) <88F9B648-C455-36F8-BBB9-7D1A9F57D073> /usr/lib/libobjc-trampolines.dylib
       0x11bd90000 -        0x11be21f47  dyld (750.6) <1D318D60-C9B0-3511-BE9C-82AFD2EF930D> /usr/lib/dyld
    0x7fff21365000 -     0x7fff215b2ff8  com.apple.RawCamera.bundle (9.02.0 - 1350.29) <59F81722-039E-33F5-A20E-936E997575A3> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff215b5000 -     0x7fff216e3ff8  com.apple.AMDMTLBronzeDriver (3.10.18 - 3.1.0) <9FA4516E-D815-3347-AC25-84099A9D763E> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
    0x7fff26c73000 -     0x7fff27072ff1  com.apple.driver.AppleIntelKBLGraphicsMTLDriver (14.7.8 - 14.0.7) <1FA5C980-0AFA-35AB-B904-8B41B75FB347> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
    0x7fff29efa000 -     0x7fff29efafff  com.apple.Accelerate (1.11 - Accelerate 1.11) <4F9977AE-DBDB-3A16-A536-AC1F9938DCDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff29efb000 -     0x7fff29f11fef  libCGInterfaces.dylib (524.2.1) <8FD09D09-BB19-36C5-ADE9-4F22DA235AEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff29f12000 -     0x7fff2a568fff  com.apple.vImage (8.1 - 524.2.1) <EA6F5FF2-7A1B-35D5-A5A3-D2B3386ECB75> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff2a569000 -     0x7fff2a7d0ff7  libBLAS.dylib (1303.60.1) <C6C2D42F-7456-3DBF-8BE2-9AA06EFC78FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff2a7d1000 -     0x7fff2aca4fef  libBNNS.dylib (144.100.2) <99C61C48-B14C-3DA6-8C31-6BF72DA0A3A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff2aca5000 -     0x7fff2b040fff  libLAPACK.dylib (1303.60.1) <5E3E3867-50C3-3E6A-9A2E-007CE77A4641> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2b041000 -     0x7fff2b056fec  libLinearAlgebra.dylib (1303.60.1) <3D433800-0099-33E0-8C81-15F83247B2C9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff2b057000 -     0x7fff2b05cff3  libQuadrature.dylib (7) <371F36A7-B12F-363E-8955-F24F7C2048F6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2b05d000 -     0x7fff2b0cdfff  libSparse.dylib (103) <B8A10D0C-4577-343D-B310-A3E81265D107> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff2b0ce000 -     0x7fff2b0e0fef  libSparseBLAS.dylib (1303.60.1) <B147FEF6-A0DB-3830-BF06-45BEC58DB576> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2b0e1000 -     0x7fff2b2b8fd7  libvDSP.dylib (735.140.1) <D63DC0A5-B8B4-3562-A574-E73BC3B57407> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff2b2b9000 -     0x7fff2b37bfef  libvMisc.dylib (735.140.1) <3601FDE3-B142-398D-987D-8151A51F0A96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2b37c000 -     0x7fff2b37cfff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <F6C5613D-2284-342B-9160-9731F78B4DE5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2b37d000 -     0x7fff2b3dcff0  com.apple.Accounts (113 - 113) <E2438070-30AB-3B89-AE63-1E485B92D108> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff2b526000 -     0x7fff2c2e6ff2  com.apple.AppKit (6.9 - 1894.60.100) <A64D10A6-FE17-39CE-9392-6615BE54E10E> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff2c336000 -     0x7fff2c336fff  com.apple.ApplicationServices (48 - 50) <C23D2740-FAF6-3BD6-9E48-56F54D752864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff2c337000 -     0x7fff2c3a2fff  com.apple.ApplicationServices.ATS (377 - 493.0.4.1) <87EA5DE1-506A-39FD-88BE-D8A3416C9012> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2c43b000 -     0x7fff2c479ff0  libFontRegistry.dylib (274.0.5.1) <F3461C05-0370-359B-9F03-5C1C1F7763EC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff2c4d4000 -     0x7fff2c503fff  com.apple.ATSUI (1.0 - 1) <5F513967-DDD7-3F22-AD14-8A38ABD9F2D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2c504000 -     0x7fff2c508ffb  com.apple.ColorSyncLegacy (4.13.0 - 1) <72EE68DB-F069-37F5-AA2A-40D5FCF139F4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2c5a2000 -     0x7fff2c5f9ffa  com.apple.HIServices (1.22 - 676) <14DF4D42-E24D-3EBD-9A9D-93124D8D6AA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff2c5fa000 -     0x7fff2c608fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <01B8B6B3-E2C3-3607-B34A-8283A7E0E924> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2c609000 -     0x7fff2c64effa  com.apple.print.framework.PrintCore (15.4 - 516.2) <437BCF12-48D2-3770-8BC9-567718FB1BCA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2c64f000 -     0x7fff2c659ff7  com.apple.QD (4.0 - 413) <27A36D07-B5E9-32E6-87B6-3127F260F48D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2c65a000 -     0x7fff2c667ffc  com.apple.speech.synthesis.framework (9.0.24 - 9.0.24) <75344F8F-32CA-3558-B4E6-F56D498250E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2c668000 -     0x7fff2c749ffa  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <8CFA0620-5E43-3C4D-A75B-981C0961C2DE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2c74b000 -     0x7fff2c74bfff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <C8F9CC56-F7CF-3E77-B6FC-BD8E1D19FA92> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff2cae2000 -     0x7fff2ce71ffa  com.apple.CFNetwork (1128.0.1 - 1128.0.1) <07F9CA9C-B954-3EA0-A710-3122BFF9F057> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff2ceed000 -     0x7fff2ceedfff  com.apple.Carbon (160 - 162) <97E334B3-7FAE-3239-9E89-5A546BC26ADE> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff2ceee000 -     0x7fff2cef1ff3  com.apple.CommonPanels (1.2.6 - 101) <9F6E13D9-374B-386F-8E15-FDD6CE967859> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff2cef2000 -     0x7fff2d1e6ff3  com.apple.HIToolbox (2.1.1 - 994.6) <EAF2DAC3-66B1-30BF-AF10-72DDA90D1044> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff2d1e7000 -     0x7fff2d1eaff3  com.apple.help (1.3.8 - 71) <36483951-6F3E-3F7E-8A5B-191C2357EF17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff2d1eb000 -     0x7fff2d1f0ff7  com.apple.ImageCapture (9.0 - 1600.65) <1A1F320E-3E85-3F3D-8AE0-B238C4E92D40> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff2d1f1000 -     0x7fff2d1f1fff  com.apple.ink.framework (10.15 - 227) <284507AE-EF47-3ABC-86A4-669243DB1D33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff2d1f2000 -     0x7fff2d20cffa  com.apple.openscripting (1.7 - 185.1) <B6E28747-5FC7-3461-8A71-864A969ED022> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff2d22d000 -     0x7fff2d22dfff  com.apple.print.framework.Print (15 - 271) <0D9FB08F-EA87-3BE7-821B-C61BA5601050> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff2d22e000 -     0x7fff2d230ff7  com.apple.securityhi (9.0 - 55008) <390C6FAA-99BF-3924-9180-9EAE41D9C6BE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff2d231000 -     0x7fff2d237fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <9614A01E-8303-3422-A3BA-6CE27540E09A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2d238000 -     0x7fff2d3d0ffa  com.apple.cloudkit.CloudKit (867 - 867) <1B851180-FC00-357F-B6C1-BB0EA7D6D5CA> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff2d3df000 -     0x7fff2d4d5fff  com.apple.ColorSync (4.13.0 - 3394.9) <A126406C-DA38-3FFE-8B25-BB9859EFD159> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff2d4d6000 -     0x7fff2d5c6ff7  com.apple.combine (1.0 - 134.102) <02C5D48A-E70F-3D68-8555-4211853F9C3B> /System/Library/Frameworks/Combine.framework/Versions/A/Combine
    0x7fff2d7c0000 -     0x7fff2dcc9ffb  com.apple.audio.CoreAudio (5.0 - 5.0) <9DA02E7A-56A0-3FFF-94C2-1795BA761F07> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff2dd1c000 -     0x7fff2dd54fff  com.apple.CoreBluetooth (1.0 - 1) <23DBB313-A082-3C08-8E1F-2D31EE4247EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff2dd55000 -     0x7fff2e13ffe8  com.apple.CoreData (120 - 977.3) <49AE61CA-C91E-31FE-9BD0-1AACFFB5181E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff2e140000 -     0x7fff2e272ff6  com.apple.CoreDisplay (1.0 - 186.6.15) <213D7011-8180-3CF4-9BE7-FB8F75DCDB95> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff2e273000 -     0x7fff2e6f2feb  com.apple.CoreFoundation (6.9 - 1677.104) <C0D70026-EDBE-3CBD-B317-367CF4F1C92F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff2e6f4000 -     0x7fff2ed69ff8  com.apple.CoreGraphics (2.0 - 1355.22) <4A3CDE7B-4578-3058-966A-3D1DC095A935> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff2ed77000 -     0x7fff2f0d2ff0  com.apple.CoreImage (15.0.0 - 940.9) <69361069-01AB-342E-862B-73A74271A765> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff2f0d3000 -     0x7fff2f13cff0  com.apple.corelocation (2394.0.22 - 2394.0.22) <75966124-2FB7-33C3-BE49-3DD5F327F911> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff2f493000 -     0x7fff2f56effc  com.apple.CoreMedia (1.0 - 2625.9) <A3FF3AFC-8C1C-36E5-9179-66D8F075EE35> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff2f65b000 -     0x7fff2f65bfff  com.apple.CoreServices (1069.24 - 1069.24) <AA140158-E909-34C2-B2F5-20EBC93E0056> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff2f65c000 -     0x7fff2f6e1fff  com.apple.AE (838.1 - 838.1) <2E5FD5AE-8A7F-353F-9BD1-0241F3586181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff2f6e2000 -     0x7fff2f9c3ff7  com.apple.CoreServices.CarbonCore (1217 - 1217) <BE379206-99FA-30CD-8391-2708473A633F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff2f9c4000 -     0x7fff2fa11ffd  com.apple.DictionaryServices (1.2 - 323.6) <26B70C82-25BC-353A-858F-945B14C803A2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2fa12000 -     0x7fff2fa1aff7  com.apple.CoreServices.FSEvents (1268.100.1 - 1268.100.1) <FC84DB48-A3CE-30F7-A918-B3587731ACC7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff2fa1b000 -     0x7fff2fc55ff6  com.apple.LaunchServices (1069.24 - 1069.24) <9A5359D9-9148-3B18-B868-56A9DA5FB60C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff2fc56000 -     0x7fff2fceeff1  com.apple.Metadata (10.7.0 - 2076.7) <0973F7E5-D58C-3574-A3CE-4F12CAC2D4C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff2fcef000 -     0x7fff2fd1cfff  com.apple.CoreServices.OSServices (1069.24 - 1069.24) <0E4F48AD-402C-3E9D-9CA9-6DD9479B28F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2fd1d000 -     0x7fff2fd84fff  com.apple.SearchKit (1.4.1 - 1.4.1) <2C5E1D85-E8B1-3DC5-91B9-E3EDB48E9369> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2fd85000 -     0x7fff2fda9ff5  com.apple.coreservices.SharedFileList (131.4 - 131.4) <02DE0D56-E371-3EF5-9BC1-FA435451B412> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff300ce000 -     0x7fff30285ffc  com.apple.CoreText (643.1.5.1 - 643.1.5.1) <A88F052A-C840-3E6C-9BF8-FFFED34C0667> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff30286000 -     0x7fff302caffb  com.apple.CoreVideo (1.8 - 344.3) <5314E70D-325F-3E98-99FC-00FDF520747E> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff302cb000 -     0x7fff30358ffc  com.apple.framework.CoreWLAN (13.0 - 1601.2) <6223BFD5-D451-3DE9-90F6-F609AC0B0027> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff305ef000 -     0x7fff305f5fff  com.apple.DiskArbitration (2.7 - 2.7) <0BBBB6A6-604D-368B-9943-50B8CE75D51D> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff307ea000 -     0x7fff30918ff6  com.apple.FileProvider (304.1 - 304.1) <E8BB1D4B-05D6-386C-865C-F8C750CEC308> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff30930000 -     0x7fff30cf5fff  com.apple.Foundation (6.9 - 1677.104) <7C69F845-F651-3193-8262-5938010EC67D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff30d62000 -     0x7fff30db2ff7  com.apple.GSS (4.0 - 2.0) <2F3A67E6-D42A-3CF0-9041-A42C22D46F95> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff30eef000 -     0x7fff31003ff3  com.apple.Bluetooth (7.0.6 - 7.0.6f7) <CF9CEFBA-97AC-3474-93AF-863C2C74C645> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff31069000 -     0x7fff3110dff3  com.apple.framework.IOKit (2.0.2 - 1726.140.1) <14223387-6F81-3976-8605-4BC2F253A93E> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff3110f000 -     0x7fff31120ffb  com.apple.IOSurface (269.11 - 269.11) <BCD744D4-E17E-3C2E-B69C-F69C789892E9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff3119f000 -     0x7fff312fbffe  com.apple.ImageIO.framework (3.3.0 - 1976.11.1) <5DBAD721-B70E-396C-922C-A2742E6815D6> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff312fc000 -     0x7fff312fffff  libGIF.dylib (1976.11.1) <1A04BEC5-95CF-3EA4-8FA6-FE19679331F3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff31300000 -     0x7fff313b9fe7  libJP2.dylib (1976.11.1) <686B045D-5627-3DEE-B018-72068B7136D4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff313ba000 -     0x7fff313ddfe3  libJPEG.dylib (1976.11.1) <13EAEDD3-D4CF-3B2C-B7A4-FB000A71D982> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff3165c000 -     0x7fff31676fef  libPng.dylib (1976.11.1) <031068A2-29E2-3BE0-93CC-76D154976A51> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff31677000 -     0x7fff31678fff  libRadiance.dylib (1976.11.1) <6B5A0402-F511-39ED-933A-C361005107B1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff31679000 -     0x7fff316bffff  libTIFF.dylib (1976.11.1) <1F089EF9-3DCE-3B49-9B2B-28B9AC3252D0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff32c21000 -     0x7fff32c33ff3  com.apple.Kerberos (3.0 - 1) <03BB492B-016E-37BF-B020-39C2CF7487FE> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff32c34000 -     0x7fff32c34fff  libHeimdalProxy.dylib (77) <0A2905EE-9533-3345-AF9B-AAC71513BDFD> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff32fc6000 -     0x7fff32fd0ffb  com.apple.MediaAccessibility (1.0 - 125.1) <98065EA1-3484-3A5A-B05C-D2FABED8CEA4> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff3309c000 -     0x7fff337e9ff2  com.apple.MediaToolbox (1.0 - 2625.9) <3A848992-9182-382A-BF7D-5CB9707BE27B> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff337eb000 -     0x7fff338b5fff  com.apple.Metal (212.8 - 212.8) <98C944D6-62C8-355E-90F8-C1CA2429EF24> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff338d2000 -     0x7fff3390fff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <7EBAC15D-7837-395D-B405-1E29F7DA68FA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff33910000 -     0x7fff3399afe2  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <B424FE0C-6E90-3BFA-A6E7-DD86C735AE90> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff3399b000 -     0x7fff339c0ff4  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <02006D92-E2AB-3892-A96B-37F6520C19BA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff339c1000 -     0x7fff339d6ffb  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <CAA5A368-DB71-34F6-AEF9-27A8BC298F53> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff339d7000 -     0x7fff33b35ffc  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <05612E06-50CB-318F-9F8E-EF4D49FAB3B0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff33b36000 -     0x7fff33b85ff4  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <B0B591F8-6875-351E-867F-8EB3CD38CD52> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff33b86000 -     0x7fff33b87ff5  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <F2921F9A-3041-3495-878D-64134267B847> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff34c16000 -     0x7fff34c22ffe  com.apple.NetFS (6.0 - 4.0) <4415F027-D36D-3B9C-96BA-AD22B44A4722> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff34c23000 -     0x7fff34d7aff3  com.apple.Network (1.0 - 1) <4A0F3B93-4D23-3E74-9A3D-AD19E9C0E59E> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff34d7b000 -     0x7fff34fdbffa  com.apple.NetworkExtension (1.0 - 1) <3ED35C5A-B170-373E-8277-D4198E408810> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension
    0x7fff377ac000 -     0x7fff37804fff  com.apple.opencl (3.5 - 3.5) <293FE223-9186-320B-81A4-EC8104C38357> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff37805000 -     0x7fff37821fff  com.apple.CFOpenDirectory (10.15 - 220.40.1) <7E6C88EB-3DD9-32B0-81FC-179552834FA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff37822000 -     0x7fff3782dffd  com.apple.OpenDirectory (10.15 - 220.40.1) <4A92D8D8-A9E5-3A9C-942F-28576F6BCDF5> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff38193000 -     0x7fff38195fff  libCVMSPluginSupport.dylib (17.10.22) <2B6C3C16-3F5F-36A8-8070-2A862B90328B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff38196000 -     0x7fff3819bfff  libCoreFSCache.dylib (176.15) <E9A20E72-B17F-33D6-8894-41934A10B822> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff3819c000 -     0x7fff381a0fff  libCoreVMClient.dylib (176.15) <018A48BA-1326-3847-8FB5-A7C99322EB87> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff381a1000 -     0x7fff381a9ff7  libGFXShared.dylib (17.10.22) <AB47B927-65E3-3924-88BE-0A5BE7906785> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff381aa000 -     0x7fff381b4fff  libGL.dylib (17.10.22) <FB5E6A75-398E-38EF-8CB2-59F5BFE3034C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff381b5000 -     0x7fff381e9ff7  libGLImage.dylib (17.10.22) <9A3FE633-61B8-3CC7-8183-62960109401A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff3837f000 -     0x7fff383bbfff  libGLU.dylib (17.10.22) <D8B4D804-7323-30BC-871C-B7236FFC2FE3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff38df7000 -     0x7fff38e06ff7  com.apple.opengl (17.10.22 - 17.10.22) <D3C57A32-6BD0-3228-B1C4-0F42A6128A6C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff39464000 -     0x7fff3946aff6  com.apple.PushKit (1.0 - 1) <AD547A25-1A0B-3FA6-8676-82C37F267A4A> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit
    0x7fff39dc4000 -     0x7fff3a047ffb  com.apple.QuartzCore (1.11 - 841.4) <FE927B0E-BD49-32CC-8A55-90F553C86C15> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff3abca000 -     0x7fff3af13ff1  com.apple.security (7.0 - 59306.140.5) <B6F8368F-2395-379B-B768-71C53BB1B903> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff3af14000 -     0x7fff3af9cffb  com.apple.securityfoundation (6.0 - 55236.60.1) <7C69DF47-4017-3DF2-B55B-712B481654CB> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff3afcb000 -     0x7fff3afcfff8  com.apple.xpc.ServiceManagement (1.0 - 1) <2C62956C-F2D4-3EB0-86C7-EAA06331621A> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff3b321000 -     0x7fff3bb5207f  com.apple.SwiftUI (42.24 - 42.24) <EB2A964A-CA10-3536-8517-420D1E29DAEB> /System/Library/Frameworks/SwiftUI.framework/Versions/A/SwiftUI
    0x7fff3bc7b000 -     0x7fff3bcf5ff7  com.apple.SystemConfiguration (1.19 - 1.19) <84F9B3BB-F7AF-3B7C-8CD0-D3C22D19619F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff3bf75000 -     0x7fff3c2f8ff4  com.apple.VideoToolbox (1.0 - 2625.9) <6CF18E28-A7A8-3952-8171-7E4FF4FB37FA> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff3fc65000 -     0x7fff3fd2afe7  com.apple.APFS (1412.141.1 - 1412.141.1) <C86A3423-E61C-335A-9D17-0B3CE5BB6467> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff404f2000 -     0x7fff404faff5  com.apple.AccessibilityBundles (1.0 - 131.5) <C616977E-919B-3211-BC56-3803B3B2702E> /System/Library/PrivateFrameworks/AccessibilityBundles.framework/Versions/A/AccessibilityBundles
    0x7fff40e3f000 -     0x7fff40e40ff1  com.apple.AggregateDictionary (1.0 - 1) <95A291F5-B69F-3C37-9483-C3B2EBF52AC1> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff413df000 -     0x7fff413fcff4  com.apple.AppContainer (4.0 - 448.100.6) <87CEE13C-8585-3EFB-92CD-0852DFF0921B> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff41451000 -     0x7fff4145fff7  com.apple.AppSandbox (4.0 - 448.100.6) <0F49AA04-3400-349A-9096-6D4D7ED61027> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff418db000 -     0x7fff418ffffb  com.apple.framework.Apple80211 (13.0 - 1610.1) <D94E03E8-4C38-3B2F-8DF4-473ACC5A7D71> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff41bbd000 -     0x7fff41bccfd7  com.apple.AppleFSCompression (119.100.1 - 1.0) <466ABD77-2E52-36D1-8E39-77AE2CC61611> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff41ccb000 -     0x7fff41cd6ff7  com.apple.AppleIDAuthSupport (1.0 - 1) <74F6CD9C-27A7-39C7-A7EB-47E60D2517EB> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff41d18000 -     0x7fff41d60ff7  com.apple.AppleJPEG (1.0 - 1) <6DE30A07-C627-319B-A0DE-EB7A832BEB88> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff42123000 -     0x7fff42149ffb  com.apple.aps.framework (4.0 - 4.0) <3ED300B6-43E3-31DC-B3C6-6A0FF41A2595> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff4214a000 -     0x7fff4214eff7  com.apple.AppleSRP (5.0 - 1) <70C25EA9-F7A7-366C-97C6-EEE7845FFCC3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff4214f000 -     0x7fff42171fff  com.apple.applesauce (1.0 - 16.25) <68E0364C-AEA7-3654-A030-136BF3CD92F3> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff42230000 -     0x7fff42233fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <67255151-F989-39F0-BC87-0C0BDAE70730> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff42234000 -     0x7fff42284ff7  com.apple.AppleVAFramework (6.1.2 - 6.1.2) <8E18983B-AF92-3853-8251-A6577A55AC15> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff422cd000 -     0x7fff422dcff9  com.apple.AssertionServices (1.0 - 223.140.2) <48AD21CA-B81D-380E-A04F-90C48FDA5203> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff425bd000 -     0x7fff425f4d2f  com.apple.AttributeGraph (1.0 - 1) <1F91FC33-5931-3534-9D87-18A3AFA1EB42> /System/Library/PrivateFrameworks/AttributeGraph.framework/Versions/A/AttributeGraph
    0x7fff4281f000 -     0x7fff42c1aff8  com.apple.audio.AudioResourceArbitration (1.0 - 1) <2BD68521-C19C-3D67-B5EB-DE3E9A4DAF0A> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff42e70000 -     0x7fff430b0fe0  com.apple.audio.AudioToolboxCore (1.0 - 1104.93) <5B539F50-93E8-3F73-9E4C-678C85D0488F> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff430b4000 -     0x7fff431d0fff  com.apple.AuthKit (1.0 - 1) <DC1A27C5-0172-3C72-9B24-06996D0B6207> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff4338d000 -     0x7fff43396ff7  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <A6877DAD-8F47-363C-983A-DC8DDE83B7B5> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff43397000 -     0x7fff43438ff5  com.apple.backup.framework (1.11.6 - 1298.6.2) <C4BC12A3-4D01-377F-A1DB-7E1490831CF2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff43439000 -     0x7fff434c5ff6  com.apple.BaseBoard (466.3 - 466.3) <10D0F3BB-E8F3-365E-8528-6AC996A9B0E7> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff435c7000 -     0x7fff43603ff7  com.apple.bom (14.0 - 219.2) <79CBE5E7-054F-377B-9566-A86A9F120CF1> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff43721000 -     0x7fff43758ff5  com.apple.C2 (1.3 - 495) <4A7E2A63-E19A-3936-92F5-03F2FD602172> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2
    0x7fff44183000 -     0x7fff441d2fff  com.apple.ChunkingLibrary (307 - 307) <5B09C30D-FD2B-3E98-8B64-C5EF470FC13C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff4500f000 -     0x7fff4500ffff  com.apple.combinecocoa (1.0 - 134.102) <0C194876-9B2D-3F3D-AADC-2E31EEE9D307> /System/Library/PrivateFrameworks/CombineCocoa.framework/Versions/A/CombineCocoa
    0x7fff4507e000 -     0x7fff4508effb  com.apple.CommonAuth (4.0 - 2.0) <CF67FF34-4238-3ECA-B4A4-EA04F18A0D36> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff450a2000 -     0x7fff450b9fff  com.apple.commonutilities (8.0 - 900) <F4C97244-E5D8-3F7D-8D94-4B6841C5A4EC> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff457c0000 -     0x7fff45b95fc8  com.apple.CoreAUC (283.0.0 - 283.0.0) <4341271C-D270-3F9F-8464-31A20D15158D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff45b96000 -     0x7fff45bc3ff7  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <C3CFDC68-C7D9-3C44-9E7C-801D45575C10> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff45be6000 -     0x7fff45c07ff4  com.apple.analyticsd (1.0 - 1) <95A87174-A616-3F80-B17A-1FA7E3DB7C09> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff45f12000 -     0x7fff45f1dff7  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <BB7D67B1-2102-3D71-9BB6-AEB8C6A6EBB2> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff4619e000 -     0x7fff461aeff3  com.apple.CoreEmoji (1.0 - 107.1) <7C2B3259-083B-31B8-BCDB-1BA360529936> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff467ee000 -     0x7fff46858ff0  com.apple.CoreNLP (1.0 - 213) <E70E2505-8078-324E-BAE1-01A2DA980E2C> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff46c86000 -     0x7fff46c8eff8  com.apple.CorePhoneNumbers (1.0 - 1) <E4DAD514-0B3B-3E0B-8AEA-39B320FAAF03> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff4767b000 -     0x7fff4769efff  com.apple.CoreSVG (1.0 - 129.3) <F38189F9-C8F9-3D62-9D5F-3F520FB81724> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff4769f000 -     0x7fff476d2fff  com.apple.CoreServicesInternal (446.7 - 446.7) <65F53A22-6B61-382C-AAC2-B2C53F8FFB44> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff476d3000 -     0x7fff47701ffd  com.apple.CSStore (1069.24 - 1069.24) <C2D67667-FA0B-3DB6-AA34-6999EE4346A0> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff47c26000 -     0x7fff47cbcff7  com.apple.CoreSymbolication (11.4 - 64535.33.2) <0B3BF87A-7F95-3D79-B4F8-421D6FAC4A6C> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff47d54000 -     0x7fff47e80ff6  com.apple.coreui (2.1 - 609.4) <788818B7-7EBC-316D-9464-D12E365E3791> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff47e81000 -     0x7fff4803affa  com.apple.CoreUtils (6.2.4 - 624.7) <A74A1C65-6695-3F57-B703-0DEDE13E66C1> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff48174000 -     0x7fff48187ff1  com.apple.CrashReporterSupport (10.13 - 15016) <ADF138F0-0274-3BA2-A1D2-48B91577FE53> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff48240000 -     0x7fff48252ff8  com.apple.framework.DFRFoundation (1.0 - 252.50.1) <8162057E-E856-3451-9160-04AEDDECFFA4> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff48253000 -     0x7fff48258fff  com.apple.DSExternalDisplay (3.1 - 380) <31ECB5FD-7660-33DB-BC5B-2B2A2AA7C686> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff482e2000 -     0x7fff4835cff0  com.apple.datadetectorscore (8.0 - 659) <B1534796-1000-3520-A641-A97A4AC5D39B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff483a8000 -     0x7fff483e5ff8  com.apple.DebugSymbols (194 - 194) <040AE30B-CF2C-3798-A289-0929B8CAB10D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff483e6000 -     0x7fff4856eff6  com.apple.desktopservices (1.14.5 - 1281.5.3) <BFA7D5B5-20EE-38E3-B8A7-96CE1F9BB48A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff48a66000 -     0x7fff48a9bff7  com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <D3F76E01-2F9F-33E1-B5C9-CAC6E01724C2> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    0x7fff49f2f000 -     0x7fff4a34aff1  com.apple.vision.FaceCore (4.3.0 - 4.3.0) <5D32F65D-2CD7-3204-975C-F4C9256E505F> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff4a9e9000 -     0x7fff4ab20ff4  libFontParser.dylib (277.2.6.1) <9E9E2EAA-3273-360E-A01B-EB986ECB7BCF> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff4ab21000 -     0x7fff4ab55fff  libTrueTypeScaler.dylib (277.2.6.1) <F8A27F0F-44B3-3A1E-8B75-2DFD4A90E1D4> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
    0x7fff4abba000 -     0x7fff4abcaff6  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <1605B441-08E0-332D-B7D8-0E13F37B54E7> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff4e0ab000 -     0x7fff4e0acfff  libmetal_timestamp.dylib (902.14.11) <C29C7125-A894-3718-8E1D-249C53BCC0B8> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
    0x7fff4f766000 -     0x7fff4f76cfff  com.apple.GPUWrangler (5.2.6 - 5.2.6) <487F2E7A-A5FF-3C36-A8E9-B85D98618116> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff4fa8b000 -     0x7fff4fab1ff1  com.apple.GenerationalStorage (2.0 - 314) <54483E50-20BB-3AF8-900F-992320C109B0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff4faca000 -     0x7fff50ab3ff1  com.apple.GeoServices (1.0 - 1624.26.4.26.9) <F735575F-7DEF-3202-9151-589BEB162596> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff50bdf000 -     0x7fff50bedffb  com.apple.GraphVisualizer (1.0 - 100.1) <507D5812-9CB4-3C94-938C-59ED2B370818> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff50d8c000 -     0x7fff50e4aff4  com.apple.Heimdal (4.0 - 2.0) <B86FE9DB-71BB-3B6E-A4AE-2B0B44570A7F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff51847000 -     0x7fff51876ff8  com.apple.HelpData (2.3 - 199) <A62E7DB6-8960-3470-8281-293711C166D8> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff52fc6000 -     0x7fff52fcfffe  com.apple.IOAccelMemoryInfo (1.0 - 1) <50DDA9C2-BDDF-33D4-9BA9-A161E99F1EAD> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
    0x7fff52fd0000 -     0x7fff52fd8ff5  com.apple.IOAccelerator (438.7.3 - 438.7.3) <06E3E70B-C0D0-39A2-96B7-12ED6A0EBEE7> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff52fe5000 -     0x7fff52ffcfff  com.apple.IOPresentment (47.10 - 37) <32F1B3BC-4644-3982-AAB2-8EB5D5FF0161> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff53384000 -     0x7fff533cfff1  com.apple.IconServices (438.3 - 438.3) <0DADB4C3-46FF-3FDB-8A86-51E2067FC7F4> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff5358d000 -     0x7fff53594ff9  com.apple.InternationalSupport (1.0 - 45.4) <8D8D4A7D-FD35-36B8-A456-7C93030EDAB3> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff53821000 -     0x7fff53840ffd  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <6F655A32-F963-3A7E-B475-E460F4AC7D99> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff53975000 -     0x7fff53a43ffd  com.apple.LanguageModeling (1.0 - 215.1) <C456087D-5B3A-390E-A665-862FA284C59C> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff53a44000 -     0x7fff53a8cfff  com.apple.Lexicon-framework (1.0 - 72) <41F208B9-8255-3EC7-9673-FE0925D071D3> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff53a93000 -     0x7fff53a98ff3  com.apple.LinguisticData (1.0 - 353.18) <3B92F249-4602-325F-984B-D2DE61EEE4E1> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff53abf000 -     0x7fff53ae3ffe  com.apple.locationsupport (2394.0.22 - 2394.0.22) <CA6C86FD-051A-31BB-B3AF-3D02D6FD94B6> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport
    0x7fff54331000 -     0x7fff54334fff  com.apple.Mangrove (1.0 - 25) <482F300F-9B70-351F-A4DF-B440EEF7368D> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff5459d000 -     0x7fff54627ff8  com.apple.MediaExperience (1.0 - 1) <0203AF27-AB5E-32FA-B529-AB7F29EEB887> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff54e01000 -     0x7fff54e4dfff  com.apple.spotlight.metadata.utilities (1.0 - 2076.7) <0237323B-EC78-3FBF-9FC7-5A1FE2B5CE25> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff54e4e000 -     0x7fff54f1fffa  com.apple.gpusw.MetalTools (1.0 - 1) <99876E08-37D7-3828-8796-56D90C9AFBDB> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff54f7d000 -     0x7fff54f96ff4  com.apple.MobileAssets (1.0 - 619.120.1) <07E116E6-7EBC-39F2-B5B4-31BAB6BAF852> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff55195000 -     0x7fff551b3fff  com.apple.MobileKeyBag (2.0 - 1.0) <D5FA7041-297F-3ADC-8C7A-6EAAAB82EB68> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff55416000 -     0x7fff55446ff7  com.apple.MultitouchSupport.framework (3440.1 - 3440.1) <6794E1C8-9627-33DF-84F4-FDD02C97F383> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff55946000 -     0x7fff55950fff  com.apple.NetAuth (6.2 - 6.2) <B0C03C41-87A3-352B-B130-96E1A6F94B47> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff56366000 -     0x7fff563b1ffb  com.apple.OTSVG (1.0 - 643.1.5.1) <001E5E8C-1DC0-3A6E-BDE4-1B7887E47F76> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff575ce000 -     0x7fff575d9ff2  com.apple.PerformanceAnalysis (1.243.2 - 243.2) <B47C00E5-ECC2-313D-93D4-DBDF562C48EF> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff575da000 -     0x7fff57602ffb  com.apple.persistentconnection (1.0 - 1.0) <5B2D87A8-2641-3F6D-ACEA-96B00F85AAB5> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff59f67000 -     0x7fff59fc1ff6  com.apple.ProtectedCloudStorage (1.0 - 1) <6F271388-3817-336D-9B96-08C7AAC4BA39> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff59fc2000 -     0x7fff59fdbffb  com.apple.ProtocolBuffer (1 - 274.24.9.16.3) <5A020941-C43C-303E-8DE8-230FC6A84DBC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff5a43b000 -     0x7fff5a464ff1  com.apple.RemoteViewServices (2.0 - 148) <D3AAC2BE-3423-3F18-9654-E35F1DD8DDB3> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff5a47b000 -     0x7fff5a4d8ff9  com.apple.RenderBox (31 - 31) <DB4D89AA-0698-36DD-8861-B6BC333BF8B0> /System/Library/PrivateFrameworks/RenderBox.framework/Versions/A/RenderBox
    0x7fff5a5c9000 -     0x7fff5a604ff0  com.apple.RunningBoardServices (1.0 - 223.140.2) <96BB04BD-D6E0-3D70-8F36-89B46DA1DA30> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff5bee5000 -     0x7fff5bee8ff5  com.apple.SecCodeWrapper (4.0 - 448.100.6) <C4BF691D-A09E-37E8-A6CC-1145B79B8722> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff5c05b000 -     0x7fff5c182fff  com.apple.Sharing (1526.37 - 1526.37) <CBDA0ADD-F1E7-3B06-9118-C5E183F0D3D6> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff5c1db000 -     0x7fff5c1f9ff2  com.apple.shortcut (2.16 - 106) <9F669D19-13AD-3961-B247-ED728B7BFA19> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff5d597000 -     0x7fff5d88dff7  com.apple.SkyLight (1.600.0 - 451.4) <A24929C3-95E6-35A7-9654-46FF3F4D1E80> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff5e0da000 -     0x7fff5e0e8ffb  com.apple.SpeechRecognitionCore (6.0.91.2 - 6.0.91.2) <4D6CAC2A-151B-3BBE-BDB7-E2BE72128691> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff5e7c4000 -     0x7fff5e805ff9  com.apple.StreamingZip (1.0 - 1) <72CA32F8-4C96-3264-A655-623329EB3A28> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff5e91c000 -     0x7fff5e925ff7  com.apple.SymptomDiagnosticReporter (1.0 - 1238.120.1) <14929A5D-C369-3B46-844B-CD29A3D1A015> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff5ebdc000 -     0x7fff5ebecff3  com.apple.TCC (1.0 - 1) <017AB27D-6821-303A-8FD2-6DAC795CC7AA> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff5f111000 -     0x7fff5f1d7ff0  com.apple.TextureIO (3.10.9 - 3.10.9) <EEDAB753-329A-396A-8119-5BEDF7DB5A56> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff5f3a7000 -     0x7fff5f5ffff0  com.apple.UIFoundation (1.0 - 662) <EC55B9E5-7E62-380A-9AB1-FC7BEF663653> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff60275000 -     0x7fff60295ffc  com.apple.UserManagement (1.0 - 1) <9F00880E-6EA6-3684-B208-455E14EC07C8> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff61041000 -     0x7fff6112bff8  com.apple.ViewBridge (464.1 - 464.1) <25CE39DF-2052-3873-9113-DB52B385C4BB> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff612d1000 -     0x7fff612d2fff  com.apple.WatchdogClient.framework (1.0 - 67.120.2) <FFA17DA1-F6DD-34D3-A708-1F73C8BA7EA7> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff61f02000 -     0x7fff61f05ffa  com.apple.dt.XCTTargetBootstrap (1.0 - 16091) <D459D628-58C5-39A6-B7E8-B691CBEECEC1> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff61f7f000 -     0x7fff61f8dff5  com.apple.audio.caulk (1.0 - 32.3) <06D695EA-E2BC-31E4-9816-9C12542BA744> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff622cf000 -     0x7fff622d1ff3  com.apple.loginsupport (1.0 - 1) <12F77885-27DC-3837-9CE9-A25EBA75F833> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff622d2000 -     0x7fff622e5ffd  com.apple.login (3.0 - 3.0) <C68367BA-2225-31DD-B2D8-16AC0A44421F> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff64db5000 -     0x7fff64de8ffa  libAudioToolboxUtility.dylib (1104.93) <A7249C4C-6C0A-3C14-BA27-DC966F6CC6A0> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff64def000 -     0x7fff64e23fff  libCRFSuite.dylib (48) <5E5DE3CB-30DD-34DC-AEF8-FE8536A85E96> /usr/lib/libCRFSuite.dylib
    0x7fff64e26000 -     0x7fff64e30fff  libChineseTokenizer.dylib (34) <7F0DA183-1796-315A-B44A-2C234C7C50BE> /usr/lib/libChineseTokenizer.dylib
    0x7fff64ebc000 -     0x7fff64ebeff7  libDiagnosticMessagesClient.dylib (112) <C94F3B7B-1854-38EB-9778-834501C53B3F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff64f04000 -     0x7fff650bbffb  libFosl_dynamic.dylib (100.4) <737573B2-190A-3BA1-8220-807AD0A2CE5E> /usr/lib/libFosl_dynamic.dylib
    0x7fff650e2000 -     0x7fff650e8ff3  libIOReport.dylib (54) <75D177C4-BAD7-3285-B8E1-3019F49B3178> /usr/lib/libIOReport.dylib
    0x7fff651ca000 -     0x7fff651d1fff  libMatch.1.dylib (36) <5C6F3971-9D9E-3630-BDB6-60BFC5A665E0> /usr/lib/libMatch.1.dylib
    0x7fff65200000 -     0x7fff65220ff7  libMobileGestalt.dylib (826.140.5) <2BE94E6A-FA61-312F-84A1-F764D71B7E39> /usr/lib/libMobileGestalt.dylib
    0x7fff65392000 -     0x7fff65393fff  libSystem.B.dylib (1281.100.1) <0A6C8BA1-30FD-3D10-83FD-FF29E221AFFE> /usr/lib/libSystem.B.dylib
    0x7fff65420000 -     0x7fff65421fff  libThaiTokenizer.dylib (3) <4F4ADE99-0D09-3223-B7C0-C407AB6DE8DC> /usr/lib/libThaiTokenizer.dylib
    0x7fff65439000 -     0x7fff6544ffff  libapple_nghttp2.dylib (1.39.2) <07FEC48A-87CF-32A3-8194-FA70B361713A> /usr/lib/libapple_nghttp2.dylib
    0x7fff65484000 -     0x7fff654f6ff7  libarchive.2.dylib (72.140.1) <AC311FBA-F2DD-3595-AA76-769F912942B8> /usr/lib/libarchive.2.dylib
    0x7fff654f7000 -     0x7fff65590fe5  libate.dylib (3.0.1) <76EA60FB-748C-313F-8951-B076540BEA97> /usr/lib/libate.dylib
    0x7fff65594000 -     0x7fff65594ff3  libauto.dylib (187) <B6124448-7690-34AE-8939-ED84AAC630CE> /usr/lib/libauto.dylib
    0x7fff6565a000 -     0x7fff6566affb  libbsm.0.dylib (60.100.1) <00BFFB9A-2FFE-3C24-896A-251BC61917FD> /usr/lib/libbsm.0.dylib
    0x7fff6566b000 -     0x7fff65677fff  libbz2.1.0.dylib (44) <14CC4988-B6D4-3879-AFC2-9A0DDC6388DE> /usr/lib/libbz2.1.0.dylib
    0x7fff65678000 -     0x7fff656cafff  libc++.1.dylib (902.1) <59A8239F-C28A-3B59-B8FA-11340DC85EDC> /usr/lib/libc++.1.dylib
    0x7fff656cb000 -     0x7fff656e0ffb  libc++abi.dylib (902) <E692F14F-C65E-303B-9921-BB7E97D77855> /usr/lib/libc++abi.dylib
    0x7fff656e1000 -     0x7fff656e1fff  libcharset.1.dylib (59) <72447768-9244-39AB-8E79-2FA14EC0AD33> /usr/lib/libcharset.1.dylib
    0x7fff656e2000 -     0x7fff656f3fff  libcmph.dylib (8) <E72A20DB-2E86-378D-A237-EB9A1370F989> /usr/lib/libcmph.dylib
    0x7fff656f4000 -     0x7fff6570bfd7  libcompression.dylib (87) <64C91066-586D-38C0-A2F3-3E60A940F859> /usr/lib/libcompression.dylib
    0x7fff659e5000 -     0x7fff659fbff7  libcoretls.dylib (167) <770A5B96-936E-34E3-B006-B1CEC299B5A5> /usr/lib/libcoretls.dylib
    0x7fff659fc000 -     0x7fff659fdfff  libcoretls_cfhelpers.dylib (167) <940BF370-FD0C-30A8-AA05-FF48DA44FA4C> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff65fba000 -     0x7fff66019ff7  libcups.2.dylib (483.6) <C88D78FE-D238-376C-B16A-39270E39A79D> /usr/lib/libcups.2.dylib
    0x7fff66123000 -     0x7fff66123fff  libenergytrace.dylib (21) <162DFCC0-8F48-3DD0-914F-FA8653E27B26> /usr/lib/libenergytrace.dylib
    0x7fff66124000 -     0x7fff6613cfff  libexpat.1.dylib (19.60.2) <FED7C38B-92D8-342D-AED7-871B12D1F7E7> /usr/lib/libexpat.1.dylib
    0x7fff6614a000 -     0x7fff6614cfff  libfakelink.dylib (149.1) <36146CB2-E6A5-37BB-9EE8-1B4034D8F3AD> /usr/lib/libfakelink.dylib
    0x7fff6615b000 -     0x7fff66160fff  libgermantok.dylib (24) <D2AE5AC0-EDCE-3216-B8C9-CF59292A545F> /usr/lib/libgermantok.dylib
    0x7fff66161000 -     0x7fff6616aff7  libheimdal-asn1.dylib (564.140.1) <0AC6FB62-2B0F-3E93-A931-E4DC4B1D757A> /usr/lib/libheimdal-asn1.dylib
    0x7fff6616b000 -     0x7fff6625bfff  libiconv.2.dylib (59) <18311A67-E4EF-3CC7-95B3-C0EDEE3A282F> /usr/lib/libiconv.2.dylib
    0x7fff6625c000 -     0x7fff664b3fff  libicucore.A.dylib (64260.0.1) <8AC2CB07-E7E0-340D-A849-186FA1F27251> /usr/lib/libicucore.A.dylib
    0x7fff664cd000 -     0x7fff664cefff  liblangid.dylib (133) <30CFC08C-EF36-3CF5-8AEA-C1CB070306B7> /usr/lib/liblangid.dylib
    0x7fff664cf000 -     0x7fff664e7ff3  liblzma.5.dylib (16) <C131EF18-2CDD-3271-8A30-A8760D4FE166> /usr/lib/liblzma.5.dylib
    0x7fff664ff000 -     0x7fff665a6ff7  libmecab.dylib (883.11) <0D5BFD01-D4A7-3C8D-AA69-C329C1A69792> /usr/lib/libmecab.dylib
    0x7fff665a7000 -     0x7fff66809ff1  libmecabra.dylib (883.11) <E31DE74D-1B88-377F-ACD3-D789D29C3AE7> /usr/lib/libmecabra.dylib
    0x7fff66b76000 -     0x7fff66ba5fff  libncurses.5.4.dylib (57) <995DFEEA-40F3-377F-B73D-D02AC59D591F> /usr/lib/libncurses.5.4.dylib
    0x7fff66cd5000 -     0x7fff67151ff5  libnetwork.dylib (1880.120.4) <BA294A54-F309-398D-B308-F97032AFF555> /usr/lib/libnetwork.dylib
    0x7fff67152000 -     0x7fff67169fff  libnetworkextension.dylib (1095.140.2) <D0E8454C-33A9-3F96-B3A0-EDB12C32283A> /usr/lib/libnetworkextension.dylib
    0x7fff671f2000 -     0x7fff67225fde  libobjc.A.dylib (787.1) <6DF81160-5E7F-3E31-AA1E-C875E3B98AF6> /usr/lib/libobjc.A.dylib
    0x7fff67238000 -     0x7fff6723cfff  libpam.2.dylib (25.100.1) <0502F395-8EE6-3D2A-9239-06FD5622E19E> /usr/lib/libpam.2.dylib
    0x7fff6723f000 -     0x7fff67275ff7  libpcap.A.dylib (89.120.1) <A76EC076-A8EA-354C-B95F-7AB1EAFBCC65> /usr/lib/libpcap.A.dylib
    0x7fff672f9000 -     0x7fff67311fff  libresolv.9.dylib (67.40.1) <C57EDFEF-D36A-310B-8D14-8C68A625B1E8> /usr/lib/libresolv.9.dylib
    0x7fff67313000 -     0x7fff67357ff7  libsandbox.1.dylib (1217.141.2) <E8BA5E84-66AF-3995-8F8E-DDC93B0A88E1> /usr/lib/libsandbox.1.dylib
    0x7fff6736b000 -     0x7fff6736cff7  libspindump.dylib (281.3) <AE8C1AE9-5CBC-332F-BBE8-370A2A19FED6> /usr/lib/libspindump.dylib
    0x7fff6736d000 -     0x7fff67557ff7  libsqlite3.dylib (308.5) <35A2BD9F-4E33-30DE-A994-4AB585AC3AFE> /usr/lib/libsqlite3.dylib
    0x7fff677a8000 -     0x7fff677abffb  libutil.dylib (57) <F01467F6-23A7-37EE-A170-33CE1577B41D> /usr/lib/libutil.dylib
    0x7fff677ac000 -     0x7fff677b9ff7  libxar.1.dylib (425.2) <EE964412-9E25-30B3-BCC0-CCEFBCC8094B> /usr/lib/libxar.1.dylib
    0x7fff677bf000 -     0x7fff678a1fff  libxml2.2.dylib (33.5) <A579D158-2E09-316C-872E-DD9D93401B2F> /usr/lib/libxml2.2.dylib
    0x7fff678a5000 -     0x7fff678cdfff  libxslt.1.dylib (16.9) <34A45627-DA5B-37D2-9609-65B425E0010A> /usr/lib/libxslt.1.dylib
    0x7fff678ce000 -     0x7fff678e0ff3  libz.1.dylib (76) <793D9643-CD83-3AAC-8B96-88D548FAB620> /usr/lib/libz.1.dylib
    0x7fff6795c000 -     0x7fff67996ff7  libswiftAccelerate.dylib (??? - ???) <731E4BD2-B8E2-397C-A56D-747E8E4B81D9> /usr/lib/swift/libswiftAccelerate.dylib
    0x7fff67997000 -     0x7fff679ad72f  libswiftAppKit.dylib (??? - ???) <18802260-9EFC-3E31-B9EA-7767A8B6AB52> /usr/lib/swift/libswiftAppKit.dylib
    0x7fff679b7000 -     0x7fff679c66f7  libswiftCloudKit.dylib (??? - ???) <18B281D8-E7D8-3997-9B6C-5D2C5F7EDEAB> /usr/lib/swift/libswiftCloudKit.dylib
    0x7fff679d7000 -     0x7fff67d8c437  libswiftCore.dylib (5.2 - 1103.8.25.8) <E56CCFCA-99E1-36E5-A6BC-F31F53C79910> /usr/lib/swift/libswiftCore.dylib
    0x7fff67d99000 -     0x7fff67da1d7f  libswiftCoreData.dylib (??? - ???) <5188E034-FC7D-3C6B-A42A-69375097E05B> /usr/lib/swift/libswiftCoreData.dylib
    0x7fff67da2000 -     0x7fff67da4fff  libswiftCoreFoundation.dylib (??? - ???) <FBA4566B-AD2B-35D7-BC9A-48BE3D88B658> /usr/lib/swift/libswiftCoreFoundation.dylib
    0x7fff67da5000 -     0x7fff67db2fff  libswiftCoreGraphics.dylib (??? - ???) <A8225B5F-F64D-32F8-AD91-D919DF614AA0> /usr/lib/swift/libswiftCoreGraphics.dylib
    0x7fff67db3000 -     0x7fff67db6ffb  libswiftCoreImage.dylib (??? - ???) <1485E8EF-EDA9-3981-84D7-DF3BFE361929> /usr/lib/swift/libswiftCoreImage.dylib
    0x7fff67db7000 -     0x7fff67dbcfb7  libswiftCoreLocation.dylib (??? - ???) <3732D3F0-9586-372E-82B0-2C76F401B793> /usr/lib/swift/libswiftCoreLocation.dylib
    0x7fff67e11000 -     0x7fff67e17fff  libswiftDarwin.dylib (??? - ???) <F3684684-8258-310F-B05B-BD8A696F0F29> /usr/lib/swift/libswiftDarwin.dylib
    0x7fff67e18000 -     0x7fff67e2fcdf  libswiftDispatch.dylib (??? - ???) <94D67EF4-42B5-3F54-8D86-B6B2B16827DC> /usr/lib/swift/libswiftDispatch.dylib
    0x7fff67e30000 -     0x7fff67fb5277  libswiftFoundation.dylib (??? - ???) <0173898D-FDA6-378D-87E9-1F2A9BD227D3> /usr/lib/swift/libswiftFoundation.dylib
    0x7fff67fc4000 -     0x7fff67fc6ff3  libswiftIOKit.dylib (??? - ???) <FD313708-AE48-3C72-A154-53EC839A8D55> /usr/lib/swift/libswiftIOKit.dylib
    0x7fff67fdc000 -     0x7fff67fe3f0f  libswiftMetal.dylib (??? - ???) <B3C74138-DE3C-3676-9983-F12757819C9C> /usr/lib/swift/libswiftMetal.dylib
    0x7fff6805f000 -     0x7fff68062fe7  libswiftObjectiveC.dylib (??? - ???) <E668BD5D-E1D6-3C21-BA7E-5C3A672A964E> /usr/lib/swift/libswiftObjectiveC.dylib
    0x7fff68074000 -     0x7fff68079fbf  libswiftQuartzCore.dylib (??? - ???) <101D3E4D-231A-3CD8-97B4-4E37F4081CD2> /usr/lib/swift/libswiftQuartzCore.dylib
    0x7fff68163000 -     0x7fff68165fff  libswiftXPC.dylib (??? - ???) <3CD547C3-7082-37EA-B289-F6BA6C4D4E26> /usr/lib/swift/libswiftXPC.dylib
    0x7fff68166000 -     0x7fff6816cfe7  libswiftos.dylib (??? - ???) <BC78F369-90A3-33FF-AEA9-F9CA5F0A07ED> /usr/lib/swift/libswiftos.dylib
    0x7fff6816d000 -     0x7fff6818efff  libswiftsimd.dylib (??? - ???) <21EEA85D-EBBF-378C-8803-DCD904B93B68> /usr/lib/swift/libswiftsimd.dylib
    0x7fff6818f000 -     0x7fff68194ff3  libcache.dylib (83) <AF488D13-9E89-35E0-B078-BE37CC5B8586> /usr/lib/system/libcache.dylib
    0x7fff68195000 -     0x7fff681a0fff  libcommonCrypto.dylib (60165.120.1) <C7912BE5-993E-3581-B2A0-6AABDC8C5562> /usr/lib/system/libcommonCrypto.dylib
    0x7fff681a1000 -     0x7fff681a8fff  libcompiler_rt.dylib (101.2) <49B8F644-5705-3F16-BBE0-6FFF9B17C36E> /usr/lib/system/libcompiler_rt.dylib
    0x7fff681a9000 -     0x7fff681b2ff7  libcopyfile.dylib (166.40.1) <3C481225-21E7-370A-A30E-0CCFDD64A92C> /usr/lib/system/libcopyfile.dylib
    0x7fff681b3000 -     0x7fff68245fdb  libcorecrypto.dylib (866.140.1) <60567BF8-80FA-359A-B2F3-A3BAEFB288FD> /usr/lib/system/libcorecrypto.dylib
    0x7fff68352000 -     0x7fff68392ff0  libdispatch.dylib (1173.100.2) <CD9C059C-91D9-30E8-8926-5B9CD0D5D4F5> /usr/lib/system/libdispatch.dylib
    0x7fff68393000 -     0x7fff683c9fff  libdyld.dylib (750.6) <789A18C2-8AC7-3C88-813D-CD674376585D> /usr/lib/system/libdyld.dylib
    0x7fff683ca000 -     0x7fff683caffb  libkeymgr.dylib (30) <DB3337BE-01CA-3425-BD0C-87774FC0CDC0> /usr/lib/system/libkeymgr.dylib
    0x7fff683cb000 -     0x7fff683d7ff3  libkxld.dylib (6153.141.2.2) <30AACC57-2314-3863-94B2-64AB3E002B35> /usr/lib/system/libkxld.dylib
    0x7fff683d8000 -     0x7fff683d8ff7  liblaunch.dylib (1738.140.1) <AFBCBDD3-0B55-3ECD-8E04-A73A3A57356B> /usr/lib/system/liblaunch.dylib
    0x7fff683d9000 -     0x7fff683deff7  libmacho.dylib (959.0.1) <AA613A9C-961A-3B67-B696-4622FA59FC4E> /usr/lib/system/libmacho.dylib
    0x7fff683df000 -     0x7fff683e1ff3  libquarantine.dylib (110.40.3) <F234E51D-FD0B-3EE4-B679-AE3EE9C536C3> /usr/lib/system/libquarantine.dylib
    0x7fff683e2000 -     0x7fff683e3ff7  libremovefile.dylib (48) <7C7EFC79-BD24-33EF-B073-06AED234593E> /usr/lib/system/libremovefile.dylib
    0x7fff683e4000 -     0x7fff683fbff3  libsystem_asl.dylib (377.60.2) <1563EE02-0657-3B78-99BE-A947C24122EF> /usr/lib/system/libsystem_asl.dylib
    0x7fff683fc000 -     0x7fff683fcff7  libsystem_blocks.dylib (74) <0D53847E-AF5F-3ACF-B51F-A15DEA4DEC58> /usr/lib/system/libsystem_blocks.dylib
    0x7fff683fd000 -     0x7fff68484fff  libsystem_c.dylib (1353.100.2) <BBDED5E6-A646-3EED-B33A-91E4331EA063> /usr/lib/system/libsystem_c.dylib
    0x7fff68485000 -     0x7fff68488ffb  libsystem_configuration.dylib (1061.141.1) <0EE84C33-64FD-372B-974A-AF7A136F2068> /usr/lib/system/libsystem_configuration.dylib
    0x7fff68489000 -     0x7fff6848cfff  libsystem_coreservices.dylib (114) <A199156E-058D-3ABB-BCE9-4B9F20DCED0F> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff6848d000 -     0x7fff68495fff  libsystem_darwin.dylib (1353.100.2) <5B12B5DB-3F30-37C1-8ECC-49A66B1F2864> /usr/lib/system/libsystem_darwin.dylib
    0x7fff68496000 -     0x7fff6849dfff  libsystem_dnssd.dylib (1096.100.3) <EBB4C2C2-E031-3094-B40A-E67BF261D295> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff6849e000 -     0x7fff6849fffb  libsystem_featureflags.dylib (17) <29FD922A-EC2C-3F25-BCCC-B58D716E60EC> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff684a0000 -     0x7fff684edff7  libsystem_info.dylib (538) <8A321605-5480-330B-AF9E-64E65DE61747> /usr/lib/system/libsystem_info.dylib
    0x7fff684ee000 -     0x7fff6851aff7  libsystem_kernel.dylib (6153.141.2.2) <5CDBBC06-6CA6-3432-9FDA-681047866F3E> /usr/lib/system/libsystem_kernel.dylib
    0x7fff6851b000 -     0x7fff68562fff  libsystem_m.dylib (3178) <00F331F1-0D09-39B3-8736-1FE90E64E903> /usr/lib/system/libsystem_m.dylib
    0x7fff68563000 -     0x7fff6858afff  libsystem_malloc.dylib (283.100.6) <8549294E-4C53-36EB-99F3-584A7393D8D5> /usr/lib/system/libsystem_malloc.dylib
    0x7fff6858b000 -     0x7fff68598ffb  libsystem_networkextension.dylib (1095.140.2) <F06C65C5-2CBE-313C-96E1-A09240F9FE57> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff68599000 -     0x7fff685a2ff7  libsystem_notify.dylib (241.100.2) <FA22F928-D91B-3AA5-96BB-3186AC0FB264> /usr/lib/system/libsystem_notify.dylib
    0x7fff685a3000 -     0x7fff685abfef  libsystem_platform.dylib (220.100.1) <009A7C1F-313A-318E-B9F2-30F4C06FEA5C> /usr/lib/system/libsystem_platform.dylib
    0x7fff685ac000 -     0x7fff685b6fff  libsystem_pthread.dylib (416.100.3) <62CB1A98-0B8F-31E7-A02B-A1139927F61D> /usr/lib/system/libsystem_pthread.dylib
    0x7fff685b7000 -     0x7fff685bbff3  libsystem_sandbox.dylib (1217.141.2) <051C4018-4345-3034-AC98-6DE42FB8273B> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff685bc000 -     0x7fff685befff  libsystem_secinit.dylib (62.100.2) <F80872AA-E1FD-3D7E-8729-467656EC6561> /usr/lib/system/libsystem_secinit.dylib
    0x7fff685bf000 -     0x7fff685c6ffb  libsystem_symptoms.dylib (1238.120.1) <5820A2AF-CE72-3AB3-ABCC-273A3419FB55> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff685c7000 -     0x7fff685ddff2  libsystem_trace.dylib (1147.120) <04B47629-847B-3D74-8ABE-C05EF9DEEFE4> /usr/lib/system/libsystem_trace.dylib
    0x7fff685df000 -     0x7fff685e4ff7  libunwind.dylib (35.4) <42B7B509-BAFE-365B-893A-72414C92F5BF> /usr/lib/system/libunwind.dylib
    0x7fff685e5000 -     0x7fff6861affe  libxpc.dylib (1738.140.1) <3E243A41-030F-38E3-9FD2-7B38C66C35B1> /usr/lib/system/libxpc.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 3638982
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=615.3M resident=0K(0%) swapped_out_or_unallocated=615.3M(100%)
Writable regions: Total=1.5G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.5G(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               128K        1 
Activity Tracing                   256K        1 
CG image                             8K        2 
CoreAnimation                       72K        3 
CoreGraphics                         8K        1 
CoreImage                            4K        1 
CoreUI image data                  380K        3 
Foundation                           4K        1 
Image IO                             8K        1 
Kernel Alloc Once                    8K        1 
MALLOC                           301.3M       69 
MALLOC guard page                   48K       10 
MALLOC_MEDIUM (reserved)         840.0M        7         reserved VM address space (unallocated)
MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)
STACK GUARD                       56.0M        8 
Stack                             11.6M        8 
VM_ALLOCATE                        100K       11 
__DATA                            29.7M      321 
__DATA_CONST                       698K       24 
__DATA_DIRTY                        128        1 
__FONT_DATA                          4K        1 
__LINKEDIT                       389.0M        6 
__OBJC_RO                         32.3M        1 
__OBJC_RW                         1908K        2 
__TEXT                           226.3M      323 
__UNICODE                          564K        1 
mapped file                      263.1M       21 
shared memory                     1148K       14 
===========                     =======  ======= 
TOTAL                              2.5G      844 
TOTAL, minus reserved VM space     1.3G      844 

Model: MacBookPro15,1, BootROM 1037.147.4.0.0 (iBridge: 17.16.16610.0.0,0), 6 processors, 6-Core Intel Core i9, 2,9 GHz, 32 GB, SMC 
Graphics: kHW_IntelUHDGraphics630Item, Intel UHD Graphics 630, spdisplays_builtin
Graphics: kHW_AMDRadeonPro560XItem, Radeon Pro 560X, spdisplays_pcie_device, 4 GB
Memory Module: BANK 0/ChannelA-DIMM0, 16 GB, DDR4, 2400 MHz, Micron, 16ATS2G64HZ-2G6B1
Memory Module: BANK 2/ChannelB-DIMM0, 16 GB, DDR4, 2400 MHz, Micron, 16ATS2G64HZ-2G6B1
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Feb 28 2020 15:24:56 version 9.30.357.35.32.5.47 FWID 01-9ce4adf3
Bluetooth: Version 7.0.6f7, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.1 Bus
USB Device: Apple T2 Bus
USB Device: Touch Bar Backlight
USB Device: Touch Bar Display
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: Ambient Light Sensor
USB Device: FaceTime HD Camera (Built-in)
USB Device: Apple T2 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 47.4
Thunderbolt Bus: MacBook Pro, Apple Inc., 47.4

Refreshing repository data lasts forever ...

Using SwiftBar 1.0.2 (latest).
When I select the menu item Get Plugins ... , the 'Plugin Repository' window is displayed and the message 'Refeshing repository data' within.
However, any plugins are not displayed. The window remains empty ...
(This also happened to me with the previous versions of SwiftBar).

Greetings
Tom

Separate color options for dark/light text conditions

Keying off of a comment I made in #46

In Mojave and Catalina there's Dark Mode, and Big Sur increases complexity by adding a dynamically changing menu bar that can have white or black items. Leaving all color declarations off of what's displayed in the menu bar seems to lead things to do the right thing, at least in Big Sur. (On BitBar I used to have to use AppleScript to detect dark mode and then do the right thing.)

What might be nice is the ability to set text/symbol colors based on that status, perhaps by optionally allowing colors to be passed in a pair, with a color for a dark-text context and a color for a light-text context? I have one widget that shows different colored text based on air-quality status, and obviously certain colors only work with the right colored background.

Maybe something like:

color=#ffffff,#000000

In the meantime I'm just ripping color out of my menu bar items... fans of monochrome menu bars, cheer!

Swiftbar freezes on install

Hi,

I tried installing Swiftbar last night via hombrew.

After it installed I opened it, and it prompted me to select a folder. Out of habit, I thought that it wanted me to select a folder to install to, and I chose ~/Applications.

SwiftBar then disappeared, and my fans started spinning up. This also caused several commands in my terminal to be unresponsive, see attached.

I opened Activity Monitor, and killed Swiftbar, only to see that there were what looked like hundreds if not thousands of bash processes started, and one that said it was taking up 11 billion percent CPU.

I tried killing these processes to no avail in the terminal, as many terminal commands were now broken, yielding the below output:

spaceship_exec_time_preexec_hook:2: fork failed: resource temporarily unavailable
zsh: fork failed: resource temporarily unavailable
precmd:1: fork failed: resource temporarily unavailable

To kill these processes, I had to restart my machine.

Screen Shot 2020-11-26 at 1 27 19 AM

Screen Shot 2020-11-26 at 1 27 09 AM

Device:
15" 2018 MBP
2.6GHz 6 Core i7
16GB Ram

Installation via brew not working?

I'm on Catalina, 10.15.7, on an iMac Pro.

I attempted installation via brew and got the following error:

Error: It seems the App source '/usr/local/Caskroom/swiftbar/v1.0.0/SwifBar.app' is not there.

Checking /usr/local/Caskroom/, the swiftbar directory is not there.

Apologies if this is user error on my part, but I've never had this sort of issue with brew before.

Full output below:

casey@imacpro ~> brew tap melonamin/formulae
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 5 taps (heroku/brew, homebrew/core, homebrew/cask, homebrew/bundle and homebrew/cask-fonts).
==> New Formulae
bpytop          gopls           libbsd          libtirpc        v2ray
evernote2md     kubecm          librttopo       utf8cpp         xinput
==> Updated Formulae
Updated 1118 formulae.
==> Deleted Formulae
rmtrash             stlviewer           unp64               xspin
==> New Casks
7777                       font-makinas4              font-waptia
abyssoft-teleport          font-pigmo00               iconset
avast-secure-browser       font-pigmo01               pixelorama
bigsur-cache-cleaner       font-ronde                 yuna
dockmate                   font-togalite
font-chomsky               font-tt2020
==> Updated Casks
/* Deleted for brevity */
==> Deleted Casks
catalina-cache-cleaner     font-baloo-da              font-mr-bedford
djay-pro                   font-baloo-paaji           font-siamreap
font-baloo-bhai            font-baloo-tamma           font-terminal-dosis
font-baloo-bhaijaan        font-baloo-tammudu         font-terminal-dosis-light
font-baloo-bhaina          font-baloo-thambi
font-baloo-chettan         font-miss-saint-delafield

==> Tapping melonamin/formulae
Cloning into '/usr/local/Homebrew/Library/Taps/melonamin/homebrew-formulae'...
remote: Enumerating objects: 74, done.
remote: Counting objects: 100% (74/74), done.
remote: Compressing objects: 100% (58/58), done.
remote: Total 74 (delta 17), reused 34 (delta 6), pack-reused 0
Unpacking objects: 100% (74/74), done.
Tapped 2 casks and 1 formula (102 files, 50.0KB).
casey@imacpro ~> brew cask install swiftbar
==> Downloading https://github.com/swiftbar/SwiftBar/releases/download/v1.0.0/Sw
==> Downloading from https://github-production-release-asset-2e65be.s3.amazonaws
######################################################################## 100.0%
==> Verifying SHA-256 checksum for Cask 'swiftbar'.
==> Installing Cask swiftbar
==> Purging files for version v1.0.0 of Cask swiftbar
Error: It seems the App source '/usr/local/Caskroom/swiftbar/v1.0.0/SwifBar.app' is not there.

Consider hiding scripts that exit successfully or other mechanism to hide items based on script output

As noted in the README plugins that "fail to run" show a ⚠️ icon.

However, with BitBar I used to exit my script successfully with no output to hide the item when its display wasn't necessary (so the icon only shows when there is something to notify the user of).

With SwiftBar that returns the ⚠️. I'd prefer if that only happened for scripts that exited unsuccessfully to allow the previous BitBar behaviour.

However, if the ⚠️ behaviour is desired, perhaps there could be a new parameter such as hidden to allow a script to signal that it doesn't want it's output shown in the menu bar?

General bug: default menu font size is too small

I have noticed this in all of my plugins, but I'm using a simple one as an example.

The menu font size (not in the menu bar itself, but in the menu incl. submenus) is smaller than the default size, ca. 1 or 2 points smaller. See screenshot and the script used below.

snap

#!/bin/zsh

# <bitbar.title>Thing Ping</bitbar.title>
# <bitbar.version>v1.3</bitbar.version>
# <bitbar.author>Joss Brown</bitbar.author>
# <bitbar.author.github>JayBrown</bitbar.author.github>
# <bitbar.desc>Runs a ping to determine network latency</bitbar.desc>
# <bitbar.image>undef</bitbar.image>

# Thing Ping BitBar plugin
# https://github.com/matryer/bitbar

version="1.3"

allfontfamilies=$(osascript 2>/dev/null << EOF
use framework "AppKit"
set fontFamilyNames to (current application's NSFontManager's sharedFontManager's availableFontFamilies) as list
return fontFamilyNames
EOF
)
if echo "$allfontfamilies" | grep -q "SF Mono" &>/dev/null ; then
	menufont="font=SFMono-Regular size=11"
else
	menufont="font=Menlo-Regular size=11"
fi

millisecs=$(ping -c 2 -n -q 1.1.1.1 2>/dev/null | tail -n 1 | awk -F/ '{print $5}')
secs=$(echo "scale=3 ; x=${millisecs}/1000 ; if(x<1) print 0 ; x" | bc 2>/dev/null)

if ! [[ $secs ]] ; then
	if [[ $(route get 0.0.0.0 2>&1) == "route: writing to routing socket: not in table" ]] ; then
		echo "route | color=red $menufont dropdown=false"
	else
		echo "-.--- | color=red $menufont dropdown=false"
	fi
else
	if (( $(bc <<< "$secs < 0.100") )) ; then
		echo "$secs | $menufont dropdown=false"
	else
		if (( $(bc <<< "$secs < 1") )) ; then
			echo "$secs | color=blue $menufont dropdown=false"
		else
			echo "$secs | color=red $menufont dropdown=false"
		fi
	fi
fi

echo "---"

echo "Thing Ping"
echo "v$version | alternate=true"

echo "---"

scriptpath="$0"

echo "Open in Editor… | terminal=false bash=/usr/bin/open param1=\"$scriptpath\""

exit

PLUGIN_PATH env variable needed for compiled plugins

Hi,

First of all thank you very much for creating this, maintaining this and most importantly maintaining basic compatibility with bitbar.

I am trying to create plugins using scala/java or other compiled languages.

Since these are not shell scripts, I don't get access to $0 argument and so I cant invoke the plugin file from menu.

A solution I can think of is - swiftbar provides PLUGIN_PATH env variable.

PS: I recently created https://github.com/bilal-fazlani/bitbar4s and I am really glad same plugins can be re-used in swiftbar as well.

Feature request: display secondary templateImage (accessImage) in the menu bar when user accesses a plug-in's menu (without refresh)

I also posted this in the BitBar issues section here: matryer/xbar#573

Is it possible to make SwiftBar supply the option to change the menu bar icon, when the user clicks on it?

Reason (example): if a plugin has updated info after an auto-refresh, it would display an extended icon, e.g. colored red, and when the user clicks on it, the icon should change back to its default state, e.g. colored black, because user interaction means that he noticed there are changes, and has accessed the plug-in to view the changes, and then there is no need anymore to display this "notification icon".

For this to work, there mustn't be any plug-in refresh action on user interaction, only an icon change. So I guess that this "on-click" icon change needs to be implemented in SwiftBar's code, and available via SwiftBar argument, e.g.

echo "| templateImage=$icon1 accessImage=$icon2 dropdown=false"
echo "---"
echo "foo"

Obviously, this would not be available when running the plug-in in BitBar.

Support SF Symbols in the same way as emojize

I really like the look of SF Symbols compared to emoji. I would like to add them to my plugin the same way you do using the emojize feature. It's possible to paste the SF Symbol into your output script, but this only works if you have the SF Symbols app installed and not all editors can display them.

Proposal:
Add support for SF Symbols using a similar mechanism to emojize=true

Possible solution:
Add an SF symbol to plugin output by using its system name as a token, eg. :square.and.arrow.up:.
App would replace occurrences of these tokens with an SF Symbol if symbolize=true

Bug (Catalina): (1) separator not showing in submenu ; (2) "ghost submenu"

When you add a separator in a submenu, e.g. with ----- (5 dashes = 2 dashes for the 1st submenu + 3 dashes for the separator), it is not printed on Catalina. In the case below, the separator should be between "google.com" and "Add Server".

snap

Moreover, if you use the alternate=true option on a submenu item, it actually turns it into a second submenu ("ghost submenu") and prints a single dash ("-"), so there seems to be something wrong with dash parsing somewhere.

snap

The portion of the script is:

echo "Ping Servers"
if [[ $allservers ]] ; then
	while read -r server
	do
		if [[ $server != "$current_server" ]] ; then
			echo "--$server"
			if [[ $server != "$default_server" ]] ; then
				echo "--Remove $server | alternate=true"
			fi
		else
			echo "--$server | checked=true"
		fi
	done < <(echo "$allservers" | sort)
else
	echo "--❌ No Server Entries! | color=red"
fi
echo "-----"
echo "--Add Server"

Improve error handling for plugin installation from URL

Affects:

  • Installing plugins from Plugin Repository
  • Installing plugins using URL Scheme

Current Behavior:

HTTP errors are not handled, user may end-up with a broken "plugin" file, see #59 as example.

Desired Behavior:
Proper Error handling, including:

  • checking HTTP error codes
  • showing user a dialog if something went wrong
  • maybe adding additional checks like trying to download a file which seems too big, etc.

Set environment properties

Hi

Bitbar sets BitBar=1 env property so script can determine if it is launched from BitBar or not

Please add this env property for compatibility reason

And also please add SwiftBar=1 so scripts can determine when they are running from SwiftBar and can cange some behaviour

not released BitBar also sets BitBarVersion env property with current program version (see: matryer/xbar#359), please add SwiftBarVersion env property with current SwiftBar version, co plugin can determine and use new feature if it is running on new version and not use when not.

Latest version

Hello,
Thank you so much for your efforts to develop this amazing swift port of BitBar.

I really want to get the latest build from the latest master because the latest release is far behind the latest master. I tried to build the latest master, however, I don't have an Apple Developer account so an error was popped up (But, I can build BitBar using XCode without an Apple Developer account) Also, this repo doesn't support brew --HEAD. In addition, the beta version cannot be installed via brew.

Is it possible to make the repo could be built by anyone who doesn't have an Apple Developer account like BitBar? Or can we install the beta version via brew?

Thank you very much.

URL Scheme

Hi everyone!

Massive thanks to @cliss for putting me onto this project. I'm so happy to have an actively-developed update to BitBar!

One BitBar feature that I use a fair bit is the URL scheme described here. It allowed you to open or refresh a plugin like so...

bitbar://refreshPlugin?name=brew-updates.*?.sh

I can't seem to find this anywhere in the SwiftBar repo. Is there any appetite to include this feature?

Many thanks.

Plugin Repo Never Loads

When trying to browse available plugins, Swiftbar stays stuck on "Refreshing repository data..."
image

Systems Details:

  • Intel CPU
  • macOS Big Sur 11.1 Beta
  • SwiftBar 1.0.1

Bug: refresh=true not working on Catalina

With a line like the following (writing to a preferences file with defaults)…

echo "--$server | refresh=true terminal=false bash=/usr/bin/defaults param1=write param2=\"$prefs\" param3=currentServer param4=\"$server\" param5=2>/dev/null"

…the value gets written to the preferences plist, but SwiftBar (on Catalina) doesn't refresh the plugin, i.e. the user has to wait for the plugin's default refresh time to pass, before the script can load the new value from the preferences file.

The same (no refresh) happens when you run it as a function:

if [[ $1 == "writeserver" ]] ; then
	defaults write "$prefs" currentServer "$2" 2>/dev/null
	exit
fi

echo "--$server | refresh=true terminal=false bash=$0 param1=writeserver param2=\"$server\""

SwiftBar v1.0.2 betas: Catalina reports

Using this script: https://github.com/JayBrown/Ping-Thing

(1a) ⚠️ Default font size is still one point too small (see below
(1b) ⚠️ Menu items that should be greyed-out (read-only), are now black and selectable/clickable
(2) ⚠️ color inversion (black<>white) in menu on select not yet working

(3) ✅ hide SB icon works
(4) ✅ separators in sub-menus seem to work now
(5) ✅ "ghost menus" seem to be gone
(6) ✅ refresh together with bash seems to work now

v1.0.2-beta1

snap1

v1.0.1

snap2

Swifbar should not set executable flag to files itself

I found this in sourcecode:

    func makeScriptExecutable(file: String) {
        let script = """
        if [[ -x "\(file)" ]]
        then
            echo "File "\(file)" is executable"
        else
            chmod +x "\(file)"
        fi
        """
        _ = try? shellOut(to: script)
    }

Swifbar add +x flag to all files in Plugins folder :(
i think swifbar shouldn't set +x to files. This shoud be set only by user itself

Executable and parameters contains spaces is not escaped and then bash= is not working

I have:

---- Swift Bar.xcodeproj| bash='/Users/matej/Projects/Others/Xcode Build Time Counter/sources/xcodeBuildTimes.1m.php' param1=config param2=filter_toggle param3=project param4="Swift Bar.xcodeproj" param5=set refresh=true terminal=false

(I am using terminal false)

it is not working.

When i set terminal=true to see what is going on. I am seeing that filename and parameter is not escaped

it runs:

matej@Matejs-MacBook-Pro ~/Projects/Others/Xcode Build Time Counter/sources (master) $ /Users/matej/Projects/Others/Xcode Build Time Counter/sources/xcodeBuildTimes.1m.php config filter_toggle project Swift Bar.xcodeproj set

Path and shoud be escaped like this:

matej@Matejs-MacBook-Pro ~/Projects/Others/Xcode Build Time Counter/sources (master) $ "/Users/matej/Projects/Others/Xcode Build Time Counter/sources/xcodeBuildTimes.1m.php" config filter_toggle project "Swift Bar.xcodeproj" set

This is only example, it shoud be escaped in good way, eg keep in mind ", ' and other special characters.

PS: bitbar has similar issue/bug (it not escaped when terminal=true), but it is working correctly when terminal=false, switbar doesn't work in both cases

Bug: inline image not displayed

Example:

img="foo" # base64 encoded (144 ppi, 32*32 px)
echo "bar | image=\"$img\""

This should print/display the base64-encoded image in front of "foo", just like the SwiftBar icon is in front of "SwiftBar".

However, SwiftBar just prints the base64 string in plaintext.

snap

Feature request: Preferences > tick box: Hide SwiftBar icon

Feature request for a tick box in SwiftBar preferences to hide the SwiftBar icon.

This is important for plug-ins, where the user is displaying his own icons with an individual layout/design in terms of size, padding etc.

Alternatively: a text input field in Preferences, where the user can enter the display size of the SwiftBar icon.

Or both. ;)

sfimage retention

I have a script with a conditional - in low pollution circumstances it displays an sfimage (smoke), but in high pollution circumstances it displays text with more pollution information.

In SwiftBar, when the pollution level reaches the threshold to display text, the text is displayed--but the sfimage remains, rather than being replaced.

I think this is a mistake because I'm no longer echoing | sfimage=smoke but I'm not 100% on this behavior.

plugin attached

epaaq.5m.php.zip

it runs but ...

i wrote a bash script that check tautlli which is a monitor for plex media server but it only run in terminal and shows information there but not in the bar.

in terminal
Screen Shot 2020-12-12 at 7 06 31 PM

in bar "v 1.0.3"
Screen Shot 2020-12-12 at 7 06 07 PM

Plex=$(curl -s "http://10.0.26.6:8181/api/v2?apikey=xxxxxxxxxxxxxx&cmd=get_activity" | jq -r ".response.data.stream_count")
playingNow=$(curl -s "http://10.0.26.6:8181/api/v2?apikey=xxxxxxxxxxxxx&cmd=get_activity" | jq -r ".response.data.sessions[].full_title")

Play=$(if [ -n "$playingNow" ]; then
	    echo "$playingNow"
    else
	    echo '🛑Nothing Playing'
	    fi)



echo "PlexStream"
echo "---"
echo "$Plex"
echo "$Play"
echo "---"

on my linux box the same strutter of the script works flawlessly

Bug: ⚠️ icon when executing echo "-.---" in menu bar

Problem: SwiftBar print the ⚠️ icon in the menu bar, when a single command within the script fails, i.e. exits with error, even if there is no stderr & the script catches errors internally, and itself exists without error.

Example:

default_value="bar"
var=$(cat /tmp/foo 2>/dev/null)
if ! [[ $var ]] ; then
	var="$default_value"
	echo -n "$default_value" > /tmp/foo
fi
# do something with $var

If /tmp/foo doesn't exist, e.g. at first run, the cat command will exit with an error, but due to the 2>/dev/null and the consecutive iffi with echo, the error is caught and a value is assigned nonetheless, and the script can continue without hickups.

Still, SwiftBar detects the error-exit of the cat command and prints the ⚠️ icon.

Solution: Ignore individual exit statuses of individual commands within a script, if there is no stderr, and only print the ⚠️ icon in the menu bar (plus error message in the dropdown menu), if the script itself fails, or if there is an actually stderr, e.g. from a command without an appended 2>/dev/null.

SwiftBar v1.0.2-beta2 crash

Related to this issue: #19

When switching settings in a plugin, one command (cat) doesn't find a file, so it exits with error (no stderr), which isn't a problem for the script, because I account for a lot of potential errors, but it causes SwiftBar to display the unwanted/unnecessary alert icon ⚠️, and when I clicked on the alert icon, the 1.0.2 beta 2 app crashed. (Tested twice; happened both times.)

Process:               SwiftBar [89672]
Path:                  /Users/USER/*/SwiftBar.app/Contents/MacOS/SwiftBar
Identifier:            com.ameba.SwiftBar
Version:               1.0.2 (127)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           SwiftBar [89672]
User ID:               501

Date/Time:             2020-11-27 18:37:52.077 +0100
OS Version:            Mac OS X 10.15.7 (19H15)
Report Version:        12
Bridge OS Version:     4.6 (17P6610)
Anonymous UUID:        27A319F2-68D4-6212-7623-A3120AF6D7A2

Sleep/Wake UUID:       819D6824-6F30-4D42-9FB0-A98D4B7BC6FA

Time Awake Since Boot: 230000 seconds
Time Since Wake:       31000 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes:       0x0000000000000001, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Illegal instruction: 4
Termination Reason:    Namespace SIGNAL, Code 0x4
Terminating Process:   exc handler [89672]

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   com.ameba.SwiftBar            	0x0000000103951541 0x103914000 + 251201
1   com.ameba.SwiftBar            	0x0000000103949f6c 0x103914000 + 221036
2   com.apple.AppKit              	0x00007fff2bbeb02e -[NSMenu _sendMenuOpeningNotification:] + 106
3   com.apple.AppKit              	0x00007fff2b969e71 -[NSCarbonMenuImpl _carbonOpenEvent:handlerCallRef:] + 195
4   com.apple.AppKit              	0x00007fff2b89ae51 NSSLMMenuEventHandler + 1197
5   com.apple.HIToolbox           	0x00007fff2cefa8ff DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1254
6   com.apple.HIToolbox           	0x00007fff2cef9d8d SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 329
7   com.apple.HIToolbox           	0x00007fff2cef9c3d SendEventToEventTargetWithOptions + 45
8   com.apple.HIToolbox           	0x00007fff2cf7e5db SendMenuOpening(MenuSelectData*, MenuData*, double, unsigned int, unsigned int, __CFDictionary*, unsigned char, unsigned char*) + 482
9   com.apple.HIToolbox           	0x00007fff2d0a05a5 PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, unsigned int, Rect const*, unsigned short, unsigned int, Rect const*, Rect const*, __CFDictionary const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 818
10  com.apple.HIToolbox           	0x00007fff2d09fdb6 _HandlePopUpMenuSelection8(OpaqueMenuRef*, OpaqueEventRef*, unsigned int, Point, unsigned short, unsigned int, unsigned int, Rect const*, unsigned short, Rect const*, Rect const*, __CFDictionary const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 410
11  com.apple.HIToolbox           	0x00007fff2cf772b5 _HandlePopUpMenuSelectionWithDictionary + 329
12  com.apple.AppKit              	0x00007fff2ba5cdcd SLMPerformPopUpCarbonMenu + 1611
13  com.apple.AppKit              	0x00007fff2b9033a8 _NSSLMPopUpCarbonMenu3 + 782
14  com.apple.AppKit              	0x00007fff2b902ff4 -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOptions:] + 439
15  com.apple.AppKit              	0x00007fff2bce45b7 +[NSStatusBarButtonCell popupStatusBarMenu:inRect:ofView:withEvent:] + 136
16  com.apple.AppKit              	0x00007fff2bce3b3a -[NSStatusBarButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 144
17  com.apple.AppKit              	0x00007fff2b7a41dd -[NSControl mouseDown:] + 748
18  com.apple.AppKit              	0x00007fff2b7a25f0 -[NSWindow(NSEventRouting) _handleMouseDownEvent:isDelayedEvent:] + 4914
19  com.apple.AppKit              	0x00007fff2b70ce21 -[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:] + 2612
20  com.apple.AppKit              	0x00007fff2b70c1c9 -[NSWindow(NSEventRouting) sendEvent:] + 349
21  com.apple.AppKit              	0x00007fff2bce54a9 -[NSStatusBarWindow sendEvent:] + 347
22  com.apple.AppKit              	0x00007fff2b70a554 -[NSApplication(NSEvent) sendEvent:] + 352
23  com.apple.AppKit              	0x00007fff2b5575bf -[NSApplication run] + 707
24  com.apple.AppKit              	0x00007fff2b529396 NSApplicationMain + 777
25  com.ameba.SwiftBar            	0x00000001039184a6 0x103914000 + 17574
26  libdyld.dylib                 	0x00007fff683adcc9 start + 1

Thread 1:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff684eedfa mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff684ef170 mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff2e2f6ef5 __CFRunLoopServiceMachPort + 247
3   com.apple.CoreFoundation      	0x00007fff2e2f59c2 __CFRunLoopRun + 1319
4   com.apple.CoreFoundation      	0x00007fff2e2f4e3e CFRunLoopRunSpecific + 462
5   com.apple.AppKit              	0x00007fff2b708954 _NSEventThread + 132
6   libsystem_pthread.dylib       	0x00007fff685b2109 _pthread_start + 148
7   libsystem_pthread.dylib       	0x00007fff685adb8b thread_start + 15

Thread 2:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 3:
0   libsystem_platform.dylib      	0x00007fff685a3900 _platform_memmove$VARIANT$Haswell + 0
1   libdispatch.dylib             	0x00007fff6836f620 _dispatch_event_loop_merge + 99
2   libdispatch.dylib             	0x00007fff68363ada _dispatch_workloop_worker_thread + 293
3   libsystem_pthread.dylib       	0x00007fff685aea3d _pthread_wqthread + 290
4   libsystem_pthread.dylib       	0x00007fff685adb77 start_wqthread + 15

Thread 4:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 5:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 6:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 7:
0   libsystem_pthread.dylib       	0x00007fff685adb68 start_wqthread + 0

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00007fff8ea1aa08  rbx: 0x00007fff815050b8  rcx: 0xffffffffffffffff  rdx: 0x0000000000000000
  rdi: 0x00007ffeec2ea0a0  rsi: 0x00007fff8151b520  rbp: 0x00007ffeec2ea170  rsp: 0x00007ffeec2ea090
   r8: 0x00007ffeec2ea090   r9: 0x0000000000000012  r10: 0x000000010397f900  r11: 0x0000000103949f40
  r12: 0x00007fff671f8800  r13: 0x0000600002e08780  r14: 0x00007ffeec2ea0b0  r15: 0x00007fff671f86d0
  rip: 0x0000000103951541  rfl: 0x0000000000010246  cr2: 0x0000000106d23378
  
Logical CPU:     4
Error Code:      0x00000000
Trap Number:     6


Binary Images:
       0x103914000 -        0x103977fff +com.ameba.SwiftBar (1.0.2 - 127) <03682DD2-B4A6-34B9-B30B-7CF166E94F49> /Users/USER/*/SwiftBar.app/Contents/MacOS/SwiftBar
       0x106c46000 -        0x106c49047  libobjc-trampolines.dylib (787.1) <88F9B648-C455-36F8-BBB9-7D1A9F57D073> /usr/lib/libobjc-trampolines.dylib
       0x1134b5000 -        0x113546f47  dyld (750.6) <1D318D60-C9B0-3511-BE9C-82AFD2EF930D> /usr/lib/dyld
    0x7fff21365000 -     0x7fff215b2ff8  com.apple.RawCamera.bundle (9.02.0 - 1350.29) <59F81722-039E-33F5-A20E-936E997575A3> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff215b5000 -     0x7fff216e3ff8  com.apple.AMDMTLBronzeDriver (3.10.18 - 3.1.0) <9FA4516E-D815-3347-AC25-84099A9D763E> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
    0x7fff26c73000 -     0x7fff27072ff1  com.apple.driver.AppleIntelKBLGraphicsMTLDriver (14.7.8 - 14.0.7) <1FA5C980-0AFA-35AB-B904-8B41B75FB347> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
    0x7fff29efa000 -     0x7fff29efafff  com.apple.Accelerate (1.11 - Accelerate 1.11) <4F9977AE-DBDB-3A16-A536-AC1F9938DCDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff29efb000 -     0x7fff29f11fef  libCGInterfaces.dylib (524.2.1) <8FD09D09-BB19-36C5-ADE9-4F22DA235AEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff29f12000 -     0x7fff2a568fff  com.apple.vImage (8.1 - 524.2.1) <EA6F5FF2-7A1B-35D5-A5A3-D2B3386ECB75> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff2a569000 -     0x7fff2a7d0ff7  libBLAS.dylib (1303.60.1) <C6C2D42F-7456-3DBF-8BE2-9AA06EFC78FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff2a7d1000 -     0x7fff2aca4fef  libBNNS.dylib (144.100.2) <99C61C48-B14C-3DA6-8C31-6BF72DA0A3A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff2aca5000 -     0x7fff2b040fff  libLAPACK.dylib (1303.60.1) <5E3E3867-50C3-3E6A-9A2E-007CE77A4641> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2b041000 -     0x7fff2b056fec  libLinearAlgebra.dylib (1303.60.1) <3D433800-0099-33E0-8C81-15F83247B2C9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff2b057000 -     0x7fff2b05cff3  libQuadrature.dylib (7) <371F36A7-B12F-363E-8955-F24F7C2048F6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2b05d000 -     0x7fff2b0cdfff  libSparse.dylib (103) <B8A10D0C-4577-343D-B310-A3E81265D107> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff2b0ce000 -     0x7fff2b0e0fef  libSparseBLAS.dylib (1303.60.1) <B147FEF6-A0DB-3830-BF06-45BEC58DB576> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2b0e1000 -     0x7fff2b2b8fd7  libvDSP.dylib (735.140.1) <D63DC0A5-B8B4-3562-A574-E73BC3B57407> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff2b2b9000 -     0x7fff2b37bfef  libvMisc.dylib (735.140.1) <3601FDE3-B142-398D-987D-8151A51F0A96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2b37c000 -     0x7fff2b37cfff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <F6C5613D-2284-342B-9160-9731F78B4DE5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2b37d000 -     0x7fff2b3dcff0  com.apple.Accounts (113 - 113) <E2438070-30AB-3B89-AE63-1E485B92D108> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff2b526000 -     0x7fff2c2e6ff2  com.apple.AppKit (6.9 - 1894.60.100) <A64D10A6-FE17-39CE-9392-6615BE54E10E> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff2c336000 -     0x7fff2c336fff  com.apple.ApplicationServices (48 - 50) <C23D2740-FAF6-3BD6-9E48-56F54D752864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff2c337000 -     0x7fff2c3a2fff  com.apple.ApplicationServices.ATS (377 - 493.0.4.1) <87EA5DE1-506A-39FD-88BE-D8A3416C9012> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2c43b000 -     0x7fff2c479ff0  libFontRegistry.dylib (274.0.5.1) <F3461C05-0370-359B-9F03-5C1C1F7763EC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff2c4d4000 -     0x7fff2c503fff  com.apple.ATSUI (1.0 - 1) <5F513967-DDD7-3F22-AD14-8A38ABD9F2D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2c504000 -     0x7fff2c508ffb  com.apple.ColorSyncLegacy (4.13.0 - 1) <72EE68DB-F069-37F5-AA2A-40D5FCF139F4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2c5a2000 -     0x7fff2c5f9ffa  com.apple.HIServices (1.22 - 676) <14DF4D42-E24D-3EBD-9A9D-93124D8D6AA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff2c5fa000 -     0x7fff2c608fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <01B8B6B3-E2C3-3607-B34A-8283A7E0E924> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2c609000 -     0x7fff2c64effa  com.apple.print.framework.PrintCore (15.4 - 516.2) <437BCF12-48D2-3770-8BC9-567718FB1BCA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2c64f000 -     0x7fff2c659ff7  com.apple.QD (4.0 - 413) <27A36D07-B5E9-32E6-87B6-3127F260F48D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2c65a000 -     0x7fff2c667ffc  com.apple.speech.synthesis.framework (9.0.24 - 9.0.24) <75344F8F-32CA-3558-B4E6-F56D498250E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2c668000 -     0x7fff2c749ffa  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <8CFA0620-5E43-3C4D-A75B-981C0961C2DE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2c74b000 -     0x7fff2c74bfff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <C8F9CC56-F7CF-3E77-B6FC-BD8E1D19FA92> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff2cae2000 -     0x7fff2ce71ffa  com.apple.CFNetwork (1128.0.1 - 1128.0.1) <07F9CA9C-B954-3EA0-A710-3122BFF9F057> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff2ceed000 -     0x7fff2ceedfff  com.apple.Carbon (160 - 162) <97E334B3-7FAE-3239-9E89-5A546BC26ADE> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff2ceee000 -     0x7fff2cef1ff3  com.apple.CommonPanels (1.2.6 - 101) <9F6E13D9-374B-386F-8E15-FDD6CE967859> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff2cef2000 -     0x7fff2d1e6ff3  com.apple.HIToolbox (2.1.1 - 994.6) <EAF2DAC3-66B1-30BF-AF10-72DDA90D1044> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff2d1e7000 -     0x7fff2d1eaff3  com.apple.help (1.3.8 - 71) <36483951-6F3E-3F7E-8A5B-191C2357EF17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff2d1eb000 -     0x7fff2d1f0ff7  com.apple.ImageCapture (9.0 - 1600.65) <1A1F320E-3E85-3F3D-8AE0-B238C4E92D40> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff2d1f1000 -     0x7fff2d1f1fff  com.apple.ink.framework (10.15 - 227) <284507AE-EF47-3ABC-86A4-669243DB1D33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff2d1f2000 -     0x7fff2d20cffa  com.apple.openscripting (1.7 - 185.1) <B6E28747-5FC7-3461-8A71-864A969ED022> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff2d22d000 -     0x7fff2d22dfff  com.apple.print.framework.Print (15 - 271) <0D9FB08F-EA87-3BE7-821B-C61BA5601050> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff2d22e000 -     0x7fff2d230ff7  com.apple.securityhi (9.0 - 55008) <390C6FAA-99BF-3924-9180-9EAE41D9C6BE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff2d231000 -     0x7fff2d237fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <9614A01E-8303-3422-A3BA-6CE27540E09A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2d238000 -     0x7fff2d3d0ffa  com.apple.cloudkit.CloudKit (867 - 867) <1B851180-FC00-357F-B6C1-BB0EA7D6D5CA> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff2d3df000 -     0x7fff2d4d5fff  com.apple.ColorSync (4.13.0 - 3394.9) <A126406C-DA38-3FFE-8B25-BB9859EFD159> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff2d4d6000 -     0x7fff2d5c6ff7  com.apple.combine (1.0 - 134.102) <02C5D48A-E70F-3D68-8555-4211853F9C3B> /System/Library/Frameworks/Combine.framework/Versions/A/Combine
    0x7fff2d7c0000 -     0x7fff2dcc9ffb  com.apple.audio.CoreAudio (5.0 - 5.0) <9DA02E7A-56A0-3FFF-94C2-1795BA761F07> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff2dd1c000 -     0x7fff2dd54fff  com.apple.CoreBluetooth (1.0 - 1) <23DBB313-A082-3C08-8E1F-2D31EE4247EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff2dd55000 -     0x7fff2e13ffe8  com.apple.CoreData (120 - 977.3) <49AE61CA-C91E-31FE-9BD0-1AACFFB5181E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff2e140000 -     0x7fff2e272ff6  com.apple.CoreDisplay (1.0 - 186.6.15) <213D7011-8180-3CF4-9BE7-FB8F75DCDB95> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff2e273000 -     0x7fff2e6f2feb  com.apple.CoreFoundation (6.9 - 1677.104) <C0D70026-EDBE-3CBD-B317-367CF4F1C92F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff2e6f4000 -     0x7fff2ed69ff8  com.apple.CoreGraphics (2.0 - 1355.22) <4A3CDE7B-4578-3058-966A-3D1DC095A935> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff2ed77000 -     0x7fff2f0d2ff0  com.apple.CoreImage (15.0.0 - 940.9) <69361069-01AB-342E-862B-73A74271A765> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff2f0d3000 -     0x7fff2f13cff0  com.apple.corelocation (2394.0.22 - 2394.0.22) <75966124-2FB7-33C3-BE49-3DD5F327F911> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff2f493000 -     0x7fff2f56effc  com.apple.CoreMedia (1.0 - 2625.9) <A3FF3AFC-8C1C-36E5-9179-66D8F075EE35> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff2f65b000 -     0x7fff2f65bfff  com.apple.CoreServices (1069.24 - 1069.24) <AA140158-E909-34C2-B2F5-20EBC93E0056> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff2f65c000 -     0x7fff2f6e1fff  com.apple.AE (838.1 - 838.1) <2E5FD5AE-8A7F-353F-9BD1-0241F3586181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff2f6e2000 -     0x7fff2f9c3ff7  com.apple.CoreServices.CarbonCore (1217 - 1217) <BE379206-99FA-30CD-8391-2708473A633F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff2f9c4000 -     0x7fff2fa11ffd  com.apple.DictionaryServices (1.2 - 323.6) <26B70C82-25BC-353A-858F-945B14C803A2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2fa12000 -     0x7fff2fa1aff7  com.apple.CoreServices.FSEvents (1268.100.1 - 1268.100.1) <FC84DB48-A3CE-30F7-A918-B3587731ACC7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff2fa1b000 -     0x7fff2fc55ff6  com.apple.LaunchServices (1069.24 - 1069.24) <9A5359D9-9148-3B18-B868-56A9DA5FB60C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff2fc56000 -     0x7fff2fceeff1  com.apple.Metadata (10.7.0 - 2076.7) <0973F7E5-D58C-3574-A3CE-4F12CAC2D4C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff2fcef000 -     0x7fff2fd1cfff  com.apple.CoreServices.OSServices (1069.24 - 1069.24) <0E4F48AD-402C-3E9D-9CA9-6DD9479B28F9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2fd1d000 -     0x7fff2fd84fff  com.apple.SearchKit (1.4.1 - 1.4.1) <2C5E1D85-E8B1-3DC5-91B9-E3EDB48E9369> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2fd85000 -     0x7fff2fda9ff5  com.apple.coreservices.SharedFileList (131.4 - 131.4) <02DE0D56-E371-3EF5-9BC1-FA435451B412> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff300ce000 -     0x7fff30285ffc  com.apple.CoreText (643.1.5.1 - 643.1.5.1) <A88F052A-C840-3E6C-9BF8-FFFED34C0667> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff30286000 -     0x7fff302caffb  com.apple.CoreVideo (1.8 - 344.3) <5314E70D-325F-3E98-99FC-00FDF520747E> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff302cb000 -     0x7fff30358ffc  com.apple.framework.CoreWLAN (13.0 - 1601.2) <6223BFD5-D451-3DE9-90F6-F609AC0B0027> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff305ef000 -     0x7fff305f5fff  com.apple.DiskArbitration (2.7 - 2.7) <0BBBB6A6-604D-368B-9943-50B8CE75D51D> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff307ea000 -     0x7fff30918ff6  com.apple.FileProvider (304.1 - 304.1) <E8BB1D4B-05D6-386C-865C-F8C750CEC308> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff30930000 -     0x7fff30cf5fff  com.apple.Foundation (6.9 - 1677.104) <7C69F845-F651-3193-8262-5938010EC67D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff30d62000 -     0x7fff30db2ff7  com.apple.GSS (4.0 - 2.0) <2F3A67E6-D42A-3CF0-9041-A42C22D46F95> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff30eef000 -     0x7fff31003ff3  com.apple.Bluetooth (7.0.6 - 7.0.6f7) <CF9CEFBA-97AC-3474-93AF-863C2C74C645> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff31069000 -     0x7fff3110dff3  com.apple.framework.IOKit (2.0.2 - 1726.140.1) <14223387-6F81-3976-8605-4BC2F253A93E> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff3110f000 -     0x7fff31120ffb  com.apple.IOSurface (269.11 - 269.11) <BCD744D4-E17E-3C2E-B69C-F69C789892E9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff3119f000 -     0x7fff312fbffe  com.apple.ImageIO.framework (3.3.0 - 1976.11.1) <5DBAD721-B70E-396C-922C-A2742E6815D6> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff312fc000 -     0x7fff312fffff  libGIF.dylib (1976.11.1) <1A04BEC5-95CF-3EA4-8FA6-FE19679331F3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff31300000 -     0x7fff313b9fe7  libJP2.dylib (1976.11.1) <686B045D-5627-3DEE-B018-72068B7136D4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff313ba000 -     0x7fff313ddfe3  libJPEG.dylib (1976.11.1) <13EAEDD3-D4CF-3B2C-B7A4-FB000A71D982> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff3165c000 -     0x7fff31676fef  libPng.dylib (1976.11.1) <031068A2-29E2-3BE0-93CC-76D154976A51> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff31677000 -     0x7fff31678fff  libRadiance.dylib (1976.11.1) <6B5A0402-F511-39ED-933A-C361005107B1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff31679000 -     0x7fff316bffff  libTIFF.dylib (1976.11.1) <1F089EF9-3DCE-3B49-9B2B-28B9AC3252D0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff32c21000 -     0x7fff32c33ff3  com.apple.Kerberos (3.0 - 1) <03BB492B-016E-37BF-B020-39C2CF7487FE> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff32c34000 -     0x7fff32c34fff  libHeimdalProxy.dylib (77) <0A2905EE-9533-3345-AF9B-AAC71513BDFD> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff32fc6000 -     0x7fff32fd0ffb  com.apple.MediaAccessibility (1.0 - 125.1) <98065EA1-3484-3A5A-B05C-D2FABED8CEA4> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff3309c000 -     0x7fff337e9ff2  com.apple.MediaToolbox (1.0 - 2625.9) <3A848992-9182-382A-BF7D-5CB9707BE27B> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff337eb000 -     0x7fff338b5fff  com.apple.Metal (212.8 - 212.8) <98C944D6-62C8-355E-90F8-C1CA2429EF24> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff338d2000 -     0x7fff3390fff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <7EBAC15D-7837-395D-B405-1E29F7DA68FA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff33910000 -     0x7fff3399afe2  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <B424FE0C-6E90-3BFA-A6E7-DD86C735AE90> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff3399b000 -     0x7fff339c0ff4  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <02006D92-E2AB-3892-A96B-37F6520C19BA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff339c1000 -     0x7fff339d6ffb  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <CAA5A368-DB71-34F6-AEF9-27A8BC298F53> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff339d7000 -     0x7fff33b35ffc  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <05612E06-50CB-318F-9F8E-EF4D49FAB3B0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff33b36000 -     0x7fff33b85ff4  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <B0B591F8-6875-351E-867F-8EB3CD38CD52> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff33b86000 -     0x7fff33b87ff5  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <F2921F9A-3041-3495-878D-64134267B847> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff34c16000 -     0x7fff34c22ffe  com.apple.NetFS (6.0 - 4.0) <4415F027-D36D-3B9C-96BA-AD22B44A4722> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff34c23000 -     0x7fff34d7aff3  com.apple.Network (1.0 - 1) <4A0F3B93-4D23-3E74-9A3D-AD19E9C0E59E> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff34d7b000 -     0x7fff34fdbffa  com.apple.NetworkExtension (1.0 - 1) <3ED35C5A-B170-373E-8277-D4198E408810> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension
    0x7fff377ac000 -     0x7fff37804fff  com.apple.opencl (3.5 - 3.5) <293FE223-9186-320B-81A4-EC8104C38357> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff37805000 -     0x7fff37821fff  com.apple.CFOpenDirectory (10.15 - 220.40.1) <7E6C88EB-3DD9-32B0-81FC-179552834FA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff37822000 -     0x7fff3782dffd  com.apple.OpenDirectory (10.15 - 220.40.1) <4A92D8D8-A9E5-3A9C-942F-28576F6BCDF5> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff38193000 -     0x7fff38195fff  libCVMSPluginSupport.dylib (17.10.22) <2B6C3C16-3F5F-36A8-8070-2A862B90328B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff38196000 -     0x7fff3819bfff  libCoreFSCache.dylib (176.15) <E9A20E72-B17F-33D6-8894-41934A10B822> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff3819c000 -     0x7fff381a0fff  libCoreVMClient.dylib (176.15) <018A48BA-1326-3847-8FB5-A7C99322EB87> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff381a1000 -     0x7fff381a9ff7  libGFXShared.dylib (17.10.22) <AB47B927-65E3-3924-88BE-0A5BE7906785> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff381aa000 -     0x7fff381b4fff  libGL.dylib (17.10.22) <FB5E6A75-398E-38EF-8CB2-59F5BFE3034C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff381b5000 -     0x7fff381e9ff7  libGLImage.dylib (17.10.22) <9A3FE633-61B8-3CC7-8183-62960109401A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff3837f000 -     0x7fff383bbfff  libGLU.dylib (17.10.22) <D8B4D804-7323-30BC-871C-B7236FFC2FE3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff38df7000 -     0x7fff38e06ff7  com.apple.opengl (17.10.22 - 17.10.22) <D3C57A32-6BD0-3228-B1C4-0F42A6128A6C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff39464000 -     0x7fff3946aff6  com.apple.PushKit (1.0 - 1) <AD547A25-1A0B-3FA6-8676-82C37F267A4A> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit
    0x7fff39dc4000 -     0x7fff3a047ffb  com.apple.QuartzCore (1.11 - 841.4) <FE927B0E-BD49-32CC-8A55-90F553C86C15> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff3abca000 -     0x7fff3af13ff1  com.apple.security (7.0 - 59306.140.5) <B6F8368F-2395-379B-B768-71C53BB1B903> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff3af14000 -     0x7fff3af9cffb  com.apple.securityfoundation (6.0 - 55236.60.1) <7C69DF47-4017-3DF2-B55B-712B481654CB> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff3afcb000 -     0x7fff3afcfff8  com.apple.xpc.ServiceManagement (1.0 - 1) <2C62956C-F2D4-3EB0-86C7-EAA06331621A> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff3b321000 -     0x7fff3bb5207f  com.apple.SwiftUI (42.24 - 42.24) <EB2A964A-CA10-3536-8517-420D1E29DAEB> /System/Library/Frameworks/SwiftUI.framework/Versions/A/SwiftUI
    0x7fff3bc7b000 -     0x7fff3bcf5ff7  com.apple.SystemConfiguration (1.19 - 1.19) <84F9B3BB-F7AF-3B7C-8CD0-D3C22D19619F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff3bf75000 -     0x7fff3c2f8ff4  com.apple.VideoToolbox (1.0 - 2625.9) <6CF18E28-A7A8-3952-8171-7E4FF4FB37FA> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff3fc65000 -     0x7fff3fd2afe7  com.apple.APFS (1412.141.1 - 1412.141.1) <C86A3423-E61C-335A-9D17-0B3CE5BB6467> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff404f2000 -     0x7fff404faff5  com.apple.AccessibilityBundles (1.0 - 131.5) <C616977E-919B-3211-BC56-3803B3B2702E> /System/Library/PrivateFrameworks/AccessibilityBundles.framework/Versions/A/AccessibilityBundles
    0x7fff40e3f000 -     0x7fff40e40ff1  com.apple.AggregateDictionary (1.0 - 1) <95A291F5-B69F-3C37-9483-C3B2EBF52AC1> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff413df000 -     0x7fff413fcff4  com.apple.AppContainer (4.0 - 448.100.6) <87CEE13C-8585-3EFB-92CD-0852DFF0921B> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff41451000 -     0x7fff4145fff7  com.apple.AppSandbox (4.0 - 448.100.6) <0F49AA04-3400-349A-9096-6D4D7ED61027> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff418db000 -     0x7fff418ffffb  com.apple.framework.Apple80211 (13.0 - 1610.1) <D94E03E8-4C38-3B2F-8DF4-473ACC5A7D71> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff41bbd000 -     0x7fff41bccfd7  com.apple.AppleFSCompression (119.100.1 - 1.0) <466ABD77-2E52-36D1-8E39-77AE2CC61611> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff41ccb000 -     0x7fff41cd6ff7  com.apple.AppleIDAuthSupport (1.0 - 1) <74F6CD9C-27A7-39C7-A7EB-47E60D2517EB> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff41d18000 -     0x7fff41d60ff7  com.apple.AppleJPEG (1.0 - 1) <6DE30A07-C627-319B-A0DE-EB7A832BEB88> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff42123000 -     0x7fff42149ffb  com.apple.aps.framework (4.0 - 4.0) <3ED300B6-43E3-31DC-B3C6-6A0FF41A2595> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff4214a000 -     0x7fff4214eff7  com.apple.AppleSRP (5.0 - 1) <70C25EA9-F7A7-366C-97C6-EEE7845FFCC3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff4214f000 -     0x7fff42171fff  com.apple.applesauce (1.0 - 16.25) <68E0364C-AEA7-3654-A030-136BF3CD92F3> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff42230000 -     0x7fff42233fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <67255151-F989-39F0-BC87-0C0BDAE70730> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff42234000 -     0x7fff42284ff7  com.apple.AppleVAFramework (6.1.2 - 6.1.2) <8E18983B-AF92-3853-8251-A6577A55AC15> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff422cd000 -     0x7fff422dcff9  com.apple.AssertionServices (1.0 - 223.140.2) <48AD21CA-B81D-380E-A04F-90C48FDA5203> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff425bd000 -     0x7fff425f4d2f  com.apple.AttributeGraph (1.0 - 1) <1F91FC33-5931-3534-9D87-18A3AFA1EB42> /System/Library/PrivateFrameworks/AttributeGraph.framework/Versions/A/AttributeGraph
    0x7fff4281f000 -     0x7fff42c1aff8  com.apple.audio.AudioResourceArbitration (1.0 - 1) <2BD68521-C19C-3D67-B5EB-DE3E9A4DAF0A> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff42e70000 -     0x7fff430b0fe0  com.apple.audio.AudioToolboxCore (1.0 - 1104.93) <5B539F50-93E8-3F73-9E4C-678C85D0488F> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff430b4000 -     0x7fff431d0fff  com.apple.AuthKit (1.0 - 1) <DC1A27C5-0172-3C72-9B24-06996D0B6207> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff4338d000 -     0x7fff43396ff7  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <A6877DAD-8F47-363C-983A-DC8DDE83B7B5> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff43397000 -     0x7fff43438ff5  com.apple.backup.framework (1.11.6 - 1298.6.2) <C4BC12A3-4D01-377F-A1DB-7E1490831CF2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff43439000 -     0x7fff434c5ff6  com.apple.BaseBoard (466.3 - 466.3) <10D0F3BB-E8F3-365E-8528-6AC996A9B0E7> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff435c7000 -     0x7fff43603ff7  com.apple.bom (14.0 - 219.2) <79CBE5E7-054F-377B-9566-A86A9F120CF1> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff43721000 -     0x7fff43758ff5  com.apple.C2 (1.3 - 495) <4A7E2A63-E19A-3936-92F5-03F2FD602172> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2
    0x7fff44183000 -     0x7fff441d2fff  com.apple.ChunkingLibrary (307 - 307) <5B09C30D-FD2B-3E98-8B64-C5EF470FC13C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff4500f000 -     0x7fff4500ffff  com.apple.combinecocoa (1.0 - 134.102) <0C194876-9B2D-3F3D-AADC-2E31EEE9D307> /System/Library/PrivateFrameworks/CombineCocoa.framework/Versions/A/CombineCocoa
    0x7fff4507e000 -     0x7fff4508effb  com.apple.CommonAuth (4.0 - 2.0) <CF67FF34-4238-3ECA-B4A4-EA04F18A0D36> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff450a2000 -     0x7fff450b9fff  com.apple.commonutilities (8.0 - 900) <F4C97244-E5D8-3F7D-8D94-4B6841C5A4EC> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff457c0000 -     0x7fff45b95fc8  com.apple.CoreAUC (283.0.0 - 283.0.0) <4341271C-D270-3F9F-8464-31A20D15158D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff45b96000 -     0x7fff45bc3ff7  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <C3CFDC68-C7D9-3C44-9E7C-801D45575C10> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff45be6000 -     0x7fff45c07ff4  com.apple.analyticsd (1.0 - 1) <95A87174-A616-3F80-B17A-1FA7E3DB7C09> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff45f12000 -     0x7fff45f1dff7  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <BB7D67B1-2102-3D71-9BB6-AEB8C6A6EBB2> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff4619e000 -     0x7fff461aeff3  com.apple.CoreEmoji (1.0 - 107.1) <7C2B3259-083B-31B8-BCDB-1BA360529936> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff467ee000 -     0x7fff46858ff0  com.apple.CoreNLP (1.0 - 213) <E70E2505-8078-324E-BAE1-01A2DA980E2C> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff46c86000 -     0x7fff46c8eff8  com.apple.CorePhoneNumbers (1.0 - 1) <E4DAD514-0B3B-3E0B-8AEA-39B320FAAF03> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff4767b000 -     0x7fff4769efff  com.apple.CoreSVG (1.0 - 129.3) <F38189F9-C8F9-3D62-9D5F-3F520FB81724> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff4769f000 -     0x7fff476d2fff  com.apple.CoreServicesInternal (446.7 - 446.7) <65F53A22-6B61-382C-AAC2-B2C53F8FFB44> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff476d3000 -     0x7fff47701ffd  com.apple.CSStore (1069.24 - 1069.24) <C2D67667-FA0B-3DB6-AA34-6999EE4346A0> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff47c26000 -     0x7fff47cbcff7  com.apple.CoreSymbolication (11.4 - 64535.33.2) <0B3BF87A-7F95-3D79-B4F8-421D6FAC4A6C> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff47d54000 -     0x7fff47e80ff6  com.apple.coreui (2.1 - 609.4) <788818B7-7EBC-316D-9464-D12E365E3791> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff47e81000 -     0x7fff4803affa  com.apple.CoreUtils (6.2.4 - 624.7) <A74A1C65-6695-3F57-B703-0DEDE13E66C1> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff48174000 -     0x7fff48187ff1  com.apple.CrashReporterSupport (10.13 - 15016) <ADF138F0-0274-3BA2-A1D2-48B91577FE53> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff48240000 -     0x7fff48252ff8  com.apple.framework.DFRFoundation (1.0 - 252.50.1) <8162057E-E856-3451-9160-04AEDDECFFA4> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff48253000 -     0x7fff48258fff  com.apple.DSExternalDisplay (3.1 - 380) <31ECB5FD-7660-33DB-BC5B-2B2A2AA7C686> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff482e2000 -     0x7fff4835cff0  com.apple.datadetectorscore (8.0 - 659) <B1534796-1000-3520-A641-A97A4AC5D39B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff483a8000 -     0x7fff483e5ff8  com.apple.DebugSymbols (194 - 194) <040AE30B-CF2C-3798-A289-0929B8CAB10D> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff483e6000 -     0x7fff4856eff6  com.apple.desktopservices (1.14.5 - 1281.5.3) <BFA7D5B5-20EE-38E3-B8A7-96CE1F9BB48A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff48a66000 -     0x7fff48a9bff7  com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <D3F76E01-2F9F-33E1-B5C9-CAC6E01724C2> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    0x7fff49f2f000 -     0x7fff4a34aff1  com.apple.vision.FaceCore (4.3.0 - 4.3.0) <5D32F65D-2CD7-3204-975C-F4C9256E505F> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff4a9e9000 -     0x7fff4ab20ff4  libFontParser.dylib (277.2.6.1) <9E9E2EAA-3273-360E-A01B-EB986ECB7BCF> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff4ab21000 -     0x7fff4ab55fff  libTrueTypeScaler.dylib (277.2.6.1) <F8A27F0F-44B3-3A1E-8B75-2DFD4A90E1D4> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
    0x7fff4abba000 -     0x7fff4abcaff6  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <1605B441-08E0-332D-B7D8-0E13F37B54E7> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff4e0ab000 -     0x7fff4e0acfff  libmetal_timestamp.dylib (902.14.11) <C29C7125-A894-3718-8E1D-249C53BCC0B8> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
    0x7fff4f766000 -     0x7fff4f76cfff  com.apple.GPUWrangler (5.2.6 - 5.2.6) <487F2E7A-A5FF-3C36-A8E9-B85D98618116> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff4fa8b000 -     0x7fff4fab1ff1  com.apple.GenerationalStorage (2.0 - 314) <54483E50-20BB-3AF8-900F-992320C109B0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff4faca000 -     0x7fff50ab3ff1  com.apple.GeoServices (1.0 - 1624.26.4.26.9) <F735575F-7DEF-3202-9151-589BEB162596> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff50bdf000 -     0x7fff50bedffb  com.apple.GraphVisualizer (1.0 - 100.1) <507D5812-9CB4-3C94-938C-59ED2B370818> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff50d8c000 -     0x7fff50e4aff4  com.apple.Heimdal (4.0 - 2.0) <B86FE9DB-71BB-3B6E-A4AE-2B0B44570A7F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff51847000 -     0x7fff51876ff8  com.apple.HelpData (2.3 - 199) <A62E7DB6-8960-3470-8281-293711C166D8> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff52fc6000 -     0x7fff52fcfffe  com.apple.IOAccelMemoryInfo (1.0 - 1) <50DDA9C2-BDDF-33D4-9BA9-A161E99F1EAD> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
    0x7fff52fd0000 -     0x7fff52fd8ff5  com.apple.IOAccelerator (438.7.3 - 438.7.3) <06E3E70B-C0D0-39A2-96B7-12ED6A0EBEE7> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff52fe5000 -     0x7fff52ffcfff  com.apple.IOPresentment (47.10 - 37) <32F1B3BC-4644-3982-AAB2-8EB5D5FF0161> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff53384000 -     0x7fff533cfff1  com.apple.IconServices (438.3 - 438.3) <0DADB4C3-46FF-3FDB-8A86-51E2067FC7F4> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff5358d000 -     0x7fff53594ff9  com.apple.InternationalSupport (1.0 - 45.4) <8D8D4A7D-FD35-36B8-A456-7C93030EDAB3> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff53821000 -     0x7fff53840ffd  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <6F655A32-F963-3A7E-B475-E460F4AC7D99> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff53975000 -     0x7fff53a43ffd  com.apple.LanguageModeling (1.0 - 215.1) <C456087D-5B3A-390E-A665-862FA284C59C> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff53a44000 -     0x7fff53a8cfff  com.apple.Lexicon-framework (1.0 - 72) <41F208B9-8255-3EC7-9673-FE0925D071D3> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff53a93000 -     0x7fff53a98ff3  com.apple.LinguisticData (1.0 - 353.18) <3B92F249-4602-325F-984B-D2DE61EEE4E1> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff53abf000 -     0x7fff53ae3ffe  com.apple.locationsupport (2394.0.22 - 2394.0.22) <CA6C86FD-051A-31BB-B3AF-3D02D6FD94B6> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport
    0x7fff54331000 -     0x7fff54334fff  com.apple.Mangrove (1.0 - 25) <482F300F-9B70-351F-A4DF-B440EEF7368D> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff5459d000 -     0x7fff54627ff8  com.apple.MediaExperience (1.0 - 1) <0203AF27-AB5E-32FA-B529-AB7F29EEB887> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff54e01000 -     0x7fff54e4dfff  com.apple.spotlight.metadata.utilities (1.0 - 2076.7) <0237323B-EC78-3FBF-9FC7-5A1FE2B5CE25> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff54e4e000 -     0x7fff54f1fffa  com.apple.gpusw.MetalTools (1.0 - 1) <99876E08-37D7-3828-8796-56D90C9AFBDB> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff54f7d000 -     0x7fff54f96ff4  com.apple.MobileAssets (1.0 - 619.120.1) <07E116E6-7EBC-39F2-B5B4-31BAB6BAF852> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff55195000 -     0x7fff551b3fff  com.apple.MobileKeyBag (2.0 - 1.0) <D5FA7041-297F-3ADC-8C7A-6EAAAB82EB68> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff55416000 -     0x7fff55446ff7  com.apple.MultitouchSupport.framework (3440.1 - 3440.1) <6794E1C8-9627-33DF-84F4-FDD02C97F383> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff55946000 -     0x7fff55950fff  com.apple.NetAuth (6.2 - 6.2) <B0C03C41-87A3-352B-B130-96E1A6F94B47> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff56366000 -     0x7fff563b1ffb  com.apple.OTSVG (1.0 - 643.1.5.1) <001E5E8C-1DC0-3A6E-BDE4-1B7887E47F76> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff575ce000 -     0x7fff575d9ff2  com.apple.PerformanceAnalysis (1.243.2 - 243.2) <B47C00E5-ECC2-313D-93D4-DBDF562C48EF> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff575da000 -     0x7fff57602ffb  com.apple.persistentconnection (1.0 - 1.0) <5B2D87A8-2641-3F6D-ACEA-96B00F85AAB5> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff59f67000 -     0x7fff59fc1ff6  com.apple.ProtectedCloudStorage (1.0 - 1) <6F271388-3817-336D-9B96-08C7AAC4BA39> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff59fc2000 -     0x7fff59fdbffb  com.apple.ProtocolBuffer (1 - 274.24.9.16.3) <5A020941-C43C-303E-8DE8-230FC6A84DBC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff5a43b000 -     0x7fff5a464ff1  com.apple.RemoteViewServices (2.0 - 148) <D3AAC2BE-3423-3F18-9654-E35F1DD8DDB3> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff5a47b000 -     0x7fff5a4d8ff9  com.apple.RenderBox (31 - 31) <DB4D89AA-0698-36DD-8861-B6BC333BF8B0> /System/Library/PrivateFrameworks/RenderBox.framework/Versions/A/RenderBox
    0x7fff5a5c9000 -     0x7fff5a604ff0  com.apple.RunningBoardServices (1.0 - 223.140.2) <96BB04BD-D6E0-3D70-8F36-89B46DA1DA30> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff5bee5000 -     0x7fff5bee8ff5  com.apple.SecCodeWrapper (4.0 - 448.100.6) <C4BF691D-A09E-37E8-A6CC-1145B79B8722> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff5c05b000 -     0x7fff5c182fff  com.apple.Sharing (1526.37 - 1526.37) <CBDA0ADD-F1E7-3B06-9118-C5E183F0D3D6> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff5c1db000 -     0x7fff5c1f9ff2  com.apple.shortcut (2.16 - 106) <9F669D19-13AD-3961-B247-ED728B7BFA19> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff5d597000 -     0x7fff5d88dff7  com.apple.SkyLight (1.600.0 - 451.4) <A24929C3-95E6-35A7-9654-46FF3F4D1E80> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff5e0da000 -     0x7fff5e0e8ffb  com.apple.SpeechRecognitionCore (6.0.91.2 - 6.0.91.2) <4D6CAC2A-151B-3BBE-BDB7-E2BE72128691> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff5e7c4000 -     0x7fff5e805ff9  com.apple.StreamingZip (1.0 - 1) <72CA32F8-4C96-3264-A655-623329EB3A28> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff5e91c000 -     0x7fff5e925ff7  com.apple.SymptomDiagnosticReporter (1.0 - 1238.120.1) <14929A5D-C369-3B46-844B-CD29A3D1A015> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff5ebdc000 -     0x7fff5ebecff3  com.apple.TCC (1.0 - 1) <017AB27D-6821-303A-8FD2-6DAC795CC7AA> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff5f111000 -     0x7fff5f1d7ff0  com.apple.TextureIO (3.10.9 - 3.10.9) <EEDAB753-329A-396A-8119-5BEDF7DB5A56> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff5f3a7000 -     0x7fff5f5ffff0  com.apple.UIFoundation (1.0 - 662) <EC55B9E5-7E62-380A-9AB1-FC7BEF663653> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff60275000 -     0x7fff60295ffc  com.apple.UserManagement (1.0 - 1) <9F00880E-6EA6-3684-B208-455E14EC07C8> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff61041000 -     0x7fff6112bff8  com.apple.ViewBridge (464.1 - 464.1) <25CE39DF-2052-3873-9113-DB52B385C4BB> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff612d1000 -     0x7fff612d2fff  com.apple.WatchdogClient.framework (1.0 - 67.120.2) <FFA17DA1-F6DD-34D3-A708-1F73C8BA7EA7> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff61f02000 -     0x7fff61f05ffa  com.apple.dt.XCTTargetBootstrap (1.0 - 16091) <D459D628-58C5-39A6-B7E8-B691CBEECEC1> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff61f7f000 -     0x7fff61f8dff5  com.apple.audio.caulk (1.0 - 32.3) <06D695EA-E2BC-31E4-9816-9C12542BA744> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff622cf000 -     0x7fff622d1ff3  com.apple.loginsupport (1.0 - 1) <12F77885-27DC-3837-9CE9-A25EBA75F833> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff622d2000 -     0x7fff622e5ffd  com.apple.login (3.0 - 3.0) <C68367BA-2225-31DD-B2D8-16AC0A44421F> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff64db5000 -     0x7fff64de8ffa  libAudioToolboxUtility.dylib (1104.93) <A7249C4C-6C0A-3C14-BA27-DC966F6CC6A0> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff64def000 -     0x7fff64e23fff  libCRFSuite.dylib (48) <5E5DE3CB-30DD-34DC-AEF8-FE8536A85E96> /usr/lib/libCRFSuite.dylib
    0x7fff64e26000 -     0x7fff64e30fff  libChineseTokenizer.dylib (34) <7F0DA183-1796-315A-B44A-2C234C7C50BE> /usr/lib/libChineseTokenizer.dylib
    0x7fff64ebc000 -     0x7fff64ebeff7  libDiagnosticMessagesClient.dylib (112) <C94F3B7B-1854-38EB-9778-834501C53B3F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff64f04000 -     0x7fff650bbffb  libFosl_dynamic.dylib (100.4) <737573B2-190A-3BA1-8220-807AD0A2CE5E> /usr/lib/libFosl_dynamic.dylib
    0x7fff650e2000 -     0x7fff650e8ff3  libIOReport.dylib (54) <75D177C4-BAD7-3285-B8E1-3019F49B3178> /usr/lib/libIOReport.dylib
    0x7fff651ca000 -     0x7fff651d1fff  libMatch.1.dylib (36) <5C6F3971-9D9E-3630-BDB6-60BFC5A665E0> /usr/lib/libMatch.1.dylib
    0x7fff65200000 -     0x7fff65220ff7  libMobileGestalt.dylib (826.140.5) <2BE94E6A-FA61-312F-84A1-F764D71B7E39> /usr/lib/libMobileGestalt.dylib
    0x7fff65392000 -     0x7fff65393fff  libSystem.B.dylib (1281.100.1) <0A6C8BA1-30FD-3D10-83FD-FF29E221AFFE> /usr/lib/libSystem.B.dylib
    0x7fff65420000 -     0x7fff65421fff  libThaiTokenizer.dylib (3) <4F4ADE99-0D09-3223-B7C0-C407AB6DE8DC> /usr/lib/libThaiTokenizer.dylib
    0x7fff65439000 -     0x7fff6544ffff  libapple_nghttp2.dylib (1.39.2) <07FEC48A-87CF-32A3-8194-FA70B361713A> /usr/lib/libapple_nghttp2.dylib
    0x7fff65484000 -     0x7fff654f6ff7  libarchive.2.dylib (72.140.1) <AC311FBA-F2DD-3595-AA76-769F912942B8> /usr/lib/libarchive.2.dylib
    0x7fff654f7000 -     0x7fff65590fe5  libate.dylib (3.0.1) <76EA60FB-748C-313F-8951-B076540BEA97> /usr/lib/libate.dylib
    0x7fff65594000 -     0x7fff65594ff3  libauto.dylib (187) <B6124448-7690-34AE-8939-ED84AAC630CE> /usr/lib/libauto.dylib
    0x7fff6565a000 -     0x7fff6566affb  libbsm.0.dylib (60.100.1) <00BFFB9A-2FFE-3C24-896A-251BC61917FD> /usr/lib/libbsm.0.dylib
    0x7fff6566b000 -     0x7fff65677fff  libbz2.1.0.dylib (44) <14CC4988-B6D4-3879-AFC2-9A0DDC6388DE> /usr/lib/libbz2.1.0.dylib
    0x7fff65678000 -     0x7fff656cafff  libc++.1.dylib (902.1) <59A8239F-C28A-3B59-B8FA-11340DC85EDC> /usr/lib/libc++.1.dylib
    0x7fff656cb000 -     0x7fff656e0ffb  libc++abi.dylib (902) <E692F14F-C65E-303B-9921-BB7E97D77855> /usr/lib/libc++abi.dylib
    0x7fff656e1000 -     0x7fff656e1fff  libcharset.1.dylib (59) <72447768-9244-39AB-8E79-2FA14EC0AD33> /usr/lib/libcharset.1.dylib
    0x7fff656e2000 -     0x7fff656f3fff  libcmph.dylib (8) <E72A20DB-2E86-378D-A237-EB9A1370F989> /usr/lib/libcmph.dylib
    0x7fff656f4000 -     0x7fff6570bfd7  libcompression.dylib (87) <64C91066-586D-38C0-A2F3-3E60A940F859> /usr/lib/libcompression.dylib
    0x7fff659e5000 -     0x7fff659fbff7  libcoretls.dylib (167) <770A5B96-936E-34E3-B006-B1CEC299B5A5> /usr/lib/libcoretls.dylib
    0x7fff659fc000 -     0x7fff659fdfff  libcoretls_cfhelpers.dylib (167) <940BF370-FD0C-30A8-AA05-FF48DA44FA4C> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff65fba000 -     0x7fff66019ff7  libcups.2.dylib (483.6) <C88D78FE-D238-376C-B16A-39270E39A79D> /usr/lib/libcups.2.dylib
    0x7fff66123000 -     0x7fff66123fff  libenergytrace.dylib (21) <162DFCC0-8F48-3DD0-914F-FA8653E27B26> /usr/lib/libenergytrace.dylib
    0x7fff66124000 -     0x7fff6613cfff  libexpat.1.dylib (19.60.2) <FED7C38B-92D8-342D-AED7-871B12D1F7E7> /usr/lib/libexpat.1.dylib
    0x7fff6614a000 -     0x7fff6614cfff  libfakelink.dylib (149.1) <36146CB2-E6A5-37BB-9EE8-1B4034D8F3AD> /usr/lib/libfakelink.dylib
    0x7fff6615b000 -     0x7fff66160fff  libgermantok.dylib (24) <D2AE5AC0-EDCE-3216-B8C9-CF59292A545F> /usr/lib/libgermantok.dylib
    0x7fff66161000 -     0x7fff6616aff7  libheimdal-asn1.dylib (564.140.1) <0AC6FB62-2B0F-3E93-A931-E4DC4B1D757A> /usr/lib/libheimdal-asn1.dylib
    0x7fff6616b000 -     0x7fff6625bfff  libiconv.2.dylib (59) <18311A67-E4EF-3CC7-95B3-C0EDEE3A282F> /usr/lib/libiconv.2.dylib
    0x7fff6625c000 -     0x7fff664b3fff  libicucore.A.dylib (64260.0.1) <8AC2CB07-E7E0-340D-A849-186FA1F27251> /usr/lib/libicucore.A.dylib
    0x7fff664cd000 -     0x7fff664cefff  liblangid.dylib (133) <30CFC08C-EF36-3CF5-8AEA-C1CB070306B7> /usr/lib/liblangid.dylib
    0x7fff664cf000 -     0x7fff664e7ff3  liblzma.5.dylib (16) <C131EF18-2CDD-3271-8A30-A8760D4FE166> /usr/lib/liblzma.5.dylib
    0x7fff664ff000 -     0x7fff665a6ff7  libmecab.dylib (883.11) <0D5BFD01-D4A7-3C8D-AA69-C329C1A69792> /usr/lib/libmecab.dylib
    0x7fff665a7000 -     0x7fff66809ff1  libmecabra.dylib (883.11) <E31DE74D-1B88-377F-ACD3-D789D29C3AE7> /usr/lib/libmecabra.dylib
    0x7fff66b76000 -     0x7fff66ba5fff  libncurses.5.4.dylib (57) <995DFEEA-40F3-377F-B73D-D02AC59D591F> /usr/lib/libncurses.5.4.dylib
    0x7fff66cd5000 -     0x7fff67151ff5  libnetwork.dylib (1880.120.4) <BA294A54-F309-398D-B308-F97032AFF555> /usr/lib/libnetwork.dylib
    0x7fff67152000 -     0x7fff67169fff  libnetworkextension.dylib (1095.140.2) <D0E8454C-33A9-3F96-B3A0-EDB12C32283A> /usr/lib/libnetworkextension.dylib
    0x7fff671f2000 -     0x7fff67225fde  libobjc.A.dylib (787.1) <6DF81160-5E7F-3E31-AA1E-C875E3B98AF6> /usr/lib/libobjc.A.dylib
    0x7fff67238000 -     0x7fff6723cfff  libpam.2.dylib (25.100.1) <0502F395-8EE6-3D2A-9239-06FD5622E19E> /usr/lib/libpam.2.dylib
    0x7fff6723f000 -     0x7fff67275ff7  libpcap.A.dylib (89.120.1) <A76EC076-A8EA-354C-B95F-7AB1EAFBCC65> /usr/lib/libpcap.A.dylib
    0x7fff672f9000 -     0x7fff67311fff  libresolv.9.dylib (67.40.1) <C57EDFEF-D36A-310B-8D14-8C68A625B1E8> /usr/lib/libresolv.9.dylib
    0x7fff67313000 -     0x7fff67357ff7  libsandbox.1.dylib (1217.141.2) <E8BA5E84-66AF-3995-8F8E-DDC93B0A88E1> /usr/lib/libsandbox.1.dylib
    0x7fff6736b000 -     0x7fff6736cff7  libspindump.dylib (281.3) <AE8C1AE9-5CBC-332F-BBE8-370A2A19FED6> /usr/lib/libspindump.dylib
    0x7fff6736d000 -     0x7fff67557ff7  libsqlite3.dylib (308.5) <35A2BD9F-4E33-30DE-A994-4AB585AC3AFE> /usr/lib/libsqlite3.dylib
    0x7fff677a8000 -     0x7fff677abffb  libutil.dylib (57) <F01467F6-23A7-37EE-A170-33CE1577B41D> /usr/lib/libutil.dylib
    0x7fff677ac000 -     0x7fff677b9ff7  libxar.1.dylib (425.2) <EE964412-9E25-30B3-BCC0-CCEFBCC8094B> /usr/lib/libxar.1.dylib
    0x7fff677bf000 -     0x7fff678a1fff  libxml2.2.dylib (33.5) <A579D158-2E09-316C-872E-DD9D93401B2F> /usr/lib/libxml2.2.dylib
    0x7fff678a5000 -     0x7fff678cdfff  libxslt.1.dylib (16.9) <34A45627-DA5B-37D2-9609-65B425E0010A> /usr/lib/libxslt.1.dylib
    0x7fff678ce000 -     0x7fff678e0ff3  libz.1.dylib (76) <793D9643-CD83-3AAC-8B96-88D548FAB620> /usr/lib/libz.1.dylib
    0x7fff6795c000 -     0x7fff67996ff7  libswiftAccelerate.dylib (??? - ???) <731E4BD2-B8E2-397C-A56D-747E8E4B81D9> /usr/lib/swift/libswiftAccelerate.dylib
    0x7fff67997000 -     0x7fff679ad72f  libswiftAppKit.dylib (??? - ???) <18802260-9EFC-3E31-B9EA-7767A8B6AB52> /usr/lib/swift/libswiftAppKit.dylib
    0x7fff679b7000 -     0x7fff679c66f7  libswiftCloudKit.dylib (??? - ???) <18B281D8-E7D8-3997-9B6C-5D2C5F7EDEAB> /usr/lib/swift/libswiftCloudKit.dylib
    0x7fff679d7000 -     0x7fff67d8c437  libswiftCore.dylib (5.2 - 1103.8.25.8) <E56CCFCA-99E1-36E5-A6BC-F31F53C79910> /usr/lib/swift/libswiftCore.dylib
    0x7fff67d99000 -     0x7fff67da1d7f  libswiftCoreData.dylib (??? - ???) <5188E034-FC7D-3C6B-A42A-69375097E05B> /usr/lib/swift/libswiftCoreData.dylib
    0x7fff67da2000 -     0x7fff67da4fff  libswiftCoreFoundation.dylib (??? - ???) <FBA4566B-AD2B-35D7-BC9A-48BE3D88B658> /usr/lib/swift/libswiftCoreFoundation.dylib
    0x7fff67da5000 -     0x7fff67db2fff  libswiftCoreGraphics.dylib (??? - ???) <A8225B5F-F64D-32F8-AD91-D919DF614AA0> /usr/lib/swift/libswiftCoreGraphics.dylib
    0x7fff67db3000 -     0x7fff67db6ffb  libswiftCoreImage.dylib (??? - ???) <1485E8EF-EDA9-3981-84D7-DF3BFE361929> /usr/lib/swift/libswiftCoreImage.dylib
    0x7fff67db7000 -     0x7fff67dbcfb7  libswiftCoreLocation.dylib (??? - ???) <3732D3F0-9586-372E-82B0-2C76F401B793> /usr/lib/swift/libswiftCoreLocation.dylib
    0x7fff67e11000 -     0x7fff67e17fff  libswiftDarwin.dylib (??? - ???) <F3684684-8258-310F-B05B-BD8A696F0F29> /usr/lib/swift/libswiftDarwin.dylib
    0x7fff67e18000 -     0x7fff67e2fcdf  libswiftDispatch.dylib (??? - ???) <94D67EF4-42B5-3F54-8D86-B6B2B16827DC> /usr/lib/swift/libswiftDispatch.dylib
    0x7fff67e30000 -     0x7fff67fb5277  libswiftFoundation.dylib (??? - ???) <0173898D-FDA6-378D-87E9-1F2A9BD227D3> /usr/lib/swift/libswiftFoundation.dylib
    0x7fff67fc4000 -     0x7fff67fc6ff3  libswiftIOKit.dylib (??? - ???) <FD313708-AE48-3C72-A154-53EC839A8D55> /usr/lib/swift/libswiftIOKit.dylib
    0x7fff67fdc000 -     0x7fff67fe3f0f  libswiftMetal.dylib (??? - ???) <B3C74138-DE3C-3676-9983-F12757819C9C> /usr/lib/swift/libswiftMetal.dylib
    0x7fff6805f000 -     0x7fff68062fe7  libswiftObjectiveC.dylib (??? - ???) <E668BD5D-E1D6-3C21-BA7E-5C3A672A964E> /usr/lib/swift/libswiftObjectiveC.dylib
    0x7fff68074000 -     0x7fff68079fbf  libswiftQuartzCore.dylib (??? - ???) <101D3E4D-231A-3CD8-97B4-4E37F4081CD2> /usr/lib/swift/libswiftQuartzCore.dylib
    0x7fff68163000 -     0x7fff68165fff  libswiftXPC.dylib (??? - ???) <3CD547C3-7082-37EA-B289-F6BA6C4D4E26> /usr/lib/swift/libswiftXPC.dylib
    0x7fff68166000 -     0x7fff6816cfe7  libswiftos.dylib (??? - ???) <BC78F369-90A3-33FF-AEA9-F9CA5F0A07ED> /usr/lib/swift/libswiftos.dylib
    0x7fff6816d000 -     0x7fff6818efff  libswiftsimd.dylib (??? - ???) <21EEA85D-EBBF-378C-8803-DCD904B93B68> /usr/lib/swift/libswiftsimd.dylib
    0x7fff6818f000 -     0x7fff68194ff3  libcache.dylib (83) <AF488D13-9E89-35E0-B078-BE37CC5B8586> /usr/lib/system/libcache.dylib
    0x7fff68195000 -     0x7fff681a0fff  libcommonCrypto.dylib (60165.120.1) <C7912BE5-993E-3581-B2A0-6AABDC8C5562> /usr/lib/system/libcommonCrypto.dylib
    0x7fff681a1000 -     0x7fff681a8fff  libcompiler_rt.dylib (101.2) <49B8F644-5705-3F16-BBE0-6FFF9B17C36E> /usr/lib/system/libcompiler_rt.dylib
    0x7fff681a9000 -     0x7fff681b2ff7  libcopyfile.dylib (166.40.1) <3C481225-21E7-370A-A30E-0CCFDD64A92C> /usr/lib/system/libcopyfile.dylib
    0x7fff681b3000 -     0x7fff68245fdb  libcorecrypto.dylib (866.140.1) <60567BF8-80FA-359A-B2F3-A3BAEFB288FD> /usr/lib/system/libcorecrypto.dylib
    0x7fff68352000 -     0x7fff68392ff0  libdispatch.dylib (1173.100.2) <CD9C059C-91D9-30E8-8926-5B9CD0D5D4F5> /usr/lib/system/libdispatch.dylib
    0x7fff68393000 -     0x7fff683c9fff  libdyld.dylib (750.6) <789A18C2-8AC7-3C88-813D-CD674376585D> /usr/lib/system/libdyld.dylib
    0x7fff683ca000 -     0x7fff683caffb  libkeymgr.dylib (30) <DB3337BE-01CA-3425-BD0C-87774FC0CDC0> /usr/lib/system/libkeymgr.dylib
    0x7fff683cb000 -     0x7fff683d7ff3  libkxld.dylib (6153.141.2.2) <30AACC57-2314-3863-94B2-64AB3E002B35> /usr/lib/system/libkxld.dylib
    0x7fff683d8000 -     0x7fff683d8ff7  liblaunch.dylib (1738.140.1) <AFBCBDD3-0B55-3ECD-8E04-A73A3A57356B> /usr/lib/system/liblaunch.dylib
    0x7fff683d9000 -     0x7fff683deff7  libmacho.dylib (959.0.1) <AA613A9C-961A-3B67-B696-4622FA59FC4E> /usr/lib/system/libmacho.dylib
    0x7fff683df000 -     0x7fff683e1ff3  libquarantine.dylib (110.40.3) <F234E51D-FD0B-3EE4-B679-AE3EE9C536C3> /usr/lib/system/libquarantine.dylib
    0x7fff683e2000 -     0x7fff683e3ff7  libremovefile.dylib (48) <7C7EFC79-BD24-33EF-B073-06AED234593E> /usr/lib/system/libremovefile.dylib
    0x7fff683e4000 -     0x7fff683fbff3  libsystem_asl.dylib (377.60.2) <1563EE02-0657-3B78-99BE-A947C24122EF> /usr/lib/system/libsystem_asl.dylib
    0x7fff683fc000 -     0x7fff683fcff7  libsystem_blocks.dylib (74) <0D53847E-AF5F-3ACF-B51F-A15DEA4DEC58> /usr/lib/system/libsystem_blocks.dylib
    0x7fff683fd000 -     0x7fff68484fff  libsystem_c.dylib (1353.100.2) <BBDED5E6-A646-3EED-B33A-91E4331EA063> /usr/lib/system/libsystem_c.dylib
    0x7fff68485000 -     0x7fff68488ffb  libsystem_configuration.dylib (1061.141.1) <0EE84C33-64FD-372B-974A-AF7A136F2068> /usr/lib/system/libsystem_configuration.dylib
    0x7fff68489000 -     0x7fff6848cfff  libsystem_coreservices.dylib (114) <A199156E-058D-3ABB-BCE9-4B9F20DCED0F> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff6848d000 -     0x7fff68495fff  libsystem_darwin.dylib (1353.100.2) <5B12B5DB-3F30-37C1-8ECC-49A66B1F2864> /usr/lib/system/libsystem_darwin.dylib
    0x7fff68496000 -     0x7fff6849dfff  libsystem_dnssd.dylib (1096.100.3) <EBB4C2C2-E031-3094-B40A-E67BF261D295> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff6849e000 -     0x7fff6849fffb  libsystem_featureflags.dylib (17) <29FD922A-EC2C-3F25-BCCC-B58D716E60EC> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff684a0000 -     0x7fff684edff7  libsystem_info.dylib (538) <8A321605-5480-330B-AF9E-64E65DE61747> /usr/lib/system/libsystem_info.dylib
    0x7fff684ee000 -     0x7fff6851aff7  libsystem_kernel.dylib (6153.141.2.2) <5CDBBC06-6CA6-3432-9FDA-681047866F3E> /usr/lib/system/libsystem_kernel.dylib
    0x7fff6851b000 -     0x7fff68562fff  libsystem_m.dylib (3178) <00F331F1-0D09-39B3-8736-1FE90E64E903> /usr/lib/system/libsystem_m.dylib
    0x7fff68563000 -     0x7fff6858afff  libsystem_malloc.dylib (283.100.6) <8549294E-4C53-36EB-99F3-584A7393D8D5> /usr/lib/system/libsystem_malloc.dylib
    0x7fff6858b000 -     0x7fff68598ffb  libsystem_networkextension.dylib (1095.140.2) <F06C65C5-2CBE-313C-96E1-A09240F9FE57> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff68599000 -     0x7fff685a2ff7  libsystem_notify.dylib (241.100.2) <FA22F928-D91B-3AA5-96BB-3186AC0FB264> /usr/lib/system/libsystem_notify.dylib
    0x7fff685a3000 -     0x7fff685abfef  libsystem_platform.dylib (220.100.1) <009A7C1F-313A-318E-B9F2-30F4C06FEA5C> /usr/lib/system/libsystem_platform.dylib
    0x7fff685ac000 -     0x7fff685b6fff  libsystem_pthread.dylib (416.100.3) <62CB1A98-0B8F-31E7-A02B-A1139927F61D> /usr/lib/system/libsystem_pthread.dylib
    0x7fff685b7000 -     0x7fff685bbff3  libsystem_sandbox.dylib (1217.141.2) <051C4018-4345-3034-AC98-6DE42FB8273B> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff685bc000 -     0x7fff685befff  libsystem_secinit.dylib (62.100.2) <F80872AA-E1FD-3D7E-8729-467656EC6561> /usr/lib/system/libsystem_secinit.dylib
    0x7fff685bf000 -     0x7fff685c6ffb  libsystem_symptoms.dylib (1238.120.1) <5820A2AF-CE72-3AB3-ABCC-273A3419FB55> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff685c7000 -     0x7fff685ddff2  libsystem_trace.dylib (1147.120) <04B47629-847B-3D74-8ABE-C05EF9DEEFE4> /usr/lib/system/libsystem_trace.dylib
    0x7fff685df000 -     0x7fff685e4ff7  libunwind.dylib (35.4) <42B7B509-BAFE-365B-893A-72414C92F5BF> /usr/lib/system/libunwind.dylib
    0x7fff685e5000 -     0x7fff6861affe  libxpc.dylib (1738.140.1) <3E243A41-030F-38E3-9FD2-7B38C66C35B1> /usr/lib/system/libxpc.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 2
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 2824293
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=615.3M resident=0K(0%) swapped_out_or_unallocated=615.3M(100%)
Writable regions: Total=1.6G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.6G(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               128K        1 
Activity Tracing                   256K        1 
CG image                             8K        2 
CoreAnimation                       72K        3 
CoreGraphics                         8K        1 
CoreImage                            4K        1 
CoreUI image data                  380K        3 
Foundation                           4K        1 
Image IO                             8K        1 
Kernel Alloc Once                    8K        1 
MALLOC                           320.3M       71 
MALLOC guard page                   48K       10 
MALLOC_MEDIUM (reserved)         960.0M        8         reserved VM address space (unallocated)
MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)
STACK GUARD                       56.0M        8 
Stack                             11.6M        8 
VM_ALLOCATE                        100K       11 
__DATA                            29.7M      321 
__DATA_CONST                       698K       24 
__DATA_DIRTY                        128        1 
__FONT_DATA                          4K        1 
__LINKEDIT                       389.0M        6 
__OBJC_RO                         32.3M        1 
__OBJC_RW                         1908K        2 
__TEXT                           226.3M      323 
__UNICODE                          564K        1 
mapped file                      263.4M       21 
shared memory                      636K       14 
===========                     =======  ======= 
TOTAL                              2.6G      847 
TOTAL, minus reserved VM space     1.3G      847 
``à

Localizations?

I could supply a German localization for the app.

Would probably need to be prepared with a .strings file and an .lproj folder.

PS: my own system is English, but I could switch for testing, if necessary.

Menu text is not showed when using icon and when it is text is overlapping with icon

When i run my bitbar plugin (https://github.com/matopeto/xcode-build-times) on swiftbar,

Text in menu is not showed by default, it is showed only when in click on item, and then is overlapping with ico

This is how it look:

obrazek

obrazek

And this is how it sholud look:

obrazek

This is snippet from my plugin output:

0s | templateImage=JVBERi0xLjQKJbXtrvsKMyAwIG9iago8PCAvTGVuZ3RoIDQgMCBSCiAgIC9GaWx0ZXIgL0ZsYXRlRGVjb2RlCj4+CnN0cmVhbQp4nGVYy67sSBHc11f4BzD1fmxng4TEYtgiFsiIGaH2YmDB75MRkeXunqsrnetol+2sfEbUbyEe+PefX44//iMev/zX8V//dMQzrdaO/9kvfw7p+Hf429/tt3j8M6R4/OX47Uhc+Qf8l8Zx3SHVs49+pHONctyHwZHLkc8YK0HvALUQLN5Z9bi+oYHZcjCUI1eu2gyUuLCynbEsgzVVgFQngH0OYG7AhXicMBCl9l6Zc/lamQdgX58gEXBd83UlJtq1BlAdWIj3Gug1AdgObWU/S8FW66zHC7DmbLClTLAIRgBoBc/1lvVcG9UgjLTriXUzV4IG81fSspj6Uc9mX3vh46ubXebDmoGGPW4+pH+aOdRuzCQvr5j5XMZz9nubgPYyRK5jaZlwFxBu5aLnOj4Hp33cYaR6bgbSWr4uL9xT3Mx+WJUmQZy89nDDM4IArRBwYc2db2xyOYKfiu1gBdgc5Q/7UmzCYzZuBXuPdAlCg1B+oUs4e+DCJ4QVhhrDj+hwca0MLBLTUGZIokVrwd0ACUELhjss72c2v6+zjPUGcfCOueD6QriuP14HWzathJgmsSXb4bQEo10r9mNYAkyGNQFYmbAgBl5v2Rb79lh4WaWOhGDMxGAnZlphwRDWCoiPGCgsowWvJUti5B2+dx0BHm7IyWZlAT8QZEv9eU4mOa5lNpGl2rRvoUaTZcpk5K2yU9buWIFmesMt+5vObtkz+deui7/sQeZuK550JktdMw4NJQhZlMzMNvbNeuKvXvrZiK7jV26D37UKuvGeuGgVwmq+QA0mPJBYBtZtetH7Y0WRd/NPwn9WZ4VVbggOrdwkV5Y5DmsRjT60j40zTppsW7cdjTWUV8VMgCORhOYC74ZWMnIbQGpyVUZA8ftgMReLunl9MC9rYk5lNbRWGupjsZZY93athEYb8Rxt/AIeY9Uo2dc5u/qZtVTztrfLppxdZXofRGYARKaGoTkQt1Gq9o+qH2wISa3OuuAwqwxNuWbSp5Z0A3lpv9l1xnWtC9eNXS0lX4ZxYX8tvRDaVeF6tlB0kwoQ525P0yGHRwMo3GC095dTXdkGREbO74EQccsaC8EAWKn6QLBfDZb6ca+NjzvMefYOtDiMJDbiGXEXWUWItp65+PWeEUuR6Kq/yE90MywUtnW+VvtLkXsotXrh+owT4M5nyfueeYU5vdTAKz82mi/UQEJBASROoElfIoNQ3u70pFrIiBv7JOeJV57AxZYR1/teREXYyGF6PIXGwmN7bWyL9+4xjcX2Qj+rzHikBuHqMgkpisBHr5jg1cFPwy+d3QdmWeNvcpV9tWOSRF+HBFWsCODvyYxMniSDYTQjlXsWB+MxN9yAqsbQTUxfWzw0COAoVOrK3fsD8syGB1q77bVUJnzzyi/Ma/nCd42cZ3oU9m/k6xIcVl1Nw6CgjgLclufxZR3Mnda2l+EGYxfJxThTKRqItA95j3aAoC1v+oNT1UbTbESxW0vufFC9yvLXMmicmS4drJrBxt/4Fw9h7jayo8Gm1bBnzCJQo8asw0N4UWNdDya8Ws2H4dhHZ6frLJNbBhmCn/EldKDOsA3OJ9k4mK/4y+/gkTBo68tWx+yLAcBXOoNHZINpfxAe6yQrnRyhs21d8AZ8LNg5CuxvKcenpbIcQ2ly7tzcKNOvR4TSak+zCu5+wasD+dNJBplsaNKT5XJzhmFkotkwDTKTbTjgZrW9X4PFeoIwVNLrTgKj+ejx9H4M2oAt2AhZerI+Y8fm922pX1SrNcFXhQVv3KVk2o/evFjUbnBZavxzqjyIE9sWjEwqvtV+h65vHNT8q+gH50RpvIlerCH6OA4TZXKWkiVm5gOQWRq41sxbni1y4mIDf5ubaz++jb/kikwTQPgQPNL5RN6EaKE8ADsyNau/KYVpAdQMXhTYZ/D6Pug0eJY5IB+SJCTOITpxawkpoy/00/HzW4XtTqtivDf/EXRi1MhPvsC16RRVinhWkEJqTsLA/+mDh2hgeoi4kXUs53Su266dL8KkzEOwyi1giprNPhM0h8CSnWGaf9jiRT/V88ADxU7NmZhnr01erT2oNZHZPolN0ss54myYXyRRDvYmfOByGg19wMb3ANHu319eztTNDg4bo0fhAeD3keV5eUONmlsuCpiuWzFsFuJyAq06fKBcHiFCF1zf0AWMZ7fUjVXBh/oh4UxJgo2M0AaSxI+UE7BYUVWhTOk5hlzoeuQYfshbqWHCr7FlHN+b3oQKd7srQ5GB8XlrhL2UH0XfdEWZJHxdbgKV6bRmqZKT0yWyB+iE4Cr2qXNJXD5bXRmL1rPDujg2yIkq2Uze8GhqkAoFUIIb7ilbitNXc+v0JAl8bVaGbWCOv7bIxw/zKS1n606K7dnqXJCp6XJa5w1AOewDB6J94iD5TEsbBy7vjk3xHF37jEM47PMPhrPvwxFEYXnkWDl1x5WcpYqwfyKPnceX1FY1DyQOxq4gAn1tbdV223YybC0p/K5hkU49v+As5Va6bOgcE6bmufknA+JE1XMZath5K/7rZZNaPFKz5/RSwxm7mzmr2l4UCtem0e/bYNikZm3zb7SqWT/SoMgVT1JQwjqrp0M8llNz4KH50orI5tdWDOlDFEBOAFeXIX5bRxX75uz7DEsqKaWtX6SZPDIYPxXExXUPuEVvT5mWnfq+Wz/bUMcGlo+YBgU5GjbZdNF27c9lcWFqN1RsKnsJRl7y6U11FsVdXRGizba3WvQDMknJTjtcYyJFcHmI0l+uS01AINNdsbKpuZglCb1c5pLIuPqFNHZhTG9cEs2QMqTarqdJyCSy83NkgeF/uSz3gz4p9q6UTsqCyb1drvSXJpSOAOCPmvb5AJxU/KjCkwoEzQ8WcGBaWt7HDggbzz90JMESqfuwApVJRXT6YedWOcgc0IukF1GXeal91aFXpqcJGtK9dREET36i5MnqcirtU0fF5WFykmFmTup1O2k+McGwGC7osk5DMKaz54rrQOyPfVYDQ4TSKSfr1DKtJvEldPrivFjKqtAHL9ddB3vGlmTq8+HRa6AD19Zya5cVVB6H+nP8AAfuY4oul+A4Lrg8AxXM/fg2D46lAHqTSmkjwN5dNJECLddTMJlCWmKL9QDaHp5Do0QpA0oPVtCHqzeEn6dDknZiSm/Zh+OulyRh8AJ6ueqil0SnJjeCUpJQo9np+NqDVA6JSmQJ3+5TwuSCCt+dzbUWcqHCNuqwxT756MzlOxx+MjpkC2a0ymdsCpTyeu9cwkDyC1/GecvLpRlwH67Z3Movk7EHqa/Fs7PbpVlzAqVx1pi6eKk0HTziOShTYfjtymy5eHfRJon0KLrEHUOgS32h7d6PMssuUsEMB6koQzWnJ4V0GnrqoBq8XZcNNvOXizZRHygMb0vVVRoF0aDH7s2jGofsa4upJm5ImSUnuATTMbcfzlUI+dYeMeenK5/g+uFeoeAvah8AfR/5PpjagY4bHHCfFkuYwUONPft2QdX47EuHOoVa/OVKDEwlCw2cQ+CYleoN5kOCSNk1iorrkOzTCcXrh6/9K/wc/g/iTy7+CmVuZHN0cmVhbQplbmRvYmoKNCAwIG9iagogICAyNjY1CmVuZG9iagoyIDAgb2JqCjw8CiAgIC9FeHRHU3RhdGUgPDwKICAgICAgL2EwIDw8IC9DQSAxIC9jYSAxID4+CiAgID4+Cj4+CmVuZG9iago1IDAgb2JqCjw8IC9UeXBlIC9QYWdlCiAgIC9QYXJlbnQgMSAwIFIKICAgL01lZGlhQm94IFsgMCAwIDE3IDE3IF0KICAgL0NvbnRlbnRzIDMgMCBSCiAgIC9Hcm91cCA8PAogICAgICAvVHlwZSAvR3JvdXAKICAgICAgL1MgL1RyYW5zcGFyZW5jeQogICAgICAvSSB0cnVlCiAgICAgIC9DUyAvRGV2aWNlUkdCCiAgID4+CiAgIC9SZXNvdXJjZXMgMiAwIFIKPj4KZW5kb2JqCjEgMCBvYmoKPDwgL1R5cGUgL1BhZ2VzCiAgIC9LaWRzIFsgNSAwIFIgXQogICAvQ291bnQgMQo+PgplbmRvYmoKNiAwIG9iago8PCAvQ3JlYXRvciAoY2Fpcm8gMS4xNC44IChodHRwOi8vY2Fpcm9ncmFwaGljcy5vcmcpKQogICAvUHJvZHVjZXIgKGNhaXJvIDEuMTQuOCAoaHR0cDovL2NhaXJvZ3JhcGhpY3Mub3JnKSkKPj4KZW5kb2JqCjcgMCBvYmoKPDwgL1R5cGUgL0NhdGFsb2cKICAgL1BhZ2VzIDEgMCBSCj4+CmVuZG9iagp4cmVmCjAgOAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDMwNjQgMDAwMDAgbiAKMDAwMDAwMjc4MCAwMDAwMCBuIAowMDAwMDAwMDE1IDAwMDAwIG4gCjAwMDAwMDI3NTcgMDAwMDAgbiAKMDAwMDAwMjg1MiAwMDAwMCBuIAowMDAwMDAzMTI5IDAwMDAwIG4gCjAwMDAwMDMyNTYgMDAwMDAgbiAKdHJhaWxlcgo8PCAvU2l6ZSA4CiAgIC9Sb290IDcgMCBSCiAgIC9JbmZvIDYgMCBSCj4+CnN0YXJ0eHJlZgozMzA4CiUlRU9GCg==
---
Today (mb-ios.xcworkspace)

Thank you!!!

I also need to say thank you. This looks awesome so far. All this time @matryer wanted a Swift rewrite, and now we have one… really hope this will be going places. I will contribute as much as I can… but probably not with code, because I'm a n00b in that regard. ;)

Bravo!

Differences from BitBar

Hi, I just found this project. I currently use BitBar and I'm trying to figure out whether I should switch to this app instead. What new features and/or bugfixes does SwiftBar offer in comparison to BitBar? Having this documented somewhere would surely be useful to many people.

Get Plugins - Install results in file with "404: Not Found"

After installing a plugin from the "Get Plugins" screen, SwiftBar shows a "⚠️" emoji in the menu bar.

"Show Error" displays the following Error: name of plugin: line 1: 404:: command not found

Checking the installed Plugin, its text is "404: Not Found%" instead of a valid script.

cd ~/Tools/SwiftBar-Plugins/
cat cycle_text_and_detail.sh
404: Not Found%

Apparently, SwiftBar runs into a 404 error when downloading the script, and writes that to the script file.

UI bug: non-SwiftBar menulet icons left of a SwiftBar plug-in occasionally jitter when user accesses the plug-in menu

On Catalina 10.15.7.

Simple test plug-in, saved as test.10s.sh:

#!/bin/zsh

echo "foo | dropdown=false"
echo "---"
echo "bar"

Multiple jitters begin after ca. 15 seconds into the clip, and it seems that only the icons left of the SwiftBar plug-in jitter. The GIF conversion didn't catch all, but two are clearly visible.

I also tested this with a monospaced font, and you have the same issue.

https://i.imgur.com/1Oy80SF.gif

vsnap

Deal with problems regarding "Disable Plugin" in tandem with only one loaded plug-in

When a user only has one plug-in loaded, and then clicks on the "Disable Plugin" command in the plugin's dropdown menu, SwiftBar vanishes from the menu bar completely. (The same happens when he clicks on "Disable" in Preferences.)

With SwiftBar gone from the menu bar, the only option to get any plugins back is to quit SwiftBar, which is now difficult, because it has vanished. So you'd need to do it in Activity Monitor, or with killall SwiftBar or `osascript -e 'tell application "SwiftBar" to quit' etc.

After relaunch, SwiftBar will then display the "SwiftBar" default string in the menu bar, and is available again for the user.

This, however, should happen immediately, i.e.: with SwiftBar running, when only one plug-in is loaded, and the user disables that plug-in, SwiftBar should immediately display the "SwiftBar" default string, so the user still has access to the app and its preferences.

Template Images not Displaying

I have a plugin that is not timed — it is simply DarkModeToggle.sh. It is not being detected by SwiftBar, as far as I can tell.

Interestingly, this is a very slightly modified version of BitBar's plugin.

For kicks, I tried using SwiftBar's plugin browser to see if there was an equivalent for SwiftBar. There was, but installing it simply led to the Install button reading Failed. (I suspect this is because the file already existed).

I then renamed my version, thus clearing the way for the installation of SwiftBar's. This worked — kinda — and it was detected. However, the script was simply a 404:

casey@imacpro ~/D/A/BitBar> cat DarkModeToggle.sh
404: Not Found⏎ 

Interestingly though, SwiftBar did detect it, and presented it simply as an ellipsis (...), due to the error. However, upon renaming my file back to DarkModeToggle.sh, it was no longer detected.

File attached for reference, renamed to txt so GitHub will accept it.

DarkModeToggle.txt

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.