Skip to content

Instantly share code, notes, and snippets.

@norpol
Last active February 2, 2018 15:19
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 norpol/0f8a75d7a4fb5b578d1edf62f6c7f7ce to your computer and use it in GitHub Desktop.
Save norpol/0f8a75d7a4fb5b578d1edf62f6c7f7ce to your computer and use it in GitHub Desktop.
Generate/show a qrcode of what ever is in your x-clipboard
# add this to your i3 config to float the feh image on your screen
# float any window with the title float
for_window [title="^float$"] floating enable, border normal
#!/bin/sh
set -eu
printf '%s' "$(xclip -o -sel clip)" | qrencode -o - | feh --title float -
@norpol
Copy link
Author

norpol commented Feb 2, 2018

See clip_do for the new project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment