Skip to content

Instantly share code, notes, and snippets.

@aerobounce
aerobounce / CoreAudioTypes.h
Created March 8, 2020 12:44
MacOSX10.14.sdk/System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudioTypes.h
/*==================================================================================================
File: CoreAudio/CoreAudioTypes.h
Contains: Definitions types common to the Core Audio APIs
Copyright: (c) 1985-2010 by Apple, Inc., all rights reserved.
Bugs?: For bug reports, consult the following page on
the World Wide Web:
@aerobounce
aerobounce / リーディングリストに追加
Created July 6, 2015 08:00
Chromium から Safariのリーディングリストにページを追加する
on run {input, parameters}
tell application "Chromium"
set pageUrl to get URL of active tab of first window
end tell
tell application "Safari" to add reading list item pageUrl
display notification pageUrl with title "⭕️リーディングリストに追加しました"
return input
end run