clipmenu-spmenu/README.md

75 lines
2.6 KiB
Markdown
Raw Normal View History

2018-02-20 12:48:14 +01:00
[![Tests](https://img.shields.io/travis/cdown/clipmenu/develop.svg)](https://travis-ci.org/cdown/clipmenu)
2018-02-20 13:00:24 +01:00
clipmenu is a simple clipboard manager using [dmenu][] (or [rofi][] with
`CM_LAUNCHER=rofi`) and [xsel][].
2014-02-05 10:42:35 +01:00
2017-03-19 10:43:39 +01:00
# Demo
![Demo](https://cloud.githubusercontent.com/assets/660663/24079784/6f76da94-0c88-11e7-8251-40b1f02ebf3c.gif)
2017-01-06 18:50:09 +01:00
# Usage
Start `clipmenud`, then run `clipmenu` to select something to put on the
clipboard.
2014-02-05 10:42:35 +01:00
A systemd user service for starting clipmenud is installed as part of the project.
If you want to start `clipmenud` immediately via systemd and have it be started when you login, run:
systemctl --user enable --now clipmenud
You may wish to bind a shortcut in your window manager to launch `clipmenu`.
2017-02-17 17:45:03 +01:00
All args passed to clipmenu are transparently dispatched to dmenu. That is, if
you usually call dmenu with args to set colours and other properties, you can
2017-01-06 18:50:09 +01:00
invoke clipmenu in exactly the same way to get the same effect, like so:
2017-01-12 09:34:41 +01:00
clipmenu -i -fn Terminus:size=8 -nb '#002b36' -nf '#839496' -sb '#073642' -sf '#93a1a1'
2017-01-06 18:50:09 +01:00
If you prefer to collect clips on demand rather than running clipmenud as a
daemon, you can bind a key to the following command for one-off collection:
CM_ONESHOT=1 clipmenud
For a full list of environment variables that clipmenud can take, please see
`clipmenud --help`.
2018-03-12 01:21:53 +01:00
2018-08-21 21:45:30 +02:00
# Installation
Several distributions, including Arch and Nix, provide clipmenu as an official
package called `clipmenu`.
## Installation - Manual
If your distribution doesn't provide a package, you can run the following
the commands to install this. (Or better yet, create package for your distribution!).
You'll first need to install `xsel` and `clipnotify`. If you'll also need `dmenu` unless
you plan to set `CM_LAUNCHER` to a different value, like `rofi`.
git clone https://github.com/cdown/clipmenu.git
cd clipmenu
sudo make install
2018-08-21 21:45:30 +02:00
2017-01-06 18:50:09 +01:00
# How does it work?
clipmenud is less than 200 lines, and clipmenu is less than 100, so hopefully
it should be fairly self-explanatory. However, at the most basic level:
2017-01-06 18:50:09 +01:00
## clipmenud
1. `clipmenud` uses [clipnotify](https://github.com/cdown/clipnotify) to wait
for new clipboard events.
2017-01-06 18:50:09 +01:00
2. If `clipmenud` detects changes to the clipboard contents, it writes them out
to the cache directory and an index using a hash as the filename.
2017-01-06 18:50:09 +01:00
## clipmenu
1. `clipmenu` reads the index to find all available clips.
2017-01-06 18:50:09 +01:00
2. `dmenu` is executed to allow the user to select a clip.
3. After selection, the clip is put onto the PRIMARY and CLIPBOARD X
selections.
2014-02-05 10:42:35 +01:00
[dmenu]: http://tools.suckless.org/dmenu/
2017-03-19 08:55:57 +01:00
[rofi]: https://github.com/DaveDavenport/Rofi
[xsel]: http://www.vergenet.net/~conrad/software/xsel/