▲ 2 ▼ KDE cli clipboard (iusearchlinux.fyi) submitted 2 years ago by tunawasherepoo@iusearchlinux.fyi to c/snippets@iusearchlinux.fyi 4 comments fedilink hide all child comments $ cat /usr/local/bin/c #!/bin/sh if test -n "$1"; then STDIN="${1}" elif test ! -t 0; then STDIN=$(cat) else echo 'Usage:' echo ' c < /path/to/file' echo ' c text-to-be-copied' echo ' command | c' exit 1 fi qdbus org.kde.klipper /klipper setClipboardContents "$STDIN" $ cat /usr/local/bin/v #!/bin/sh qdbus org.kde.klipper /klipper getClipboardContents This is what I like to use :)
[–] kurumin@linux.community 2 points 2 years ago (1 child) Thank you so much! You are so kind! permalink fedilink source parent hideshow 2 child comments replies: [–] tunawasherepoo@iusearchlinux.fyi [S] 2 points 2 years ago Aw thanks! I'm glad I was able to help :) permalink fedilink source parent
[–] tunawasherepoo@iusearchlinux.fyi [S] 2 points 2 years ago Aw thanks! I'm glad I was able to help :) permalink fedilink source parent