12 lines
241 B
Bash
Executable file
12 lines
241 B
Bash
Executable file
#!/bin/sh
|
|
|
|
clear_pasteboard() {
|
|
pbcopy -pboard "$1" < /dev/null
|
|
}
|
|
|
|
clear_pasteboard general
|
|
clear_pasteboard ruler
|
|
clear_pasteboard find
|
|
clear_pasteboard font
|
|
|
|
osascript -e 'display notification "Clipboard cleared" with title "pbclear"'
|