Package Details: clipman 1.6.3-1

Git Clone URL: https://aur.archlinux.org/clipman.git (read-only, click to copy)
Package Base: clipman
Description: A simple clipboard manager for Wayland
Upstream URL: https://github.com/chmouel/clipman
Licenses: GPL3
Provides: clipman
Submitter: husam212
Maintainer: husam212
Last Packager: husam212
Votes: 40
Popularity: 0.060297
First Submitted: 2019-05-13 08:35 (UTC)
Last Updated: 2024-04-14 08:36 (UTC)

Latest Comments

1 2 3 Next › Last »

asklow commented on 2023-12-10 08:29 (UTC)

I'm not sure. But there's an issue. Although I don't have any issues with those numbers, since they are compulsory for cliphist's function.

husam212 commented on 2023-12-10 08:18 (UTC)

@foxjaw is there an easy way to remove the numbers from cliphist list output?

asklow commented on 2023-12-10 06:09 (UTC) (edited on 2023-12-10 06:32 (UTC) by asklow)

@husam212 cliphist works perfectly fine on all pickers here (rofi wl fork, wofi, fuzzel & fzf). Make sure you run cliphist database with wl-paste in your sway config
exec wl-paste --watch cliphist store
Then launch your favorite picker:
bindsym <key> exec cliphist list | wofi --dmenu | cliphist decode | wl-copy

wofi is not maintained anymore. Clipman is built primarily for gnome. I use fuzzel/cliphist. It's amazing !
https://shorturl.at/uDJQY

husam212 commented on 2023-10-05 07:21 (UTC)

I switched the package upstream to chmouel fork, thanks merlock.

I think cliphist is a good alternative, but it doesn't integrate with wofi as easy.

merlock commented on 2023-10-02 02:22 (UTC)

There's a repo clone at https://github.com/chmouel/clipman/

I've also heard some good things about cliphist [1][2]

[1] https://github.com/sentriz/cliphist

[2] https://archlinux.org/packages/extra/x86_64/cliphist/

Yam4710 commented on 2023-10-01 20:31 (UTC)

The upstream project owner may have retired the project: both https://github.com/yory8/clipman and https://github.com/yory8/ give 404.

as a result, we can't build the AUR package anymore:

==> Retrieving sources...
  -> Downloading v1.6.2.tar.gz...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     9    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (22) The requested URL returned error: 404
==> ERROR: Failure while downloading https://github.com/yory8/clipman/archive/v1.6.2.tar.gz
    Aborting...

I have not found another clone of that repo at the moment. Any idea for a path forward ?

Ergus commented on 2023-08-17 20:31 (UTC)

Can't build, seems related to the issue reported by @qwertea

selector.go:11:2: cannot find package "github.com/kballard/go-shellquote" in any of:
        /usr/src/github.com/kballard/go-shellquote (from $GOROOT)
        /home/user/go/src/github.com/kballard/go-shellquote (from $GOPATH)
main.go:16:2: cannot find package "gopkg.in/alecthomas/kingpin.v2" in any of:
        /usr/src/gopkg.in/alecthomas/kingpin.v2 (from $GOROOT)
        /home/user/go/src/gopkg.in/alecthomas/kingpin.v2 (from $GOPATH)
==> ERROR: A failure occurred in build().
    Aborting...
error: failed to build 'clipman-1.6.2-1':
error: packages failed to build: clipman-1.6.2-1

Y7n05h commented on 2022-02-01 15:21 (UTC)

clipman W: ELF file ('usr/bin/clipman') lacks FULL RELRO, check LDFLAGS.
clipman W: ELF file ('usr/bin/clipman') lacks PIE.

Importing environment variables before go build fixes these problems.

  export CGO_CPPFLAGS="${CPPFLAGS}"
  export CGO_CFLAGS="${CFLAGS}"
  export CGO_CXXFLAGS="${CXXFLAGS}"
  export CGO_LDFLAGS="${LDFLAGS}"
  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"