Skip to content

Instantly share code, notes, and snippets.

@ehershey
Last active May 24, 2018 06:05
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ehershey/3a9eaccf3d74b90b7666 to your computer and use it in GitHub Desktop.
Save ehershey/3a9eaccf3d74b90b7666 to your computer and use it in GitHub Desktop.
How to use the Dream Cheeky Big Red Button on a Mac in OS X
# Alternative to homebrew - install Mono directly via http://download.mono-project.com/archive/3.12.1/macos-10-x86/MonoFramework-MDK-3.12.1.macos10.xamarin.x86.pkg
# Install homebrew -
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install mono
brew install mono
# Download windows executable
open https://www.dropbox.com/s/3xmsr8cw02dfkl3/DreamCheekyBTN.zip
# Unzip
unzip DreamCheekyBTN.zip
# Create script
echo -e '#!/bin/sh\necho button pushed on $(hostname) | mail ernie@ernie.org' > /tmp/button.sh ; chmod 755 /tmp/button.sh# Run windows executable in mono
mono DreamCheekyBTN.exe CMD=/tmp/button.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment