This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/osascript | |
| on run argv | |
| if (count of argv) is 0 then | |
| set deviceName to "Living Room" | |
| else | |
| set deviceName to item 1 of argv | |
| end if | |
| tell application "System Events" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | |
| "extends": ["ultracite"], | |
| "formatter": { | |
| "indentStyle": "tab", | |
| "indentWidth": 4, | |
| "lineWidth": 80 | |
| }, | |
| "javascript": { | |
| "formatter": { |