most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat| #!/usr/bin/env bash | |
| # many settings from https://raw.githubusercontent.com/mathiasbynens/dotfiles/master/.macos | |
| # many settings from https://raw.githubusercontent.com/thoughtbot/laptop/master/mac | |
| # instructions on finding the default you've changed: https://pawelgrzybek.com/change-macos-user-preferences-via-command-line/ | |
| # previous install notes at: | |
| # https://gist.github.com/llimllib/ee591266e05bd880629a4e7511a61bb3 | |
| # https://gist.github.com/llimllib/e864a92da94ceb1ef0da2e06fd1f8d70 | |
| # https://gist.github.com/llimllib/3fc4fefcfc0152dad8c58201246d8802 | |
| # | |
| # this script's URL is: https://gist.github.com/llimllib/c4dd0a98a426022b0365d4c0a9090460 |
| #!/bin/bash | |
| bucket=$1 | |
| set -e | |
| echo "Removing all versions from $bucket" | |
| versions=`aws s3api list-object-versions --bucket $bucket |jq '.Versions'` | |
| markers=`aws s3api list-object-versions --bucket $bucket |jq '.DeleteMarkers'` |