core-agent-linux/qubes-rpc/thunar/qvm-actions.sh
2021-05-16 17:39:01 +02:00

57 lines
1.3 KiB
Bash
Executable File

#!/bin/bash
# Check if at least two arguments are provided: actions + file(s)
if [ "$#" -le 1 ]; then
echo "Not enough arguments provided. Aborting..."
fi
# Action
action="$1"
shift
# copy and move handle a list of files where other actions don't
case "$action" in
copy)
/usr/lib/qubes/qvm-copy-to-vm.gnome "$@"
;;
move)
/usr/lib/qubes/qvm-move-to-vm.gnome "$@"
;;
img)
for file in "$@"
do
/usr/lib/qubes/qvm-convert-img.gnome "$file"
done
;;
pdf)
for file in "$@"
do
/usr/lib/qubes/qvm-convert-pdf.gnome "$file"
done
;;
openvm)
for file in "$@"
do
#shellcheck disable=SC2016
qvm-open-in-vm '$default' "$file" | zenity --notification --text "Opening $file in VM..." --timeout 3 &
done
;;
opendvm)
for file in "$@"
do
qvm-open-in-dvm "$file" | zenity --notification --text "Opening $file in DisposableVM..." --timeout 3 &
done
;;
viewdvm)
for file in "$@"
do
qvm-open-in-dvm --view-only "$file" | zenity --notification --text "Opening $file in DisposableVM..." --timeout 3 &
done
;;
*)
echo "Unknown action. Aborting..."
exit 1
;;
esac