Terminal.appで実行環境に登録されているすべてのTerminalのテーマのWindowを新規オープンするAppleScriptです。
実行環境のTerminal.appに登録されている「プロファイル」をリストアップし、各プロファイル(AppleScript用語辞書的には「settings set」)で新規Windowを作成します。
本プログラムは、Terminal.appの機能確認のためのものであって、これ自体に意味はありません。
AppleScript名:TerminalですべてのテーマのWindowを新規作成する |
— Created 2019-04-14 by Takaaki Naganoya — 2019 Piyomaru Software tell application "Terminal" set nList to name of every settings set repeat with i in nList set j to contents of i changeSettingAndMakeNewWindow(j) of me end repeat end tell on changeSettingAndMakeNewWindow(aTheme as string) tell application "Terminal" set tmpID to settings set aTheme set default settings to tmpID set startup settings to tmpID tell window 1 do script "" activate end tell end tell end changeSettingAndMakeNewWindow |
More from my site
(Visited 60 times, 1 visits today)