Skip to content

Instantly share code, notes, and snippets.

@madprops
Created December 3, 2021 00:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madprops/d190c1c17c2d317d3a105d058928f230 to your computer and use it in GitHub Desktop.
Save madprops/d190c1c17c2d317d3a105d058928f230 to your computer and use it in GitHub Desktop.
Show a message with the number of characters of the string in the clipboard
#!/bin/bash
string=$(xclip -o -sel clip)
numchars=$(echo -n "$string" | wc -c)
awesome-client "msg('$numchars')"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment