this repo has no description
0
fork

Configure Feed

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

rename package

+22 -16
+12 -6
changelog.md
··· 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 7 8 - ## [3.0.0](https://github.com/patrik-csak/terminal-profile/compare/v2.0.0...v3.0.0) – 2025-05-27 8 + ## [Unreleased](https://github.com/patrik-csak/mac-terminal/compare/v3.0.0...HEAD) 9 + 10 + ### Changed 11 + 12 + - **BREAKING**: Renamed package from `terminal-profile` to `mac-terminal` 13 + 14 + ## [3.0.0](https://github.com/patrik-csak/mac-terminal/compare/v2.0.0...v3.0.0) – 2025-05-27 9 15 10 16 ### Added 11 17 ··· 13 19 14 20 ### Removed 15 21 16 - - **BREAKING**: Support for Node.js versions before v20 22 + - **BREAKING**: Removed support for Node.js versions before v20 17 23 18 - ## [2.0.0](https://github.com/patrik-csak/terminal-profile/compare/v1.2.0...v2.0.0) – 2023-05-10 24 + ## [2.0.0](https://github.com/patrik-csak/mac-terminal/compare/v1.2.0...v2.0.0) – 2023-05-10 19 25 20 26 ### Added 21 27 ··· 23 29 24 30 ### Removed 25 31 26 - - **BREAKING**: Support for Node.js v14 32 + - **BREAKING**: Removed support for Node.js v14 27 33 28 - ## [1.2.0](https://github.com/patrik-csak/terminal-profile/compare/v1.1.0...v1.2.0) – 2023-03-15 34 + ## [1.2.0](https://github.com/patrik-csak/mac-terminal/compare/v1.1.0...v1.2.0) – 2023-03-15 29 35 30 36 ### Added 31 37 32 38 - [`setTerminalDefaultProfile()`](readme.md#setterminaldefaultprofile) 33 39 34 - ## [1.1.0](https://github.com/patrik-csak/terminal-profile/compare/v1.0.3...v1.1.0) – 2022-12-03 40 + ## [1.1.0](https://github.com/patrik-csak/mac-terminal/compare/v1.0.3...v1.1.0) – 2022-12-03 35 41 36 42 ### Added 37 43
+2 -2
package-lock.json
··· 1 1 { 2 - "name": "terminal-profile", 2 + "name": "mac-terminal", 3 3 "version": "3.0.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 - "name": "terminal-profile", 8 + "name": "mac-terminal", 9 9 "version": "3.0.0", 10 10 "license": "MIT", 11 11 "os": [
+3 -3
package.json
··· 1 1 { 2 - "name": "terminal-profile", 2 + "name": "mac-terminal", 3 3 "version": "3.0.0", 4 - "description": "Manage macOS terminal profile (theme)", 4 + "description": "Manage macOS Terminal.app with Node.js", 5 5 "keywords": [ 6 6 "macos", 7 7 "terminal", ··· 10 10 ], 11 11 "repository": { 12 12 "type": "git", 13 - "url": "git+https://github.com/patrik-csak/terminal-profile.git" 13 + "url": "git+https://github.com/patrik-csak/mac-terminal.git" 14 14 }, 15 15 "license": "MIT", 16 16 "author": "Patrik Csak <p@trikcsak.com>",
+5 -5
readme.md
··· 1 - # `terminal-profile` 1 + # `mac-terminal` 2 2 3 - Node.js library for managing the macOS Terminal.app’s profile (aka theme) 3 + Node.js library for managing [Apple’s macOS Terminal.app](https://en.wikipedia.org/wiki/Terminal_(macOS)) 4 4 5 5 ## Install 6 6 7 7 ```sh 8 - npm install terminal-profile 8 + npm install mac-terminal 9 9 ``` 10 10 11 11 ## API ··· 19 19 Update all of Terminal’s windows and tabs to the `profile` profile 20 20 21 21 ```javascript 22 - import {setTerminalProfile} from 'terminal-profile'; 22 + import {setTerminalProfile} from 'mac-terminal'; 23 23 24 24 await setTerminalProfile('One Dark'); 25 25 ``` ··· 33 33 Update Terminal’s default profile to `profile` 34 34 35 35 ```javascript 36 - import {setTerminalDefaultProfile} from 'terminal-profile'; 36 + import {setTerminalDefaultProfile} from 'mac-terminal'; 37 37 38 38 await setTerminalDefaultProfile('One Light'); 39 39 ```