//Script opens up Rick Astley's - Never Gonna Give You Up and also a fake Windows update screen and then maximizes it using F11
			
			#include <Keyboard.h>

			void setup() {
			  delay(7000);
			  
			  opencmdline();
			  delay(600);
			  DigiKeyboard.println("https://youtu.be/dQw4w9WgXcQ?t=43s");
			  delay(5000);
			  opencmdline();
			  delay(3000);
			  DigiKeyboard.println("http://fakeupdate.net/win10ue");
			  delay(2000);
			  KeypressCombo(KEY_F11, null);
			}
			void loop() {}

			void KeypressCombo(key1, key2)
			{
				Keyboard.press(key1);
				delay(100);
				if(key2 != NULL)
				{
				Keyboard.press(key2);
				delay(200);
			    }
				Keyboard.releaseAll();
			    delay(200);
			}

			void opencmdline()
			{
  			Keyboard.press(KEY_LEFT_GUI);
  			Keyboard.press('r');
  			Keyboard.releaseAll();
  			delay(1000);
			}