aboutsummaryrefslogtreecommitdiffstats
path: root/bin/clipd
blob: 0c200c64cd8195fddf9c1c7240441207dc4b0efd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env lua5.3

-- needs xsel, clipnotify
-- needs luaposix, luarocks-5.3 install --local luaposix
-- cat .clip_history | dmenu -l 10 | xsel -ib
-- FIXME-all entries are copied with an extra new line
local clipd = {}
local string = require("string")
local signal = require("posix.signal")

signal.signal(signal.SIGINT, function(signum) os.exit(128 + signum) end)

local function loop()
    local clip_hist_size = 100
    local clip_hist = "/home/devi/.clip_history"

    local matched = false
    while true do
        local wait_for_event = io.popen("clipnotify")

        local handle = io.popen("xsel -ob")
        local last_clip_entry = handle:read("*a")
        local hist_file = io.open(clip_hist, "a+")

        for line in hist_file:lines() do
            if (string.sub(line, 0, string.len(line)) == last_clip_entry) then
                matched = true
            end
        end
        if matched ~= true then hist_file:write(last_clip_entry .. "\n") end
        matched = false
        hist_file:close()
        wait_for_event:close()
        handle:close()
    end
end

loop()
return clipd