-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile-mac-apps.yml
66 lines (59 loc) · 1.67 KB
/
Taskfile-mac-apps.yml
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
# https://taskfile.dev
version: "3"
tasks:
default:
deps:
- iTerm
- discord
- slack
- edge
- sunsama
- tunnelblick
iTerm:
desc: Launch iTerm browser
status:
- test "$(uname -s)" = "Darwin"
- test -f /Applications/iTerm.app/ || echo "Failed to locate iTerm"
cmds:
- echo "Opening iTerm."
- open -a /Applications/iTerm.app/
edge:
desc: Launch Edge browser
status:
- test "$(uname -s)" = "Darwin"
- test -f /Applications/Microsoft\ Edge.app/ || echo "Failed to locate Microsoft Edge"
cmds:
- echo "Opening Edge."
- open -a /Applications/Microsoft\ Edge.app/
discord:
desc: Launch Discord
status:
- test "$(uname -s)" = "Darwin"
- test -f /Applications/Discord.app || echo "Failed to locate Discord.app"
cmds:
- echo "Opening Discord."
- open -a /Applications/Discord.app
slack:
desc: Launch Slack
status:
- test "$(uname -s)" = "Darwin"
- test -f /Applications/Slack.app || echo "Failed to locate Slack.app"
cmds:
- echo "Opening slack."
- open -a /Applications/Slack.app
sunsama:
desc: Launch Sunsama
status:
- test "$(uname -s)" = "Darwin"
- test -f /Applications/Sunsama.app || echo "Failed to locate Sunsama.app"
cmds:
- echo "Opening Sunsama."
- open -a /Applications/Sunsama.app
tunnelblick:
desc: Launch Tunnelblick VPN client
status:
- test "$(uname -s)" = "Darwin"
- test -f /Applications/Tunnelblick.app || echo "Failed to locate Tunnelblick.app"
cmds:
- echo "Opening Tunnelblick."
- open -a /Applications/Tunnelblick.app