Skip to content

Commit

Permalink
Install motion
Browse files Browse the repository at this point in the history
  • Loading branch information
mvgijssel committed Sep 16, 2024
1 parent dcb9cba commit a232cb2
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions devenv/deploys/workflow/tasks/install_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@

@deploy("Install Workflow")
def install_workflow():
brew.casks(
name="Install Worflow Apps",
casks=[
"alfred",
],
present=True,
latest=False,
upgrade=False,
)
apps = [
"alfred",
"motion",
]

for app in apps:
brew.casks(
name="Install Workflow App: {app}",
casks=[app],
present=True,
latest=False,
upgrade=False,
)

macos.default(
name='Disable "Correct spelling automatically"',
Expand Down

0 comments on commit a232cb2

Please sign in to comment.