Advertisement
Guest User

setup virtualbox VM start

a guest
Sep 14th, 2021
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.58 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # code dependency section
  4.  
  5. function activate_window() {
  6.   # first parameter  - window title or part of the window title
  7.   window_title="$1"
  8.   xdotool search --sync --onlyvisible --name "$window_title" windowactivate
  9. }
  10.  
  11. function position_window() {
  12.   # first parameter  - window title or part of the window title
  13.   # second parameter - window postion x
  14.   # third parameter  - window postion y
  15.   # fourth parameter - window width
  16.   # fifth parameter  - window height
  17.   # use xwininfo or xprop to get window infos
  18.   window_title="$1"
  19.   win_pos_x="$2"
  20.   win_pos_y="$3"
  21.   win_width="$4"
  22.   win_height="$5"
  23.   window_handle=$(xdotool search --sync --onlyvisible --name "$window_title")
  24.   xdotool windowactivate --sync "$window_handle"
  25.   xdotool windowmove --sync "$window_handle" $win_pos_x $win_pos_y
  26.   xdotool windowsize --sync "$window_handle" $win_width $win_height
  27. }
  28.  
  29. # starting VM
  30.  
  31. vboxmanage startvm tmp3
  32.  
  33. # resize and position window
  34.  
  35. sleep_time=0.5
  36. sleep $sleep_time
  37. activate_window "\[Running\] - Oracle VM VirtualBox"
  38. sleep $sleep_time
  39. xdotool key Control_R+p
  40. sleep $sleep_time
  41. position_window "\[Paused\] - Oracle VM VirtualBox" 1 60 1816 1016
  42. sleep $sleep_time
  43. xdotool key Control_R+p
  44. sleep $sleep_time
  45. activate_window "\[Running\] - Oracle VM VirtualBox"
  46. sleep $sleep_time
  47. xdotool key Control_R+v
  48. sleep $sleep_time
  49. sleep $sleep_time
  50. xdotool key Control_R+v
  51.  
  52. # VBoxManage setextradata global GUI/MaxGuestResolution any
  53. # VBoxManage setextradata "tmp3" "CustomVideoMode1" "1816x944x32"
  54. # VBoxManage controlvm "tmp3" setvideomodehint 1816 944 32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement