git.fiddlerwoaroof.com
README.md
1c3ffb59
 # A simple clipboard utility
 
90323906
 This wraps <https://github.com/Shinmera/ubiquitous> to provide a handy suite of
1c3ffb59
 utilities to manage a set of named clipboards.
 
 # Installation
 
8a26cb08
 ```(lang=sh)
0516d511
 sbcl --load ~/quicklisp/setup.lisp --eval '(ql:quickload :buildapp)' --eval '(buildapp:build-buildapp)'
a8179758
 
0516d511
 ./buildapp --output ~/bin/multicall/uclip --asdf-tree ~/quicklisp/quicklisp --asdf-path `pwd` --load-system uclip \
            --dispatched-entry /uclip::paste \
            --dispatched-entry ucopy/uclip::copy \
            --dispatched-entry upaste/uclip::paste \
            --dispatched-entry uswitch/uclip::switch-clipboards \
            --dispatched-entry upop/uclip::pop-clipboard \
            --dispatched-entry uls/uclip::list-clipboards \
            --dispatched-entry ushow/uclip::show-clipboard-contents \
            --dispatched-entry uclear/uclip::clear-clipboard
a8179758
 
0516d511
 xargs  -n1  ln -fs multicall/uclip <<EOF
 ucopy
 upaste
 uswitch
 upop
 uls
 ushow
 uclear
 EOF
8a26cb08
 ```