citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

vmtoggle (143B)


      1 #!/usr/bin/env bash
      2 
      3 VM=razoredge
      4 
      5 control () {
      6   VBoxManage controlvm $VM "$1" && notify-send "$VM ${1}d"
      7 }
      8 
      9 control pause || control resume
     10