Last active
November 15, 2018 21:23
-
-
Save uwo/4f87f199182f0217e361bd30a0d7b6d8 to your computer and use it in GitHub Desktop.
osx-sounds
This file contains 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
.cpcache/ | |
.nrepl-port |
This file contains 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
{:paths ["."]} |
This file contains 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
(ns osx-sounds | |
(:require [clojure.java.shell :refer [sh]])) | |
(defn play [filepath] (sh "afplay" filepath "-v" "10" "-q" "1")) | |
(defn osx-submarine [] (play "/System/Library/Sounds/Submarine.aiff")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment