diff --git a/pkg/clipboard/unclip_linux.go b/pkg/clipboard/unclip_linux.go index 4edbacfc9e..de146b764c 100644 --- a/pkg/clipboard/unclip_linux.go +++ b/pkg/clipboard/unclip_linux.go @@ -21,6 +21,9 @@ func clearClipboardHistory(ctx context.Context) error { if strings.HasPrefix(call.Err.Error(), "The name org.kde.klipper was not provided") { return nil } + if strings.HasPrefix(call.Err.Error(), "The name is not activatable") { + return nil + } return call.Err }