1
0
mirror of https://github.com/Toxblh/MTMR.git synced 2026-01-10 17:08:39 +00:00

Merge pull request #219 from gtataranni/master

Activate Finder
This commit is contained in:
Anton Palgunov 2019-10-08 21:41:03 +01:00 committed by GitHub
commit f378de675e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
tell application "Finder" tell application "Finder"
make new Finder window if not (exists window 1) then
set target of front window to path to home folder as string make new Finder window
set target of front window to path to home folder as string
end if
activate activate
end tell end tell

View File

@ -130,7 +130,7 @@ The pre-installed configuration contains less or more than you'll probably want,
"source": { "source": {
"filePath": "/Users/toxblh/Library/Application Support/MTMR/iTunes.nowPlaying.scpt", "filePath": "/Users/toxblh/Library/Application Support/MTMR/iTunes.nowPlaying.scpt",
// or // or
"inline": "tell application \"Finder\"\rmake new Finder window\rset target of front window to path to home folder as string\ractivate\rend tell", "inline": "tell application \"Finder\"\rif not (exists window 1) then\rmake new Finder window\rset target of front window to path to home folder as string\rend if\ractivate\rend tell",
// or // or
"base64": "StringInbase64" "base64": "StringInbase64"
} }
@ -314,7 +314,7 @@ To close a group, use the button:
```js ```js
"action": "appleScript", "action": "appleScript",
"actionAppleScript": { "actionAppleScript": {
"inline": "tell application \"Finder\"\rmake new Finder window\rset target of front window to path to home folder as string\ractivate\rend tell" "inline": "tell application \"Finder\"\rif not (exists window 1) then\rmake new Finder window\rset target of front window to path to home folder as string\rend if\ractivate\rend tell",
// "filePath" or "base64" will work as well // "filePath" or "base64" will work as well
}, },
``` ```