1

我正在编写一个小帮助脚本,将 X 剪贴板内容转换为二维码并显示结果,以便我可以使用智能手机扫描代码。

基本上,这行 bash 有效(带有错误处理,它是十行):

xclip -o | qrencode -s 5 -o - | display -backdrop -background "#000"

我得到以全屏黑色背景为中心的 QR 码。好的。但是 GraphicsMagick 的显示实用程序在这种情况下存在一个可用性问题:我不能轻易退出它。我需要右键单击图像(不是在背景上)并选择菜单上的最后一项,该菜单现在将其文本呈现为黑底黑字。

我看到了解决这个问题的多种方法,但没有看到任何解决方案:

  1. 获取 GraphicsMagick 的display实用程序以退出任何事件,无论是鼠标单击还是按键。
  2. 从后台开始display并以某种方式捕获 UI 事件。然后杀display
  3. 使用可以更轻松地退出的其他图像查看器。没有找到具有背景功能的。

基本上,我正在寻找的是一种从 bash 脚本显示图像的简单方法,该图像以当前 X 屏幕为中心,带有黑色背景(奖励:半透明黑色背景),在鼠标单击或按键时消失。此外,图像下方的一些自由格式的文本标题会很好,所以我不必使用 graphicsmagick 来将其添加到图像中。

4

1 回答 1

0

好的,不知何故,我最终自己编写了那个图像查看器……在运行中……使用内联 python 和 Tkinter。如果有人想使用它并且嵌入在 bash 中的 python 并不是一个太可怕的想法,这里是我的“剪贴板到二维码”bash 脚本。将其保存在某处,使其可执行并在您的桌面环境中注册以在 <Ctrl-Q> 上运行或在您的面板中分配一个启动器。

依赖项:python python-tk qrencode xclip

#!/bin/bash

TMPDIR=$(mktemp -d)
trap 'rm -rf $TMPDIR; exit 1' 0 1 2 3 13 15

if xclip -o | qrencode -s 2 -m 2 -o - > $TMPDIR/qrcode.png
then 
    TXT=$(xclip -o)
elif xclip -o -selection clipboard | qrencode -s 2 -m 2 -o - > $TMPDIR/qrcode.png
then
    TXT=$(xclip -o -selection clipboard)
else
    STXT=$( echo "$(xclip -o)" | head -n 1 | cut -c 1-50 )
    notify-send -i unknown "Conversion Error" "Cannot provide a QR Code for the current clipboard contents:\
    \
    $STXT ..."
    exit 0
fi
echo "$TXT" > $TMPDIR/content.txt
python - <<PYEND 
import Tkinter,Image,ImageTk
tk = Tkinter.Tk()
tk.geometry("%dx%d+0+0" % (tk.winfo_screenwidth(), tk.winfo_screenheight()))
tk.wm_focusmodel(Tkinter.ACTIVE)
def handler(event):
    tk.quit()
    tk.destroy()
tk.bind("<Key>", handler)   
tk.bind("<KeyPress>", handler)
tk.bind("<Button>", handler)
tk.protocol("WM_DELETE_WINDOW", tk.destroy)
txt = ""
tkim = None
try:
    img = Image.open("$TMPDIR/qrcode.png").convert()
    while (img.size[1] < tk.winfo_screenheight() * 0.4) and (img.size[0] < tk.winfo_screenwidth() * 0.45):
        img = img.resize(([x*2 for x in img.size]), Image.NONE)
    tkim = ImageTk.PhotoImage(img)
    txt = file("$TMPDIR/content.txt").read()
except Exception as e:
    txt = "Error while retrieving text: " + str(e)

lh = Tkinter.Label(tk, text="QR Code from Clipboard", font=("sans-serif", 12), background="#000", foreground="#FFF", justify=Tkinter.CENTER).pack(fill=Tkinter.BOTH, expand=1)
li = Tkinter.Label(tk, image=tkim, background="#000", foreground="#FFF", justify=Tkinter.CENTER).pack(fill=Tkinter.BOTH, expand=1)
lt = Tkinter.Label(tk, text=txt, font=("sans-serif", 9), background="#000", foreground="#FFF", justify=Tkinter.LEFT, wraplength=tk.winfo_screenwidth()*0.9).pack(fill=Tkinter.BOTH, expand=1)
tk.overrideredirect(True)
tk.lift()
tk.focus_force()
tk.grab_set()
tk.grab_set_global()
tk.mainloop() 
PYEND
rm -rf $TMPDIR
trap 0 1 2 3 13 15

更新:现在也在 GitHub 上:https ://github.com/orithena/clip2qr

于 2013-05-11T21:48:25.910 回答