Created
November 14, 2024 16:44
-
-
Save Ryel/fd23e431bdcbb04e627a8af45c27a853 to your computer and use it in GitHub Desktop.
Revisions
-
Ryel created this gist
Nov 14, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ # send push notification when slow task finishes (MacOS only) # notify func as one-liner (e.g. for alias) osascript -e 'display notification "foo" with title "bar"' # add bash script with notify func { echo '#!/bin/bash' echo '/usr/bin/osascript -e "display notification \"$*\""' } | sudo tee /usr/local/bin/notify > /dev/null && sudo chmod +x /usr/local/bin/notify # example: # slow_task; notify slow_task finished