Skip to content

Instantly share code, notes, and snippets.

@NickWoodhams
Created March 7, 2018 16:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NickWoodhams/1de4ce89954a5c986f14ab49eba9725c to your computer and use it in GitHub Desktop.
Save NickWoodhams/1de4ce89954a5c986f14ab49eba9725c to your computer and use it in GitHub Desktop.
Push Clipboard to Phone (Pushover App)
#!/bin/bash
clipboard="message="
clipboard+=$(pbpaste)
curl -s \
--form-string "token=" \
--form-string "user=" \
--form-string "$clipboard" \
https://api.pushover.net/1/messages.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment