this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

run `npm run format`

+3 -3
+3 -3
index.js
··· 1 - import { runAppleScript } from "run-applescript"; 1 + import {runAppleScript} from 'run-applescript'; 2 2 3 3 /** 4 4 * @param {string} profile 5 5 * @return {Promise<void>} 6 6 */ 7 7 export async function setTerminalProfile(profile) { 8 - await runAppleScript(`tell application "Terminal" 8 + await runAppleScript(`tell application "Terminal" 9 9 set current settings of tabs of windows to settings set "${profile}" 10 10 end tell`); 11 11 } 12 12 13 13 export async function setTerminalDefaultProfile(profile) { 14 - await runAppleScript(`tell application "Terminal" 14 + await runAppleScript(`tell application "Terminal" 15 15 set default settings to settings set "${profile}" 16 16 end tell`); 17 17 }