Greenclip
Greenclip[1] is a simple clipboard manager designed to be integrated with rofi and written in Haskell.
Installation
Install greenclipAUR from AUR.
To integrate the daemon start-up on boot is it possibile to create a service:
/usr/lib/systemd/user/greenclip.service
[Unit] Description=Start greenclip daemon After=display-manager.service [Service] ExecStart=/usr/bin/greenclip daemon Restart=always [Install] WantedBy=default.target
Enable the service to start at boot:
systemctl --user enable greenclip.service
Usage
- Spawn the daemon
/usr/bin/greenclip daemon
- Show entries as a list whithin rofi using:
rofi -modi "clipboard:greenclip print" -show clipboard
- The entry that you have selected will be in your clipboard now
- Configuration file is placed in
~/.config/greenclip.cfg
- To clear all clipboard history run
greenclip clear
Configuration example
~/.config/greenclip.cfg
Config {maxHistoryLength = 250, historyPath = "~/.cache/greenclip.history", staticHistoryPath = "~/.cache/greenclip.staticHistory", usePrimarySelectionAsInput = False}