unixorn/tumult.plugin.zsh

View on GitHub
bin/enable-bouncing-dock-icons

Summary

Maintainability
Test Coverage
#!/usr/bin/env bash
#
# Enable bouncing dock icons
#
# Copyright 2020, Joe Block

set -o pipefail

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

defaults write com.apple.dock no-bouncing -bool FALSE
killall Dock