Inspired by
http://milianw.de/code-snippets/acce...cli-under-kde4
I decided to try to make this command
which dumps the current clipboard entry to stdout, a keyboard shortcut.
It works fine on the command line (using konsole).
I'd like to set it up as a keyboard shortcut dumping to a file:
But so far no joy.
The problem is not with setting up the key. if I instead use
there is output.
Is it possible to make this work?
TIA
http://milianw.de/code-snippets/acce...cli-under-kde4
I decided to try to make this command
Code:
qdbus org.kde.klipper /klipper getClipboardContents
It works fine on the command line (using konsole).
I'd like to set it up as a keyboard shortcut dumping to a file:
Code:
qdbus org.kde.klipper /klipper getClipboardContents >> ~/recipes/RecipeLog.txt
The problem is not with setting up the key. if I instead use
Code:
echo $(date) >> ~/recipes/RecipeLog.txt
Is it possible to make this work?
TIA
Comment