diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2024-11-17 23:18:23 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2024-11-17 23:18:23 +1300 |
commit | ce0e10aa2c3a7dd71b29e089b399d570559df7c5 (patch) | |
tree | c6545e634d0b2dace157ddda9516ba4553b981c0 | |
parent | Handle alternative user config files (diff) | |
download | vixf-ce0e10aa2c3a7dd71b29e089b399d570559df7c5.tar.gz vixf-ce0e10aa2c3a7dd71b29e089b399d570559df7c5.zip |
Expand a comment
-rw-r--r-- | vixf.py3 | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -19,7 +19,10 @@ import sys import tempfile import time -# Install these with pip or your system package manager +# Install these with pip or your system package manager; note that on +# GNU/Linux, pyperclip needs either xclip(1) or xsel(1) to be installed, +# preferably the former. I wanted to do this in pure Python (and drop +# a dependency) without these forks, but haven't figured that out (yet). import pynput import pyperclip |