-
-
Save waiting-for-dev/8bf4e1e719bd1dbfdc71e19a201bf4b6 to your computer and use it in GitHub Desktop.
A CopyQ command to implement a Clipboard FIFO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Command] | |
Command=" | |
copyq: | |
maxrow = count() - 1 | |
select(maxrow) | |
paste() | |
if (config('move') == 'true') { | |
remove(0) | |
} else { | |
remove(maxrow) | |
}" | |
GlobalShortcut=ctrl+shift+v | |
Name=FIFO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment