Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 591 Bytes

README.md

File metadata and controls

21 lines (20 loc) · 591 Bytes

#HOW TO USE simply download clipboard.lua and place it into the same directory with your rc.lua, import the library:

require("clipboard")

then add your custom key-bindings to trigger the clipboard manager:

-- clipboard
-- {{{
awful.key({ modkey },            "c",     copy_to_clipboard),
awful.key({ modkey, "Shift"   }, "c",     clear_clipboard),
awful.key({ modkey },            "v",     clipboard_menu),
-- }}}

the default storage of the clipboard is ~/.sel and can be changed in clipboard.lua to fit your need.

#LICENSE this software is distributed in MIT License