-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.json
More file actions
82 lines (74 loc) · 2.32 KB
/
example.json
File metadata and controls
82 lines (74 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"delay": 0.25,
"space": [{
"column": {
"max": 2,
"spacing": 5
},
"row": {
"max": 3,
"spacing": 5
},
"space": 1,
"window": [{
"application": "TextEdit",
"description": "Open the TextEdit application with pre-filled text.",
"shell": "echo 'mac-space Test #1' | open -f"
}, {
"application": "TextEdit",
"description": "Open the TextEdit application with pre-filled text.",
"shell": "echo 'mac-space Test #2' | open -f"
}, {
"application": "TextEdit",
"description": "Open the TextEdit application with pre-filled text.",
"shell": "echo 'mac-space Test #3' | open -f"
}, {
"application": "TextEdit",
"description": "Open the TextEdit application with pre-filled text.",
"shell": "echo 'mac-space Test #4' | open -f"
}, {
"application": "TextEdit",
"description": "Open the TextEdit application with pre-filled text.",
"shell": "echo 'mac-space Test #5' | open -f"
}, {
"application": "TextEdit",
"description": "Open the TextEdit application with pre-filled text.",
"shell": "echo 'mac-space Test #6' | open -f"
}]
}, {
"column": {
"max": 2,
"spacing": 5
},
"row": {
"max": 2,
"spacing": 5
},
"space": 2,
"window": [{
"application": "Finder",
"description": "Open a Finder window.",
"osascript": "tell application \"Finder\" to make new Finder window"
}, {
"application": "Terminal",
"description": "Open the Terminal application and run a command. Space 3 will close this terminal.",
"osascript": "tell application \"Terminal\" to do script \"echo -n -e '\\\\033]0;mac-space Removable Terminal\\\\007';\""
}, {
"application": "Finder",
"description": "Open a Finder window.",
"osascript": "tell application \"Finder\" to make new Finder window"
}, {
"application": "Terminal",
"description": "Open the Terminal application and run a command.",
"osascript": "tell application \"Terminal\" to do script \"ls -la\""
}]
}, {
"space": 3,
"window": [{
"application": "Terminal",
"description": "Close the previously opened terminal window.",
"osascript": "tell application \"Terminal\" to do script \"echo -n -e '\\\\033]0;mac-space Removable Terminal\\\\007';\"",
"osascriptPre": "tell application \"Terminal\" to close (every window whose name contains \"mac-space Removable Terminal\")"
}]
}]
}