Procházet zdrojové kódy

Add key-handler action to copy image to clipboard

Thanks ploth for coming up with this:
	https://github.com/muennich/sxiv/issues/247#issuecomment-321316306

Replaces optional dependency on xsel(1) to xclip(1) as it supports this.

Fixes issue #247
master
Bert Münnich před 7 roky
rodič
revize
c2560f8d0b
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      exec/key-handler

+ 2
- 1
exec/key-handler Zobrazit soubor

@@ -44,7 +44,8 @@ tag_del() {
}

case "$KEY" in
"C-c") tr '\n' ' ' | xsel -i ;;
"y") tr '\n' ' ' | xclip -i ;;
"C-c") while read file; do xclip -selection clipboard -target image/png "$file"; done ;;
"C-e") while read file; do urxvt -bg "#444" -fg "#eee" -sl 0 -title "$file" -e sh -c "exiv2 pr -q -pa '$file' | less" & done ;;
"C-g") tr '\n' '\0' | xargs -0 gimp & ;;
"C-comma") rotate 270 ;;


Načítá se…
Zrušit
Uložit