kubernetes-kube-system.window.sh 565 B

12345678910111213141516171819202122232425
  1. # Set window root path. Default is `$session_root`.
  2. # Must be called before `new_window`.
  3. #window_root "~/Projects/kubernetes"
  4. # Create new window. If no argument is given, window name will be based on
  5. # layout file name.
  6. new_window "kube-system"
  7. run_cmd "kubectl watch kube-system"
  8. # Split window into panes.
  9. #split_v 20
  10. #split_h 50
  11. # Run commands.
  12. #run_cmd "top" # runs in active pane
  13. #run_cmd "date" 1 # runs in pane 1
  14. # Paste text
  15. #send_keys "top" # paste into active pane
  16. #send_keys "date" 1 # paste into pane 1
  17. # Set active pane.
  18. #select_pane 0