Skip to content

Latest commit

 

History

History
39 lines (37 loc) · 840 Bytes

README.md

File metadata and controls

39 lines (37 loc) · 840 Bytes

auto-paste

A simple python script to automatically abstract->paste->empty the contents of your clipboard. After 3 seconds when testing your clipboard has changed, the script will automatically paste the contents of your clipboard and empty it.

quick start

  1. Clone the repo
git clone https://github.com/husterdjx/auto-paste.git

python environment

  1. Install the requirements
pip3 install -r requirements.txt
# or pip install -r requirements.txt
  1. Run the script
python3 paste.py
# or python paste.py

conda environment

  1. Create a conda environment
conda create -n auto-paste python=3.8
  1. Activate the environment
conda activate auto-paste
  1. Install the requirements
pip install -r requirements.txt
  1. Run the script
python paste.py

Enjoy!