System icons¶
The workflow module provides access to a number of default
macOS icons via ICON_* constants for use when generating Alfred feedback:
1from workflow import Workflow, ICON_INFO
2
3wf = Workflow()
4wf.add_item('For your information', icon=ICON_INFO)
5wf.send_feedback()
List of icons¶
These are all the icons accessible in workflow. They (and
more) can be found in
/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/.
Name |
Preview |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
If you’d like other standard macOS icons to be added, please add an issue on GitHub.
