unixorn/tumult.plugin.zsh

View on GitHub
bin/focusmode-disable

Summary

Maintainability
Test Coverage
#!/bin/bash
#
# Copyright 2018 Joe Block <jpb@unixorn.net>

if [[ "$(uname -s)" != 'Darwin' ]]; then
  echo 'Sorry, this script only works on macOS'
  exit 1
fi

# Disable Focus Mode (aka Single App Mode)
defaults write com.apple.dock single-app -bool false && killall Dock