stumpwm/clipboard.lisp @ 581345d6b360 default tip
More
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Mon, 29 Jun 2026 12:50:56 -0400 |
| parents | c0d31d738157 |
| children | (none) |
(in-package :stumpwm-user) (defcommand generate-random-uuid () () (pbcopy (string-downcase (princ-to-string (uuid:make-v4-uuid)))) (message "Copied random UUID to clipboard.")) (defcommand bee-movie-script () () (run-shell-command "pbeecopy") (message "Copied the entire Bee Movie script to clipboard.")) (defcommand dump-clipboard () () (echo (run-shell-command "pbpaste" t))) #; Scratch --------------------------------------------------------------------