This commit is contained in:
cho
2023-09-28 20:14:15 +07:00
parent 25665457f4
commit 79225406e8
8 changed files with 33 additions and 15 deletions

View File

@ -20,9 +20,9 @@ do
convert -rotate -90 "$file" "$file" ;;
"f")
convert -flop "$file" "$file" ;;
"y")
printf "%s" "$file" | tr -d '\n' | xclip -selection clipboard &&
notify-send "$file copied to clipboard" & ;;
"y") wl-copy < $file ;;
#printf "%s" "$file" | tr -d '\n' | xclip -selection clipboard &&
#notify-send "$file copied to clipboard" & ;;
"Y")
readlink -f "$file" | tr -d '\n' | xclip -selection clipboard &&
notify-send "$(readlink -f "$file") copied to clipboard" & ;;