Script that can be used as a shortcut to open the qube settings for the active window
#!/bin/bash
CUR_WIN_ID=`xdotool getwindowfocus`
CUR_VM=`xprop _QUBES_VMNAME -id $CUR_WIN_ID |cut -d \" -f2`
qubes-vm-settings $CUR_VM
exit 0
Script that can be used as a shortcut to open the qube settings for the active window
#!/bin/bash
CUR_WIN_ID=`xdotool getwindowfocus`
CUR_VM=`xprop _QUBES_VMNAME -id $CUR_WIN_ID |cut -d \" -f2`
qubes-vm-settings $CUR_VM
exit 0