mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2025-10-07 07:22:36 +02:00
Fix magick related actions in nsxiv (#1449)
This commit is contained in:
parent
e83e5ecef0
commit
53f1df79e5
@ -14,11 +14,11 @@ do
|
|||||||
mv "$file" "$destdir" && notify-send -i "$(readlink -f "$file")" "$file moved to $destdir." &
|
mv "$file" "$destdir" && notify-send -i "$(readlink -f "$file")" "$file moved to $destdir." &
|
||||||
;;
|
;;
|
||||||
"r")
|
"r")
|
||||||
magick -rotate 90 "$file" "$file" ;;
|
magick "$file" -rotate 90 "$file" ;;
|
||||||
"R")
|
"R")
|
||||||
magick -rotate -90 "$file" "$file" ;;
|
magick "$file" -rotate -90 "$file" ;;
|
||||||
"f")
|
"f")
|
||||||
magick -flop "$file" "$file" ;;
|
magick "$file" -flop "$file" ;;
|
||||||
"y")
|
"y")
|
||||||
printf "%s" "$file" | tr -d '\n' | xclip -selection clipboard &&
|
printf "%s" "$file" | tr -d '\n' | xclip -selection clipboard &&
|
||||||
notify-send "$file copied to clipboard" & ;;
|
notify-send "$file copied to clipboard" & ;;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user