This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Totally stolen from | |
| # https://gist.github.com/ieatfood/814b065964492f71f728da59a47413bc | |
| # | |
| # Export this applescript as an app, and then just double click to toggle on & off | |
| use framework "IOBluetooth" | |
| use scripting additions | |
| set blueToothDevice to "Nothing ear (1)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # syntax = docker/dockerfile:1 | |
| FROM registry.docker.com/library/ruby:3.3.1-slim as base | |
| ARG BUNDLE_DEPLOYMENT \ | |
| BUNDLE_WITHOUT | |
| ENV BUNDLE_DEPLOYMENT=$BUNDLE_DEPLOYMENT \ | |
| BUNDLE_WITHOUT=$BUNDLE_WITHOUT \ | |
| BUNDLE_PATH="/usr/local/bundle" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Usage: | |
| # ./notify | |
| # ./notify "Hi" | |
| # ./notify "Finished" "Your thing is done" | |
| set -e | |
| TITLE="${1:-Yo!}" | |
| MESSAGE="${2:-Your thing completed}" |
OlderNewer