9 lines
194 B
Shell
Executable file
9 lines
194 B
Shell
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
CURDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
"${CURDIR}/cbclear"
|
|
|
|
osascript -e 'display notification "Clipboard cleared" with title "pbclear"'
|