All Projects → hluk → Copyq

hluk / Copyq

Licence: gpl-3.0
Clipboard manager with advanced features

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
Objective-C++
1391 projects
shell
77523 projects
CMake
9771 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Copyq

cbs
interface to manage clipboard from the command line
Stars: ✭ 25 (-99.42%)
Mutual labels:  clipboard, clipboard-manager
clipper
📋 Cross Platform Desktop App to Save history of all information you copy and use them whenever with a solitary snap
Stars: ✭ 42 (-99.03%)
Mutual labels:  clipboard, clipboard-manager
clipboard-manager-electron
A clipboard manager built with Electron
Stars: ✭ 92 (-97.88%)
Mutual labels:  clipboard, clipboard-manager
unlimited-clipboard
simple clipboard manager with unlimited history on electron
Stars: ✭ 21 (-99.52%)
Mutual labels:  clipboard, clipboard-manager
cliptext
Clipboard manager for macOS. Built with Electron.js
Stars: ✭ 37 (-99.15%)
Mutual labels:  clipboard, clipboard-manager
SharpClipboard
A library for anonymously monitoring clipboard entries.
Stars: ✭ 127 (-97.08%)
Mutual labels:  clipboard, clipboard-manager
CLIp
CLIp is a clipboard manager for a command line interface written in 100% standard C only. Pipe to it to copy, pipe from it to paste.
Stars: ✭ 12 (-99.72%)
Mutual labels:  clipboard, clipboard-manager
Ds
A Haxe library containing data structures for games.
Stars: ✭ 318 (-92.68%)
Mutual labels:  cross-platform
Monomod
A C# modding swiss army knife, powered by cecil.
Stars: ✭ 322 (-92.59%)
Mutual labels:  cross-platform
Python Cmake Buildsystem
A cmake buildsystem for compiling Python
Stars: ✭ 317 (-92.71%)
Mutual labels:  cross-platform
Ultralight
Next-generation HTML renderer for apps and games
Stars: ✭ 3,585 (-17.51%)
Mutual labels:  cross-platform
Open Source Xamarin Apps
📱 Collaborative List of Open Source Xamarin Apps
Stars: ✭ 318 (-92.68%)
Mutual labels:  cross-platform
Openlibm
High quality system independent, portable, open source libm implementation
Stars: ✭ 323 (-92.57%)
Mutual labels:  cross-platform
Pennywise
Cross-platform application to open any website or media in a floating window
Stars: ✭ 3,382 (-22.18%)
Mutual labels:  cross-platform
Electron React Boilerplate
A Foundation for Scalable Cross-Platform Apps
Stars: ✭ 18,727 (+330.9%)
Mutual labels:  cross-platform
Lan Share
Cross platform LAN File transfer application built with Qt C++ framework
Stars: ✭ 317 (-92.71%)
Mutual labels:  cross-platform
Wxphp
Build cross-platform software with rich native GUIs using the combined power of the PHP language and the wxWidgets library.
Stars: ✭ 328 (-92.45%)
Mutual labels:  cross-platform
Nosqlclient
Cross-platform and self hosted, easy to use, intuitive mongodb management tool - Formerly Mongoclient
Stars: ✭ 3,399 (-21.79%)
Mutual labels:  cross-platform
Modern.forms
Cross-platform spiritual successor to Winforms for .NET Core
Stars: ✭ 323 (-92.57%)
Mutual labels:  cross-platform
Extrakto
tmux - quickly select, copy/insert/complete text without a mouse
Stars: ✭ 320 (-92.64%)
Mutual labels:  clipboard

CopyQ

Documentation Status Translation Status Linux Build Status macOS Build Status Windows Build Status Coverage Status

CopyQ is advanced clipboard manager with editing and scripting features.

Overview

CopyQ monitors system clipboard and saves its content in customized tabs. Saved clipboard can be later copied and pasted directly into any application.

Features

  • Support for Linux, Windows and OS X 10.13+
  • Store text, HTML, images or any other custom formats
  • Quickly browse and filter items in clipboard history
  • Sort, create, edit, remove, copy/paste, drag'n'drop items in tabs
  • Add notes or tags to items
  • System-wide shortcuts with customizable commands
  • Paste items with shortcut or from tray or main window
  • Fully customizable appearance
  • Advanced command-line interface and scripting
  • Ignore clipboard copied from some windows or containing some text
  • Support for simple Vim-like editor and shortcuts
  • Many more features

Install

Packaging status

To install CopyQ, use the binary package or installer provided for your system.

For unlisted systems, please follow the instructions in Build from Source Code.

Windows

Chocolatey package

On Windows you can use one of the following options to install the app:

Using Scoop:

scoop install copyq

Using Chocolatey:

choco install copyq

OS X

Homebrew package

On OS X you can use Homebrew to install the app.

brew install --cask copyq

Debian 10+, Ubuntu 18.04+, and their derivatives

Install copyq package.

copyq-plugins is highly recommended. copyq-doc available.

Ubuntu PPA

Install and keep CopyQ always up to date by running the following three commands from the terminal:

sudo add-apt-repository ppa:hluk/copyq
sudo apt update
sudo apt install copyq

Fedora

Install copyq package.

Arch Linux

Install copyq package.

Other Linux Distributions

Install Flatpak and com.github.hluk.copyq from Flathub.

flatpak install flathub com.github.hluk.copyq

Start the application from menu or with following command:

flatpak run com.github.hluk.copyq

Using the App

To start the application double-click the program icon or run copyq.

The list with clipboard history is accessible by clicking on system tray icon or running copyq toggle.

Copying text or image to clipboard will create new item in the list.

Selected items can be:

  • edited (F2)
  • removed (Delete)
  • sorted (Ctrl+Shift+S, Ctrl+Shift+R)
  • moved around (with mouse or Ctrl+Up/Down)
  • copied back to clipboard (Ctrl+C)
  • pasted to previously active window (Enter)

All items will be restored when application is started next time.

To exit the application select Exit from tray menu or press Ctrl-Q keys in the application window.

Read more:

Adding Functionality

To create custom action that can be executed from menu, with shortcut or when clipboard changes:

  • go to Command dialog (F6 shortcut),
  • click Add button and select predefined command or create new one,
  • optionally change the command details (shortcut, name),
  • click OK to save the command.

One of very useful predefined commands there is "Show/hide main window".

Read more:

Command Line

CopyQ has powerful command line and scripting interface.

Note: The main application must be running to be able to issue commands using command line.

Print help for some useful command line arguments:

copyq --help
copyq --help add

Insert some texts to the history:

copyq add -- 'first item' 'second item' 'third item'

Omitting double-dash (--) in the command above would mean that slash (\) in arguments will be treated as special character so that \n is new line character, \t is tab, \\ is slash, \x is x etc.

Create single item containing two lines:

copyq add 'first line\nsecond line'

Print content of the first three items:

copyq read 0 1 2
copyq separator "," read 0 1 2

Show current clipboard content:

copyq clipboard
copyq clipboard text/html
copyq clipboard \?    # lists formats in clipboard

Copy text to the clipboard:

copyq copy "Some Text"

Load file content into clipboard:

copyq copy - < file.txt
copyq copy text/html < index.html
copyq copy image/jpeg - < image.jpg

Create image items:

copyq write image/gif - < image.gif
copyq write image/svg - < image.svg

Read more:

Build from Source Code

To build the application from source code, first install the required dependencies:

Install Dependencies

Ubuntu

sudo apt install \
  cmake \
  extra-cmake-modules \
  git \
  libqt5svg5 \
  libqt5svg5-dev \
  libqt5waylandclient5-dev \
  libwayland-dev \
  libxfixes-dev \
  libxtst-dev \
  qtbase5-private-dev \
  qtdeclarative5-dev \
  qttools5-dev \
  qttools5-dev-tools \
  qtwayland5 \
  qtwayland5-dev-tools

RHEL / CentOS / Oracle Linux

sudo yum install \
  cmake \
  extra-cmake-modules \
  gcc-c++ \
  git \
  libXfixes-devel \
  libXtst-devel \
  qt5-qtbase-devel \
  qt5-qtdeclarative-devel \
  qt5-qtsvg-devel \
  qt5-qttools-devel \
  qt5-qtwayland-devel \
  wayland-devel \
  kf5-knotifications-devel

Build the App

Change install prefix if needed:

git clone https://github.com/hluk/CopyQ.git
cd CopyQ
cmake .
make

You can now run the built app.

./copyq

Contributions

You can help translate the application (click the banner below) or help fix issues and implement new features.

Translations

Read more:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].