Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)SN
  • KDE cli clipboard

    $ cat /usr/local/bin/c ```sh #!/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`sh #!/bin/sh qdbus org.kde.klipper /klipper getClipboardContents ```

    This is what I like to use :)

    4
1 Active user