diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h
index f06307726ff0ce22a8b8a0257693c4f6b63b9947..292c2defec25e57e9a43f651374348aeaade1a91 100644
--- a/Marlin/Configuration_adv.h
+++ b/Marlin/Configuration_adv.h
@@ -960,6 +960,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/Marlin/src/inc/Conditionals_LCD.h b/Marlin/src/inc/Conditionals_LCD.h
index 8a440d15631eb6556228307bfb8731d01bd34f38..4e1621eac37bef234834afddd330a61618440800 100644
--- a/Marlin/src/inc/Conditionals_LCD.h
+++ b/Marlin/src/inc/Conditionals_LCD.h
@@ -519,6 +519,7 @@
 #define Z_MULTI_STEPPER_DRIVERS EITHER(Z_DUAL_STEPPER_DRIVERS, Z_TRIPLE_STEPPER_DRIVERS)
 #define Z_MULTI_ENDSTOPS EITHER(Z_DUAL_ENDSTOPS, Z_TRIPLE_ENDSTOPS)
 #define HAS_EXTRA_ENDSTOPS (EITHER(X_DUAL_ENDSTOPS, Y_DUAL_ENDSTOPS) || Z_MULTI_ENDSTOPS)
+#define HAS_GAME_MENU (1 < ENABLED(MARLIN_BRICKOUT) + ENABLED(MARLIN_INVADERS) + ENABLED(MARLIN_SNAKE))
 
 #define IS_SCARA     EITHER(MORGAN_SCARA, MAKERARM_SCARA)
 #define IS_KINEMATIC (ENABLED(DELTA) || IS_SCARA)
diff --git a/Marlin/src/lcd/language/language_en.h b/Marlin/src/lcd/language/language_en.h
index de78f479df00719c93fee9819ce2405a14874c0b..862f8a1998223b195f7f275c08e91a0eeaf0b459 100644
--- a/Marlin/src/lcd/language/language_en.h
+++ b/Marlin/src/lcd/language/language_en.h
@@ -1277,6 +1277,18 @@
 #ifndef MSG_END_Z
   #define MSG_END_Z                           _UxGT("  End Z")
 #endif
+#ifndef MSG_BRICKOUT
+  #define MSG_BRICKOUT                        _UxGT("Brickout")
+#endif
+#ifndef MSG_INVADERS
+  #define MSG_INVADERS                        _UxGT("Invaders")
+#endif
+#ifndef MSG_SNAKE
+  #define MSG_SNAKE                           _UxGT("Sn4k3")
+#endif
+#ifndef MSG_MAZE
+  #define MSG_MAZE                            _UxGT("Maze")
+#endif
 
 //
 // Filament Change screens show up to 3 lines on a 4-line display
diff --git a/Marlin/src/lcd/menu/menu_game.cpp b/Marlin/src/lcd/menu/menu_game.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..9ec33f7344b157371fa83ae7880c66489a081b95
--- /dev/null
+++ b/Marlin/src/lcd/menu/menu_game.cpp
@@ -0,0 +1,1028 @@
+/**
+ * Marlin 3D Printer Firmware
+ * Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
+ *
+ * Based on Sprinter and grbl.
+ * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#include "../../inc/MarlinConfigPre.h"
+
+#if HAS_LCD_MENU && ANY(MARLIN_BRICKOUT, MARLIN_INVADERS, MARLIN_SNAKE)
+
+#include "menu.h"
+#include "../dogm/ultralcd_DOGM.h"
+#include "../lcdprint.h"
+#define SCREEN_M ((LCD_PIXEL_WIDTH) / 2)
+#define _BUZZ(D,F) BUZZ(D,F)
+//#define _BUZZ(D,F) NOOP
+
+// Simple 8:8 fixed-point
+typedef int16_t fixed_t;
+#define FTOP(F) fixed_t((F)*256.0f)
+#define PTOF(P) (float(P)*(1.0f/256.0f))
+#define BTOF(X) (fixed_t(X)<<8)
+#define FTOB(X) int8_t(fixed_t(X)>>8)
+
+int score;
+uint8_t game_state;
+millis_t next_frame;
+
+inline void draw_game_over() {
+  constexpr int8_t gowide = (MENU_FONT_WIDTH) * 9,
+                   gohigh = MENU_FONT_ASCENT - 3,
+                       lx = (LCD_PIXEL_WIDTH - gowide) / 2,
+                       ly = (LCD_PIXEL_HEIGHT + gohigh) / 2;
+  if (PAGE_CONTAINS(ly - gohigh - 1, ly + 1)) {
+    u8g.setColorIndex(0);
+    u8g.drawBox(lx - 1, ly - gohigh - 1, gowide + 2, gohigh + 2);
+    u8g.setColorIndex(1);
+    if (ui.get_blink()) {
+      lcd_moveto(lx, ly);
+      lcd_put_u8str_P(PSTR("GAME OVER"));
+    }
+  }
+}
+
+#if ENABLED(MARLIN_BRICKOUT)
+
+  #define BRICK_H      5
+  #define BRICK_TOP    MENU_FONT_ASCENT
+  #define BRICK_ROWS   4
+  #define BRICK_COLS  16
+
+  #define PADDLE_H     2
+  #define PADDLE_VEL   3
+  #define PADDLE_W    ((LCD_PIXEL_WIDTH) / 8)
+  #define PADDLE_Y    (LCD_PIXEL_HEIGHT - 1 - PADDLE_H)
+
+  #define BRICK_W     ((LCD_PIXEL_WIDTH) / (BRICK_COLS))
+  #define BRICK_BOT   (BRICK_TOP + BRICK_H * BRICK_ROWS - 1)
+
+  #define BRICK_COL(X) ((X) / (BRICK_W))
+  #define BRICK_ROW(Y) ((Y - (BRICK_TOP)) / (BRICK_H))
+
+  uint8_t balls_left, brick_count;
+  uint16_t bricks[BRICK_ROWS];
+  inline void reset_bricks(const uint16_t v) {
+    brick_count = (BRICK_COLS) * (BRICK_ROWS);
+    LOOP_L_N(i, BRICK_ROWS) bricks[i] = v;
+  }
+
+  int8_t paddle_x, hit_dir;
+  fixed_t ballx, bally, ballh, ballv;
+
+  void reset_ball() {
+    constexpr uint8_t ball_dist = 24;
+    bally = BTOF(PADDLE_Y - ball_dist);
+    ballv = FTOP(1.3f);
+    ballh = -FTOP(1.25f);
+    uint8_t bx = paddle_x + (PADDLE_W) / 2 + ball_dist;
+    if (bx >= LCD_PIXEL_WIDTH - 10) { bx -= ball_dist * 2; ballh = -ballh; }
+    ballx = BTOF(bx);
+    hit_dir = -1;
+  }
+
+  void game_screen_brickout() {
+    static int8_t slew;
+    ui.refresh(LCDVIEW_CALL_NO_REDRAW); // Call as often as possible
+
+    if (ui.first_page) slew = 2;
+
+    if (slew-- > 0) {                   // Logic runs twice for finer resolution
+      // Update Paddle Position
+      paddle_x = (int8_t)ui.encoderPosition;
+      paddle_x = constrain(paddle_x, 0, (LCD_PIXEL_WIDTH - (PADDLE_W)) / (PADDLE_VEL));
+      ui.encoderPosition = paddle_x;
+      paddle_x *= (PADDLE_VEL);
+
+      // Run the ball logic
+      if (game_state) do {
+
+        // Provisionally update the position
+        const fixed_t newx = ballx + ballh, newy = bally + ballv;  // current next position
+        if (!WITHIN(newx, 0, BTOF(LCD_PIXEL_WIDTH - 1))) {    // out in x?
+          ballh = -ballh; _BUZZ(5, 220);                      // bounce x
+        }
+        if (newy < 0) {                                       // out in y?
+          ballv = -ballv; _BUZZ(5, 280);                      // bounce v
+          hit_dir = 1;
+        }
+        // Did the ball go below the bottom?
+        else if (newy > BTOF(LCD_PIXEL_HEIGHT)) {
+          BUZZ(500, 75);
+          if (--balls_left) reset_ball(); else game_state = 0;
+          break; // done
+        }
+
+        // Is the ball colliding with a brick?
+        if (WITHIN(newy, BTOF(BRICK_TOP), BTOF(BRICK_BOT))) {
+          const int8_t bit = BRICK_COL(FTOB(newx)), row = BRICK_ROW(FTOB(newy));
+          const uint16_t mask = _BV(bit);
+          if (bricks[row] & mask) {
+            // Yes. Remove it!
+            bricks[row] &= ~mask;
+            // Score!
+            score += BRICK_ROWS - row;
+            // If bricks are gone, go to reset state
+            if (!--brick_count) game_state = 2;
+            // Bounce the ball cleverly
+            if ((ballv < 0) == (hit_dir < 0)) { ballv = -ballv; ballh += fixed_t(random(-16, 16)); _BUZZ(5, 880); }
+                                         else { ballh = -ballh; ballv += fixed_t(random(-16, 16)); _BUZZ(5, 640); }
+          }
+        }
+        // Is the ball moving down and in paddle range?
+        else if (ballv > 0 && WITHIN(newy, BTOF(PADDLE_Y), BTOF(PADDLE_Y + PADDLE_H))) {
+          // Ball actually hitting paddle
+          const int8_t diff = FTOB(newx) - paddle_x;
+          if (WITHIN(diff, 0, PADDLE_W - 1)) {
+
+            // Reverse Y direction
+            ballv = -ballv; _BUZZ(3, 880);
+            hit_dir = -1;
+
+            // Near edges affects X velocity
+            const bool is_left_edge = (diff <= 1);
+            if (is_left_edge || diff >= PADDLE_W-1 - 1) {
+              if ((ballh > 0) == is_left_edge) ballh = -ballh;
+            }
+            else if (diff <= 3) {
+              ballh += fixed_t(random(-64, 0));
+              NOLESS(ballh, BTOF(-2));
+              NOMORE(ballh, BTOF(2));
+            }
+            else if (diff >= PADDLE_W-1 - 3) {
+              ballh += fixed_t(random( 0, 64));
+              NOLESS(ballh, BTOF(-2));
+              NOMORE(ballh, BTOF(2));
+            }
+
+            // Paddle hit after clearing the board? Reset the board.
+            if (game_state == 2) { reset_bricks(0xFFFF); game_state = 1; }
+          }
+        }
+
+        ballx += ballh; bally += ballv;   // update with new velocity
+
+      } while (false);
+    }
+
+    u8g.setColorIndex(1);
+
+    // Draw bricks
+    if (PAGE_CONTAINS(BRICK_TOP, BRICK_BOT)) {
+      for (uint8_t y = 0; y < BRICK_ROWS; ++y) {
+        const uint8_t yy = y * BRICK_H + BRICK_TOP;
+        if (PAGE_CONTAINS(yy, yy + BRICK_H - 1)) {
+          for (uint8_t x = 0; x < BRICK_COLS; ++x) {
+            if (TEST(bricks[y], x)) {
+              const uint8_t xx = x * BRICK_W;
+              for (uint8_t v = 0; v < BRICK_H - 1; ++v)
+                if (PAGE_CONTAINS(yy + v, yy + v))
+                  u8g.drawHLine(xx, yy + v, BRICK_W - 1);
+            }
+          }
+        }
+      }
+    }
+
+    // Draw paddle
+    if (PAGE_CONTAINS(PADDLE_Y-1, PADDLE_Y)) {
+      u8g.drawHLine(paddle_x, PADDLE_Y, PADDLE_W);
+      #if PADDLE_H > 1
+        u8g.drawHLine(paddle_x, PADDLE_Y-1, PADDLE_W);
+        #if PADDLE_H > 2
+          u8g.drawHLine(paddle_x, PADDLE_Y-2, PADDLE_W);
+        #endif
+      #endif
+    }
+
+    // Draw ball while game is running
+    if (game_state) {
+      const uint8_t by = FTOB(bally);
+      if (PAGE_CONTAINS(by, by+1))
+        u8g.drawFrame(FTOB(ballx), by, 2, 2);
+    }
+    // Or draw GAME OVER
+    else
+      draw_game_over();
+
+    if (PAGE_UNDER(MENU_FONT_ASCENT)) {
+      // Score Digits
+      //const uint8_t sx = (LCD_PIXEL_WIDTH - (score >= 10 ? score >= 100 ? score >= 1000 ? 4 : 3 : 2 : 1) * MENU_FONT_WIDTH) / 2;
+      constexpr uint8_t sx = 0;
+      lcd_moveto(sx, MENU_FONT_ASCENT - 1);
+      lcd_put_int(score);
+
+      // Balls Left
+      lcd_moveto(LCD_PIXEL_WIDTH - MENU_FONT_WIDTH * 3, MENU_FONT_ASCENT - 1);
+      PGM_P const ohs = PSTR("ooo\0\0");
+      lcd_put_u8str_P(ohs + 3 - balls_left);
+    }
+
+    // A click always exits this game
+    if (ui.use_click()) ui.goto_previous_screen();
+  }
+
+  void lcd_goto_brickout() {
+    constexpr uint8_t paddle_start = SCREEN_M - (PADDLE_W) / 2;
+    paddle_x = paddle_start;
+    game_state = 2; // reset bricks on paddle hit
+    score = 0;
+    balls_left = 3;
+    reset_bricks(0x0000);
+    reset_ball();
+    ui.goto_screen(game_screen_brickout, paddle_start / (PADDLE_VEL));
+    ui.defer_status_screen();
+  }
+
+#endif // MARLIN_BRICKOUT
+
+#if ENABLED(MARLIN_INVADERS)
+
+  // 11x8
+  const unsigned char invader[3][2][16] PROGMEM = {
+    { { B00000110,B00000000,
+        B00001111,B00000000,
+        B00011111,B10000000,
+        B00110110,B11000000,
+        B00111111,B11000000,
+        B00001001,B00000000,
+        B00010110,B10000000,
+        B00101001,B01000000
+      }, {
+        B00000110,B00000000,
+        B00001111,B00000000,
+        B00011111,B10000000,
+        B00110110,B11000000,
+        B00111111,B11000000,
+        B00010110,B10000000,
+        B00100000,B01000000,
+        B00010000,B10000000
+      }
+    }, {
+      { B00010000,B01000000,
+        B00001000,B10000000,
+        B00011111,B11000000,
+        B00110111,B01100000,
+        B01111111,B11110000,
+        B01011111,B11010000,
+        B01010000,B01010000,
+        B00001101,B10000000
+      }, {
+        B00010000,B01000000,
+        B01001000,B10010000,
+        B01011111,B11010000,
+        B01110111,B01110000,
+        B01111111,B11110000,
+        B00011111,B11000000,
+        B00010000,B01000000,
+        B00100000,B00100000 
+      }
+    }, {
+      { B00001111,B00000000,
+        B01111111,B11100000,
+        B11111111,B11110000,
+        B11100110,B01110000,
+        B11111111,B11110000,
+        B00011001,B10000000,
+        B00110110,B11000000,
+        B11000000,B00110000
+      }, {
+        B00001111,B00000000,
+        B01111111,B11100000,
+        B11111111,B11110000,
+        B11100110,B01110000,
+        B11111111,B11110000,
+        B00011001,B10000000,
+        B00110110,B11000000,
+        B00011001,B10000000
+      }
+    }
+  };
+  const unsigned char cannon[] PROGMEM = {
+    B00000100,B00000000,
+    B00001110,B00000000,
+    B00001110,B00000000,
+    B01111111,B11000000,
+    B11111111,B11100000,
+    B11111111,B11100000,
+    B11111111,B11100000,
+    B11111111,B11100000
+  };
+  const unsigned char life[] PROGMEM = {
+    B00010000,
+    B01111100,
+    B11111110,
+    B11111110,
+    B11111110
+  };
+  const unsigned char explosion[] PROGMEM = {
+    B01000100,B01000000,
+    B00100100,B10000000,
+    B00000000,B00000000,
+    B00110001,B10000000,
+    B00000000,B00000000,
+    B00100100,B10000000,
+    B01000100,B01000000
+  };
+  const unsigned char ufo[] PROGMEM = {
+    B00011111,B11000000,
+    B01111111,B11110000,
+    B11011101,B11011000,
+    B11111111,B11111000,
+    B01111111,B11110000
+  };
+
+  #define INVASION_SIZE 3
+
+  #if INVASION_SIZE == 3
+    #define INVADER_COLS   5
+  #elif INVASION_SIZE == 4
+    #define INVADER_COLS   6
+  #else
+    #define INVADER_COLS   8
+    #undef INVASION_SIZE
+    #define INVASION_SIZE  5
+  #endif
+
+  #define INVADER_ROWS INVASION_SIZE
+
+  constexpr uint8_t inv_type[] = {
+    #if INVADER_ROWS == 5
+      0, 1, 1, 2, 2
+    #elif INVADER_ROWS == 4
+      0, 1, 1, 2
+    #elif INVADER_ROWS == 3
+      0, 1, 2
+    #else
+      #error "INVASION_SIZE must be 3, 4, or 5."
+    #endif
+  };
+
+  #define INVADER_RIGHT ((INVADER_COLS) * (COL_W))
+
+  #define CANNON_W      11
+  #define CANNON_H       8
+  #define CANNON_VEL     4
+  #define CANNON_Y      (LCD_PIXEL_HEIGHT - 1 - CANNON_H)
+
+  #define COL_W         14
+  #define INVADER_H      8
+  #define ROW_H         (INVADER_H + 2)
+  #define INVADER_VEL    3
+
+  #define INVADER_TOP   MENU_FONT_ASCENT
+  #define INVADERS_WIDE ((COL_W) * (INVADER_COLS))
+  #define INVADERS_HIGH ((ROW_H) * (INVADER_ROWS))
+
+  #define UFO_H          5
+  #define UFO_W         13
+
+  #define LASER_H        4
+  #define SHOT_H         3
+  #define EXPL_W        11
+  #define LIFE_W         8
+  #define LIFE_H         5
+
+  #define INVADER_COL(X) ((X - invaders_x) / (COL_W))
+  #define INVADER_ROW(Y) ((Y - invaders_y + 2) / (ROW_H))
+
+  #define INV_X_LEFT(C,T) (invaders_x + (C) * (COL_W) + inv_off[T])
+  #define INV_X_CTR(C,T)  (INV_X_LEFT(C,T) + inv_wide[T] / 2)
+  #define INV_Y_BOT(R)    (invaders_y + (R + 1) * (ROW_H) - 2)
+
+  uint8_t cannons_left;
+  int8_t cannon_x;
+  typedef struct { int8_t x, y, v; } laser_t;
+  laser_t laser, expl, bullet[10];
+  constexpr uint8_t inv_off[] = { 2, 1, 0 }, inv_wide[] = { 8, 11, 12 };
+  int8_t invaders_x, invaders_y, invaders_dir, leftmost, rightmost, botmost;
+  uint8_t invader_count, invaders[INVADER_ROWS], shooters[(INVADER_ROWS) * (INVADER_COLS)];
+
+  inline void update_invader_data() {
+    uint8_t inv_mask = 0;
+    // Get a list of all active invaders
+    uint8_t sc = 0;
+    LOOP_L_N(y, INVADER_ROWS) {
+      uint8_t m = invaders[y];
+      if (m) botmost = y + 1;
+      inv_mask |= m;
+      for (uint8_t x = 0; x < INVADER_COLS; ++x)
+        if (TEST(m, x)) shooters[sc++] = (y << 4) | x;
+    }
+    leftmost = 0;
+    LOOP_L_N(i, INVADER_COLS)            { if (TEST(inv_mask, i)) break; leftmost -= COL_W; }
+    rightmost = LCD_PIXEL_WIDTH - (INVADERS_WIDE);
+    for (uint8_t i = INVADER_COLS; i--;) { if (TEST(inv_mask, i)) break; rightmost += COL_W; }
+    if (invader_count == 2) invaders_dir = invaders_dir > 0 ? INVADER_VEL + 1 : -(INVADER_VEL + 1);
+  }
+
+  inline void reset_bullets() {
+    LOOP_L_N(i, COUNT(bullet)) bullet[i].v = 0;
+  }
+
+  inline void reset_invaders() {
+    invaders_x = 0; invaders_y = INVADER_TOP;
+    invaders_dir = INVADER_VEL;
+    invader_count = (INVADER_COLS) * (INVADER_ROWS);
+    LOOP_L_N(i, INVADER_ROWS) invaders[i] = _BV(INVADER_COLS) - 1;
+    update_invader_data();
+    reset_bullets();
+  }
+
+  int8_t ufox, ufov;
+  inline void spawn_ufo() {
+    ufov = random(0, 2) ? 1 : -1;
+    ufox = ufov > 0 ? -(UFO_W) : LCD_PIXEL_WIDTH - 1;
+  }
+
+  void reset_player() {
+    cannon_x = 0;
+    ui.encoderPosition = 0;
+  }
+
+  inline void fire_cannon() {
+    laser.x = cannon_x + CANNON_W / 2;
+    laser.y = LCD_PIXEL_HEIGHT - CANNON_H - (LASER_H);
+    laser.v = -(LASER_H);
+  }
+
+  inline void explode(const int8_t x, const int8_t y, const int8_t v=4) {
+    expl.x = x - (EXPL_W) / 2; expl.y = y; expl.v = v;
+  }
+
+  inline void kill_cannon(const uint8_t st) {
+    reset_bullets();
+    explode(cannon_x + (CANNON_W) / 2, CANNON_Y, 6);
+    _BUZZ(1000, 10);
+    if (--cannons_left) {
+      laser.v = 0;
+      game_state = st;
+      reset_player();
+    }
+    else
+      game_state = 0;
+  }
+
+  void game_screen_invaders() {
+    static bool game_blink;
+
+    ui.refresh(LCDVIEW_CALL_NO_REDRAW); // Call as often as possible
+
+    // Run game logic once per full screen
+    if (ui.first_page) {
+
+      // Update Cannon Position
+      int32_t ep = (int32_t)ui.encoderPosition;
+      ep = constrain(ep, 0, (LCD_PIXEL_WIDTH - (CANNON_W)) / (CANNON_VEL));
+      ui.encoderPosition = ep;
+
+      ep *= (CANNON_VEL);
+      if (ep > cannon_x) { cannon_x += CANNON_VEL - 1; if (ep - cannon_x < 2) cannon_x = ep; }
+      if (ep < cannon_x) { cannon_x -= CANNON_VEL - 1; if (cannon_x - ep < 2) cannon_x = ep; }
+
+      // Run the game logic
+      if (game_state) do {
+
+        // Move the UFO, if any
+        if (ufov) { ufox += ufov; if (!WITHIN(ufox, -(UFO_W), LCD_PIXEL_WIDTH - 1)) ufov = 0; }
+
+        if (game_state > 1) { if (--game_state == 2) { reset_invaders(); } else if (game_state == 100) { game_state = 1; } break; }
+
+        static uint8_t blink_count;
+        const bool did_blink = (++blink_count > invader_count >> 1);
+        if (did_blink) {
+          game_blink = !game_blink;
+          blink_count = 0;
+        }
+
+        if (invader_count && did_blink) {
+          const int8_t newx = invaders_x + invaders_dir;
+          if (!WITHIN(newx, leftmost, rightmost)) {             // Invaders reached the edge?
+            invaders_dir *= -1;                                 // Invaders change direction
+            invaders_y += (ROW_H) / 2;                          // Invaders move down
+            invaders_x -= invaders_dir;                         // ...and only move down this time.
+            if (invaders_y + botmost * (ROW_H) - 2 >= CANNON_Y) // Invaders reached the bottom?
+              kill_cannon(20);                                  // Kill the cannon. Reset invaders.
+          }
+
+          invaders_x += invaders_dir;               // Invaders take one step left/right
+
+          // Randomly shoot if invaders are listed
+          if (invader_count && !random(0, 20)) {
+
+            // Find a free bullet
+            laser_t *b = NULL;
+            LOOP_L_N(i, COUNT(bullet)) if (!bullet[i].v) { b = &bullet[i]; break; }
+            if (b) {
+              // Pick a random shooter and update the bullet
+              //SERIAL_ECHOLNPGM("free bullet found");
+              const uint8_t inv = shooters[random(0, invader_count + 1)], col = inv & 0x0F, row = inv >> 4, type = inv_type[row];
+              b->x = INV_X_CTR(col, type);
+              b->y = INV_Y_BOT(row);
+              b->v = 2 + random(0, 2);
+            }
+          }
+        }
+
+        // Update the laser position
+        if (laser.v) {
+          laser.y += laser.v;
+          if (laser.y < 0) laser.v = 0;
+        }
+
+        // Did the laser collide with an invader?
+        if (laser.v && WITHIN(laser.y, invaders_y, invaders_y + INVADERS_HIGH - 1)) {
+          const int8_t col = INVADER_COL(laser.x);
+          if (WITHIN(col, 0, INVADER_COLS - 1)) {
+            const int8_t row = INVADER_ROW(laser.y);
+            if (WITHIN(row, 0, INVADER_ROWS - 1)) {
+              const uint8_t mask = _BV(col);
+              if (invaders[row] & mask) {
+                const uint8_t type = inv_type[row];
+                const int8_t invx = INV_X_LEFT(col, type);
+                if (WITHIN(laser.x, invx, invx + inv_wide[type] - 1)) {
+                  // Turn off laser
+                  laser.v = 0;
+                  // Remove the invader!
+                  invaders[row] &= ~mask;
+                  // Score!
+                  score += INVADER_ROWS - row;
+                  // Explode sound!
+                  _BUZZ(40, 10);
+                  // Explosion bitmap!
+                  explode(invx + inv_wide[type] / 2, invaders_y + row * (ROW_H));
+                  // If invaders are gone, go to reset invaders state
+                  if (--invader_count) update_invader_data(); else { game_state = 20; reset_bullets(); }
+                } // laser x hit
+              } // invader exists
+            } // good row
+          } // good col
+        } // laser in invader zone
+
+        // Handle alien bullets
+        LOOP_L_N(s, COUNT(bullet)) {
+          laser_t *b = &bullet[s];
+          if (b->v) {
+            // Update alien bullet position
+            b->y += b->v;
+            if (b->y >= LCD_PIXEL_HEIGHT)
+              b->v = 0; // Offscreen
+            else if (b->y >= CANNON_Y && WITHIN(b->x, cannon_x, cannon_x + CANNON_W - 1))
+              kill_cannon(120); // Hit the cannon
+          }
+        }
+
+        // Randomly spawn a UFO
+        if (!ufov && !random(0,500)) spawn_ufo();
+
+        // Did the laser hit a ufo?
+        if (laser.v && ufov && laser.y < UFO_H + 2 && WITHIN(laser.x, ufox, ufox + UFO_W - 1)) {
+          // Turn off laser and UFO
+          laser.v = ufov = 0;
+          // Score!
+          score += 10;
+          // Explode!
+          _BUZZ(40, 10);
+          // Explosion bitmap
+          explode(ufox + (UFO_W) / 2, 1);
+        }
+
+      } while (false);
+
+    }
+
+    // Click to fire or exit
+    if (ui.use_click()) {
+      if (!game_state)
+        ui.goto_previous_screen();
+      else if (game_state == 1 && !laser.v)
+        fire_cannon();
+    }
+
+    u8g.setColorIndex(1);
+
+    // Draw invaders
+    if (PAGE_CONTAINS(invaders_y, invaders_y + botmost * (ROW_H) - 2 - 1)) {
+      int8_t yy = invaders_y;
+      for (uint8_t y = 0; y < INVADER_ROWS; ++y) {
+        const uint8_t type = inv_type[y];
+        if (PAGE_CONTAINS(yy, yy + INVADER_H - 1)) {
+          int8_t xx = invaders_x;
+          for (uint8_t x = 0; x < INVADER_COLS; ++x) {
+            if (TEST(invaders[y], x))
+              u8g.drawBitmapP(xx, yy, 2, INVADER_H, invader[type][game_blink]);
+            xx += COL_W;
+          }
+        }
+        yy += ROW_H;
+      }
+    }
+
+    // Draw UFO
+    if (ufov && PAGE_UNDER(UFO_H + 2))
+      u8g.drawBitmapP(ufox, 2, 2, UFO_H, ufo);
+
+    // Draw cannon
+    if (game_state && PAGE_CONTAINS(CANNON_Y, CANNON_Y + CANNON_H - 1) && (game_state < 2 || (game_state & 0x02)))
+      u8g.drawBitmapP(cannon_x, CANNON_Y, 2, CANNON_H, cannon);
+
+    // Draw laser
+    if (laser.v && PAGE_CONTAINS(laser.y, laser.y + LASER_H - 1))
+      u8g.drawVLine(laser.x, laser.y, LASER_H);
+
+    // Draw invader bullets
+    LOOP_L_N (i, COUNT(bullet)) {
+      if (bullet[i].v && PAGE_CONTAINS(bullet[i].y - (SHOT_H - 1), bullet[i].y))
+        u8g.drawVLine(bullet[i].x, bullet[i].y - (SHOT_H - 1), SHOT_H);
+    }
+
+    // Draw explosion
+    if (expl.v && PAGE_CONTAINS(expl.y, expl.y + 7 - 1)) {
+      u8g.drawBitmapP(expl.x, expl.y, 2, 7, explosion);
+      --expl.v;
+    }
+
+    // Blink GAME OVER when game is over
+    if (!game_state) draw_game_over();
+
+    if (PAGE_UNDER(MENU_FONT_ASCENT - 1)) {
+      // Draw Score
+      //const uint8_t sx = (LCD_PIXEL_WIDTH - (score >= 10 ? score >= 100 ? score >= 1000 ? 4 : 3 : 2 : 1) * MENU_FONT_WIDTH) / 2;
+      constexpr uint8_t sx = 0;
+      lcd_moveto(sx, MENU_FONT_ASCENT - 1);
+      lcd_put_int(score);
+
+      // Draw lives
+      if (cannons_left)
+        for (uint8_t i = 1; i <= cannons_left; ++i)
+          u8g.drawBitmapP(LCD_PIXEL_WIDTH - i * (LIFE_W), 6 - (LIFE_H), 1, LIFE_H, life);
+    }
+
+  }
+
+  void lcd_goto_invaders() {
+    game_state = 20; // countdown to reset invaders
+    score = 0;
+    cannons_left = 3;
+    laser.v = 0;
+    reset_invaders();
+    reset_player();
+    ui.goto_screen(game_screen_invaders, 0);
+    ui.defer_status_screen();
+  }
+
+#endif // MARLIN_INVADERS
+
+#if ENABLED(MARLIN_SNAKE)
+
+  #define SNAKE_BOX 4
+
+  #define HEADER_H  (MENU_FONT_ASCENT - 2)
+  #define SNAKE_WH  (SNAKE_BOX + 1)
+
+  #define IDEAL_L   2
+  #define IDEAL_R   (LCD_PIXEL_WIDTH - 1 - 2)
+  #define IDEAL_T   (HEADER_H + 2)
+  #define IDEAL_B   (LCD_PIXEL_HEIGHT - 1 - 2)
+  #define IDEAL_W   (IDEAL_R - (IDEAL_L) + 1)
+  #define IDEAL_H   (IDEAL_B - (IDEAL_T) + 1)
+
+  #define GAME_W    int((IDEAL_W) / (SNAKE_WH))
+  #define GAME_H    int((IDEAL_H) / (SNAKE_WH))
+
+  #define BOARD_W   ((SNAKE_WH) * (GAME_W) + 1)
+  #define BOARD_H   ((SNAKE_WH) * (GAME_H) + 1)
+  #define BOARD_L   ((LCD_PIXEL_WIDTH - (BOARD_W) + 1) / 2)
+  #define BOARD_R   (BOARD_L + BOARD_W - 1)
+  #define BOARD_T   (((LCD_PIXEL_HEIGHT + IDEAL_T) - (BOARD_H)) / 2)
+  #define BOARD_B   (BOARD_T + BOARD_H - 1)
+
+  #define GAMEX(X)  (BOARD_L + ((X) * (SNAKE_WH)))
+  #define GAMEY(Y)  (BOARD_T + ((Y) * (SNAKE_WH)))
+
+  #if SNAKE_BOX > 2
+    #define FOOD_WH SNAKE_BOX
+  #else
+    #define FOOD_WH 2
+  #endif
+
+  #if SNAKE_BOX < 1
+    #define SNAKE_SIZ 1
+  #else
+    #define SNAKE_SIZ SNAKE_BOX
+  #endif
+
+  constexpr fixed_t snakev = FTOP(0.20);
+
+  int8_t snake_dir, // NESW
+         foodx, foody, food_cnt,
+         old_encoder;
+  fixed_t snakex, snakey;
+
+  // Up to 50 lines, then you win!
+  typedef struct { int8_t x, y; } pos_t;
+  uint8_t head_ind;
+  pos_t snake_tail[50];
+
+  // Remove the first pixel from the tail.
+  // If needed, shift out the first segment.
+  void shorten_tail() {
+    pos_t &p = snake_tail[0], &q = snake_tail[1];
+    bool shift = false;
+    if (p.x == q.x) {
+      // Vertical line
+      p.y += (q.y > p.y) ? 1 : -1;
+      shift = p.y == q.y;
+    }
+    else {
+      // Horizontal line
+      p.x += (q.x > p.x) ? 1 : -1;
+      shift = p.x == q.x;
+    }
+    if (shift) {
+      head_ind--;
+      for (uint8_t i = 0; i <= head_ind; ++i)
+        snake_tail[i] = snake_tail[i + 1];
+    }
+  }
+
+  // The food is on a line
+  inline bool food_on_line() {
+    for (uint8_t n = 0; n < head_ind; ++n) {
+      pos_t &p = snake_tail[n], &q = snake_tail[n + 1];
+      if (p.x == q.x) {
+        if ((foodx == p.x - 1 || foodx == p.x) && WITHIN(foody, MIN(p.y, q.y), MAX(p.y, q.y)))
+          return true;
+      }
+      else if ((foody == p.y - 1 || foody == p.y) && WITHIN(foodx, MIN(p.x, q.x), MAX(p.x, q.x)))
+        return true;
+    }
+    return false;
+  }
+
+  // Add a new food blob
+  void food_reset() {
+    do {
+      foodx = random(0, GAME_W);
+      foody = random(0, GAME_H);
+    } while (food_on_line());
+  }
+
+  // Turn the snake cw or ccw
+  inline void turn_snake(const bool cw) {
+    snake_dir += cw ? 1 : -1;
+    snake_dir &= 0x03;
+    head_ind++;
+    snake_tail[head_ind].x = FTOB(snakex);
+    snake_tail[head_ind].y = FTOB(snakey);
+  }
+
+  // Reset the snake for a new game
+  void snake_reset() {
+    // Init the head and velocity
+    snakex = BTOF(1);
+    snakey = BTOF(GAME_H / 2);
+    //snakev = FTOP(0.25);
+
+    // Init the tail with a cw turn
+    snake_dir = 0;
+    head_ind = 0;
+    snake_tail[0].x = 0;
+    snake_tail[0].y = GAME_H / 2;
+    turn_snake(true);
+
+    // Clear food flag
+    food_cnt = 5;
+
+    // Clear the controls
+    ui.encoderPosition = 0;
+    old_encoder = 0;
+  }
+
+  // Check if head segment overlaps another
+  bool snake_overlap() {
+    // 4 lines must exist before a collision is possible
+    if (head_ind < 4) return false;
+    // Is the last segment crossing any others?
+    const pos_t &h1 = snake_tail[head_ind - 1], &h2 = snake_tail[head_ind];
+    // VERTICAL head segment?
+    if (h1.x == h2.x) {
+      // Loop from oldest to segment two away from head
+      for (uint8_t n = 0; n < head_ind - 2; ++n) {
+        // Segment p to q
+        const pos_t &p = snake_tail[n], &q = snake_tail[n + 1];
+        if (p.x != q.x) {
+          // Crossing horizontal segment
+          if (WITHIN(h1.x, MIN(p.x, q.x), MAX(p.x, q.x)) && (h1.y <= p.y) == (h2.y >= p.y)) return true;
+        } // Overlapping vertical segment
+        else if (h1.x == p.x && MIN(h1.y, h2.y) <= MAX(p.y, q.y) && MAX(h1.y, h2.y) >= MIN(p.y, q.y)) return true;
+      }
+    }
+    else {
+      // Loop from oldest to segment two away from head
+      for (uint8_t n = 0; n < head_ind - 2; ++n) {
+        // Segment p to q
+        const pos_t &p = snake_tail[n], &q = snake_tail[n + 1];
+        if (p.y != q.y) {
+          // Crossing vertical segment
+          if (WITHIN(h1.y, MIN(p.y, q.y), MAX(p.y, q.y)) && (h1.x <= p.x) == (h2.x >= p.x)) return true;
+        } // Overlapping horizontal segment
+        else if (h1.y == p.y && MIN(h1.x, h2.x) <= MAX(p.x, q.x) && MAX(h1.x, h2.x) >= MIN(p.x, q.x)) return true;
+      }
+    }
+    return false;
+  }
+
+  void game_screen_snake() {
+    static int8_t slew;
+    if (ui.first_page) slew = 2;
+    ui.refresh(LCDVIEW_CALL_NO_REDRAW);   // Call as often as possible
+
+    // Run the snake logic
+    if (game_state && slew-- > 0) do {    // Run logic twice for finer resolution
+
+      // Move the snake's head one unit in the current direction
+      const int8_t oldx = FTOB(snakex), oldy = FTOB(snakey);
+      switch (snake_dir) {
+        case 0: snakey -= snakev; break;
+        case 1: snakex += snakev; break;
+        case 2: snakey += snakev; break;
+        case 3: snakex -= snakev; break;
+      }
+      const int8_t x = FTOB(snakex), y = FTOB(snakey);
+
+      // If movement took place...
+      if (oldx != x || oldy != y) {
+
+        if (!WITHIN(x, 0, GAME_W - 1) || !WITHIN(y, 0, GAME_H - 1)) {
+          game_state = 0; // Game Over
+          _BUZZ(400, 40); // Bzzzt!
+          break;          // ...out of do-while
+        }
+
+        snake_tail[head_ind].x = x;
+        snake_tail[head_ind].y = y;
+
+        // Change snake direction if set
+        const int8_t enc = int8_t(ui.encoderPosition), diff = enc - old_encoder;
+        if (diff) {
+          old_encoder = enc;
+          turn_snake(diff > 0);
+        }
+
+        if (food_cnt) --food_cnt; else shorten_tail();
+
+        // Did the snake collide with itself or go out of bounds?
+        if (snake_overlap()) {
+          game_state = 0; // Game Over
+          _BUZZ(400, 40); // Bzzzt!
+        }
+        // Is the snake at the food?
+        else if (x == foodx && y == foody) {
+          _BUZZ(5, 220);
+          _BUZZ(5, 280);
+          score++;
+          food_cnt = 2;
+          food_reset();
+        }
+      }
+
+    } while(0);
+
+    u8g.setColorIndex(1);
+
+    // Draw Score
+    if (PAGE_UNDER(HEADER_H)) {
+      lcd_moveto(0, HEADER_H - 1);
+      lcd_put_int(score);
+    }
+
+    // DRAW THE PLAYFIELD BORDER
+    u8g.drawFrame(BOARD_L - 2, BOARD_T - 2, BOARD_R - BOARD_L + 4, BOARD_B - BOARD_T + 4);
+
+    // Draw the snake (tail)
+    #if SNAKE_WH < 2
+
+      // At this scale just draw a line
+      for (uint8_t n = 0; n < head_ind; ++n) {
+        const pos_t &p = snake_tail[n], &q = snake_tail[n + 1];
+        if (p.x == q.x) {
+          const int8_t y1 = GAMEY(MIN(p.y, q.y)), y2 = GAMEY(MAX(p.y, q.y));
+          if (PAGE_CONTAINS(y1, y2))
+            u8g.drawVLine(GAMEX(p.x), y1, y2 - y1 + 1);
+        }
+        else if (PAGE_CONTAINS(GAMEY(p.y), GAMEY(p.y))) {
+          const int8_t x1 = GAMEX(MIN(p.x, q.x)), x2 = GAMEX(MAX(p.x, q.x));
+          u8g.drawHLine(x1, GAMEY(p.y), x2 - x1 + 1);
+        }
+      }
+
+    #elif SNAKE_WH == 2
+
+      // At this scale draw two lines
+      for (uint8_t n = 0; n < head_ind; ++n) {
+        const pos_t &p = snake_tail[n], &q = snake_tail[n + 1];
+        if (p.x == q.x) {
+          const int8_t y1 = GAMEY(MIN(p.y, q.y)), y2 = GAMEY(MAX(p.y, q.y));
+          if (PAGE_CONTAINS(y1, y2 + 1))
+            u8g.drawFrame(GAMEX(p.x), y1, 2, y2 - y1 + 1 + 1);
+        }
+        else {
+          const int8_t py = GAMEY(p.y);
+          if (PAGE_CONTAINS(py, py + 1)) {
+            const int8_t x1 = GAMEX(MIN(p.x, q.x)), x2 = GAMEX(MAX(p.x, q.x));
+            u8g.drawFrame(x1, py, x2 - x1 + 1 + 1, 2);
+          }
+        }
+      }
+
+    #else
+
+      // Draw a series of boxes
+      for (uint8_t n = 0; n < head_ind; ++n) {
+        const pos_t &p = snake_tail[n], &q = snake_tail[n + 1];
+        if (p.x == q.x) {
+          const int8_t y1 = MIN(p.y, q.y), y2 = MAX(p.y, q.y);
+          if (PAGE_CONTAINS(GAMEY(y1), GAMEY(y2) + SNAKE_SIZ - 1)) {
+            for (int8_t i = y1; i <= y2; ++i) {
+              const int8_t y = GAMEY(i);
+              if (PAGE_CONTAINS(y, y + SNAKE_SIZ - 1))
+                u8g.drawBox(GAMEX(p.x), y, SNAKE_SIZ, SNAKE_SIZ);
+            }
+          }
+        }
+        else {
+          const int8_t py = GAMEY(p.y);
+          if (PAGE_CONTAINS(py, py + SNAKE_SIZ - 1)) {
+            const int8_t x1 = MIN(p.x, q.x), x2 = MAX(p.x, q.x);
+            for (int8_t i = x1; i <= x2; ++i)
+              u8g.drawBox(GAMEX(i), py, SNAKE_SIZ, SNAKE_SIZ);
+          }
+        }
+      }
+
+    #endif
+
+    // Draw food
+    const int8_t fy = GAMEY(foody);
+    if (PAGE_CONTAINS(fy, fy + FOOD_WH - 1)) {
+      const int8_t fx = GAMEX(foodx);
+      u8g.drawFrame(fx, fy, FOOD_WH, FOOD_WH);
+      if (FOOD_WH == 5) u8g.drawPixel(fx + 2, fy + 2);
+    }
+
+    // Draw GAME OVER
+    if (!game_state) draw_game_over();
+
+    // A click always exits this game
+    if (ui.use_click()) ui.goto_previous_screen();
+  }
+
+  void lcd_goto_snake() {
+    game_state = 1; // Game running
+    score = 0;
+    snake_reset();
+    food_reset();
+    ui.encoder_direction_normal();
+    ui.goto_screen(game_screen_snake);
+    ui.defer_status_screen();
+  }
+
+#endif // MARLIN_SNAKE
+
+#if HAS_GAME_MENU
+
+  void menu_game() {
+    START_MENU();
+    MENU_BACK(MSG_MAIN);
+    #if ENABLED(MARLIN_BRICKOUT)
+      MENU_ITEM(submenu, MSG_BRICKOUT, lcd_goto_brickout);
+    #endif
+    #if ENABLED(MARLIN_INVADERS)
+      MENU_ITEM(submenu, MSG_INVADERS, lcd_goto_invaders);
+    #endif
+    #if ENABLED(MARLIN_SNAKE)
+      MENU_ITEM(submenu, MSG_SNAKE, lcd_goto_snake);
+    #endif
+    END_MENU();
+  }
+
+#endif
+
+#endif // HAS_LCD_MENU && (MARLIN_BRICKOUT || MARLIN_INVADERS || MARLIN_SNAKE)
diff --git a/Marlin/src/lcd/menu/menu_main.cpp b/Marlin/src/lcd/menu/menu_main.cpp
index c3f5c2850d4d89693083eeaa9b4be35dea9e7eb5..6bba914d69165b1a581a716f7d3a82cc3a39bc63 100644
--- a/Marlin/src/lcd/menu/menu_main.cpp
+++ b/Marlin/src/lcd/menu/menu_main.cpp
@@ -138,6 +138,16 @@ void menu_led();
   #endif
 #endif
 
+#if HAS_GAME_MENU
+  void menu_game();
+#elif ENABLED(MARLIN_BRICKOUT)
+  void lcd_goto_brickout();
+#elif ENABLED(MARLIN_INVADERS)
+  void lcd_goto_invaders();
+#elif ENABLED(MARLIN_SNAKE)
+  void lcd_goto_snake();
+#endif
+
 void menu_main() {
   START_MENU();
   MENU_BACK(MSG_WATCH);
@@ -276,6 +286,20 @@ void menu_main() {
     #endif
   #endif
 
+  #if ANY(MARLIN_BRICKOUT, MARLIN_INVADERS, MARLIN_SNAKE)
+    MENU_ITEM(submenu, "Game", (
+      #if HAS_GAME_MENU
+        menu_game
+      #elif ENABLED(MARLIN_BRICKOUT)
+        lcd_goto_brickout
+      #elif ENABLED(MARLIN_INVADERS)
+        lcd_goto_invaders
+      #elif ENABLED(MARLIN_SNAKE)
+        lcd_goto_snake
+      #endif
+    ));
+  #endif
+
   END_MENU();
 }
 
diff --git a/config/default/Configuration_adv.h b/config/default/Configuration_adv.h
index 70ac464c8d2d3433e5c9b06e2b8613b338732c57..183b3b5c4852ef79b8f576da03b1d1eb10c13c21 100644
--- a/config/default/Configuration_adv.h
+++ b/config/default/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/3DFabXYZ/Migbot/Configuration_adv.h b/config/examples/3DFabXYZ/Migbot/Configuration_adv.h
index 3017e5d1869ec6784b7875912cac687bf00385ba..05b81ff81c86dd673dd11d495dbdb773250945ad 100644
--- a/config/examples/3DFabXYZ/Migbot/Configuration_adv.h
+++ b/config/examples/3DFabXYZ/Migbot/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/AlephObjects/TAZ4/Configuration_adv.h b/config/examples/AlephObjects/TAZ4/Configuration_adv.h
index 39ee55028db5c5f1a29505828422e0ea09ca4f3f..c64d531ac305fd252c307a867071107f6bf11ad1 100644
--- a/config/examples/AlephObjects/TAZ4/Configuration_adv.h
+++ b/config/examples/AlephObjects/TAZ4/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/AliExpress/UM2pExt/Configuration_adv.h b/config/examples/AliExpress/UM2pExt/Configuration_adv.h
index abce3eb161210baf440664d6939680c000068faf..4dc6c37a6dfd5f1cee1d9b506937edf31a749651 100644
--- a/config/examples/AliExpress/UM2pExt/Configuration_adv.h
+++ b/config/examples/AliExpress/UM2pExt/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Anet/A2/Configuration_adv.h b/config/examples/Anet/A2/Configuration_adv.h
index 6ce6388a9695e8eca55bbfdf47dc75621070c254..e28d56acf2a183bd778fe0cc3a8cdd663c04feec 100644
--- a/config/examples/Anet/A2/Configuration_adv.h
+++ b/config/examples/Anet/A2/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Anet/A2plus/Configuration_adv.h b/config/examples/Anet/A2plus/Configuration_adv.h
index 6ce6388a9695e8eca55bbfdf47dc75621070c254..e28d56acf2a183bd778fe0cc3a8cdd663c04feec 100644
--- a/config/examples/Anet/A2plus/Configuration_adv.h
+++ b/config/examples/Anet/A2plus/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Anet/A6/Configuration_adv.h b/config/examples/Anet/A6/Configuration_adv.h
index d6641d7745fa212dc6ef5e82a2b59432cb852b41..90410251827282a94a935c6d7ce8b5b4e1defb50 100644
--- a/config/examples/Anet/A6/Configuration_adv.h
+++ b/config/examples/Anet/A6/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Anet/A8/Configuration_adv.h b/config/examples/Anet/A8/Configuration_adv.h
index 75c645ac21134508a2efa2e9892a2b78943c0d8e..cad3d6fc38f9d31c5e18b719d3440ba4c380a5ae 100644
--- a/config/examples/Anet/A8/Configuration_adv.h
+++ b/config/examples/Anet/A8/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/AnyCubic/i3/Configuration_adv.h b/config/examples/AnyCubic/i3/Configuration_adv.h
index 982884235bade6778f7d43965d7fdb19b8657a4e..ec2db934218ffe48635299fdcc42be44465ad63b 100644
--- a/config/examples/AnyCubic/i3/Configuration_adv.h
+++ b/config/examples/AnyCubic/i3/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/ArmEd/Configuration_adv.h b/config/examples/ArmEd/Configuration_adv.h
index 66746109b25071e9d007f1877433432f6ba5b7f0..22726d861d9366c78e44774c10a58b8c351aab76 100644
--- a/config/examples/ArmEd/Configuration_adv.h
+++ b/config/examples/ArmEd/Configuration_adv.h
@@ -967,6 +967,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h b/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h
index e7e6562d7451b9d5be9824239701cb114621fdaf..42a8771c6f34b10f37dcb879d4a7b39c3dd69ace 100644
--- a/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h
+++ b/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/BIBO/TouchX/default/Configuration_adv.h b/config/examples/BIBO/TouchX/default/Configuration_adv.h
index 5f0af69a382a50858f968f92bd6ace2c2ae050de..4c61586c9b1812715b8b27b5316082151c42b8df 100644
--- a/config/examples/BIBO/TouchX/default/Configuration_adv.h
+++ b/config/examples/BIBO/TouchX/default/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/BQ/Hephestos/Configuration_adv.h b/config/examples/BQ/Hephestos/Configuration_adv.h
index 08a7aa4e9b821e59841c35295c21cac29ba0261f..4317fa7ee6b0f9c9b8d309175ae6da9116d02097 100644
--- a/config/examples/BQ/Hephestos/Configuration_adv.h
+++ b/config/examples/BQ/Hephestos/Configuration_adv.h
@@ -960,6 +960,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/BQ/Hephestos_2/Configuration_adv.h b/config/examples/BQ/Hephestos_2/Configuration_adv.h
index 084a7ab62d7f1fb890bcff06192c4b10b545b031..515cad7ac91aa5ead24df6f9f4a417bbada230ba 100644
--- a/config/examples/BQ/Hephestos_2/Configuration_adv.h
+++ b/config/examples/BQ/Hephestos_2/Configuration_adv.h
@@ -968,6 +968,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/BQ/WITBOX/Configuration_adv.h b/config/examples/BQ/WITBOX/Configuration_adv.h
index 08a7aa4e9b821e59841c35295c21cac29ba0261f..4317fa7ee6b0f9c9b8d309175ae6da9116d02097 100644
--- a/config/examples/BQ/WITBOX/Configuration_adv.h
+++ b/config/examples/BQ/WITBOX/Configuration_adv.h
@@ -960,6 +960,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Cartesio/Configuration_adv.h b/config/examples/Cartesio/Configuration_adv.h
index 76b92692a93b0904768248bea3bee1ca30562620..caac634045aad534206f9339d24773fa0eccd7b4 100644
--- a/config/examples/Cartesio/Configuration_adv.h
+++ b/config/examples/Cartesio/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Creality/CR-10/Configuration_adv.h b/config/examples/Creality/CR-10/Configuration_adv.h
index a93496e6b7b49fc2cc95d81ec47092245570fc9d..32bf3347cef77c16c8530f991731137150431731 100644
--- a/config/examples/Creality/CR-10/Configuration_adv.h
+++ b/config/examples/Creality/CR-10/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Creality/CR-10S/Configuration_adv.h b/config/examples/Creality/CR-10S/Configuration_adv.h
index 60ba93c443c398dff0cc3f5466291b1d22a57c35..8e9e67cbb0a23e778b8cc0c40601b25e09a5e857 100644
--- a/config/examples/Creality/CR-10S/Configuration_adv.h
+++ b/config/examples/Creality/CR-10S/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Creality/CR-10_5S/Configuration_adv.h b/config/examples/Creality/CR-10_5S/Configuration_adv.h
index 66651e5dff29967cfa8cd78be75a93705ca9d08f..f636a5f09e15dea49bff6594f5316ee63d7d8ddc 100644
--- a/config/examples/Creality/CR-10_5S/Configuration_adv.h
+++ b/config/examples/Creality/CR-10_5S/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Creality/CR-10mini/Configuration_adv.h b/config/examples/Creality/CR-10mini/Configuration_adv.h
index 7da85a0e54738caae508e5c472a9ce83a89a1c4e..f63d2b8b81af0dc6f3b763639642c94c46d7d520 100644
--- a/config/examples/Creality/CR-10mini/Configuration_adv.h
+++ b/config/examples/Creality/CR-10mini/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Creality/CR-8/Configuration_adv.h b/config/examples/Creality/CR-8/Configuration_adv.h
index dc5ec5c1aec5a55c9274fa9183406cc30b64c2e7..127417eed89b4d209078e017f9f50059b6fa852f 100644
--- a/config/examples/Creality/CR-8/Configuration_adv.h
+++ b/config/examples/Creality/CR-8/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Creality/Ender-2/Configuration_adv.h b/config/examples/Creality/Ender-2/Configuration_adv.h
index 5a56e21a1500dd73bdf5714879a2dbb63907ea58..c33caf17ca2114bd77e6cfa447898a1c6f21caea 100644
--- a/config/examples/Creality/Ender-2/Configuration_adv.h
+++ b/config/examples/Creality/Ender-2/Configuration_adv.h
@@ -960,6 +960,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Creality/Ender-3/Configuration_adv.h b/config/examples/Creality/Ender-3/Configuration_adv.h
index 78ec113b7f1d0a3070de8fc03130b7cc31d16f12..f4f3576e3e27b79d8a9419784c5721521c047861 100644
--- a/config/examples/Creality/Ender-3/Configuration_adv.h
+++ b/config/examples/Creality/Ender-3/Configuration_adv.h
@@ -960,6 +960,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Creality/Ender-4/Configuration_adv.h b/config/examples/Creality/Ender-4/Configuration_adv.h
index d585515554acd2b520dc92a5e4b4544edd911bd1..9a0709aee84f85c6a6a7bac3e81910743ddc755f 100644
--- a/config/examples/Creality/Ender-4/Configuration_adv.h
+++ b/config/examples/Creality/Ender-4/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Einstart-S/Configuration_adv.h b/config/examples/Einstart-S/Configuration_adv.h
index 72381481c4b754afc70c82846c2181ec0fa882c4..9e0c8679a9053bc758e29a6b96004567fb3c009d 100644
--- a/config/examples/Einstart-S/Configuration_adv.h
+++ b/config/examples/Einstart-S/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Felix/Configuration_adv.h b/config/examples/Felix/Configuration_adv.h
index 2afa093d0dff53a52e9765900671f3dc6fa2274d..0272518139ebdd547eb288f5ec98a06ddb6dc108 100644
--- a/config/examples/Felix/Configuration_adv.h
+++ b/config/examples/Felix/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/FlashForge/CreatorPro/Configuration_adv.h b/config/examples/FlashForge/CreatorPro/Configuration_adv.h
index e0525fe6ed2142e77c0a2a62779d2ba0fd3c65b8..b7680706f5f08d6bc994245d00b838c77674b233 100644
--- a/config/examples/FlashForge/CreatorPro/Configuration_adv.h
+++ b/config/examples/FlashForge/CreatorPro/Configuration_adv.h
@@ -959,6 +959,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/FolgerTech/i3-2020/Configuration_adv.h b/config/examples/FolgerTech/i3-2020/Configuration_adv.h
index 5830c324c9189f8c92e640a99dbeff9abb6b3d31..4c85f8a6f54ca713ed0faf4717876806b19c689b 100644
--- a/config/examples/FolgerTech/i3-2020/Configuration_adv.h
+++ b/config/examples/FolgerTech/i3-2020/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Formbot/Raptor/Configuration_adv.h b/config/examples/Formbot/Raptor/Configuration_adv.h
index d4e7a1c0bf09039f6b02def1b3b6f60cfb7c3b2c..3659665a3f99aae2f2d1566cbbff53f3693ef32f 100644
--- a/config/examples/Formbot/Raptor/Configuration_adv.h
+++ b/config/examples/Formbot/Raptor/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Formbot/T_Rex_2+/Configuration_adv.h b/config/examples/Formbot/T_Rex_2+/Configuration_adv.h
index 644709a175b64c810bfc08d3bb425cdb1b68a8fd..c644c66dc0c4c41ffbb0a0fd1a5130f227d92264 100644
--- a/config/examples/Formbot/T_Rex_2+/Configuration_adv.h
+++ b/config/examples/Formbot/T_Rex_2+/Configuration_adv.h
@@ -967,6 +967,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Formbot/T_Rex_3/Configuration_adv.h b/config/examples/Formbot/T_Rex_3/Configuration_adv.h
index c1468b73bfeb9b3d9987686434e60d8007e74490..9c5065f4ae35d4d18ad96fca8bf5ee8998d53371 100644
--- a/config/examples/Formbot/T_Rex_3/Configuration_adv.h
+++ b/config/examples/Formbot/T_Rex_3/Configuration_adv.h
@@ -967,6 +967,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Geeetech/A10M/Configuration_adv.h b/config/examples/Geeetech/A10M/Configuration_adv.h
index 04104b287bace08665c12836547170c2ad88fe89..2daf13c3638a962f485cffa3c09fb8e61ee425cc 100644
--- a/config/examples/Geeetech/A10M/Configuration_adv.h
+++ b/config/examples/Geeetech/A10M/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Geeetech/A20M/Configuration_adv.h b/config/examples/Geeetech/A20M/Configuration_adv.h
index 0e9375623a23410213d923197ffbf3ab39c2b925..570be635803778b448d2b51400ff9185aa8a8d89 100644
--- a/config/examples/Geeetech/A20M/Configuration_adv.h
+++ b/config/examples/Geeetech/A20M/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Geeetech/MeCreator2/Configuration_adv.h b/config/examples/Geeetech/MeCreator2/Configuration_adv.h
index 5facad3459b0566be4991a5368a1dbba75f4ea76..c34d3f51347e95c60f6b043060b1dcdafd91057d 100644
--- a/config/examples/Geeetech/MeCreator2/Configuration_adv.h
+++ b/config/examples/Geeetech/MeCreator2/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h b/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h
index bed58ed7cfc35a25f1bbde722e348742a93ac722..599e3cdb74d99f44f64c7f7e86317d6978f420dd 100644
--- a/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h	
+++ b/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h	
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h b/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h
index bed58ed7cfc35a25f1bbde722e348742a93ac722..599e3cdb74d99f44f64c7f7e86317d6978f420dd 100644
--- a/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h	
+++ b/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h	
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Infitary/i3-M508/Configuration_adv.h b/config/examples/Infitary/i3-M508/Configuration_adv.h
index 8c02dfeb175d83394cdab4b9b9bef7b8aec7df4c..ed8e6b8c770abb601d62d5321b479f14a0a40943 100644
--- a/config/examples/Infitary/i3-M508/Configuration_adv.h
+++ b/config/examples/Infitary/i3-M508/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/JGAurora/A5/Configuration_adv.h b/config/examples/JGAurora/A5/Configuration_adv.h
index 010340404fe7b49d9d3763dd08edc67afe97afa2..076794c94a5d2577cd9e042db62fbbab96351fb4 100644
--- a/config/examples/JGAurora/A5/Configuration_adv.h
+++ b/config/examples/JGAurora/A5/Configuration_adv.h
@@ -960,6 +960,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/MakerParts/Configuration_adv.h b/config/examples/MakerParts/Configuration_adv.h
index ecb4155dfa65464302e294edaf371fb3daa59754..fd50d5b8c5bbf5501be1419bd5418883de4ee79e 100644
--- a/config/examples/MakerParts/Configuration_adv.h
+++ b/config/examples/MakerParts/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Malyan/M150/Configuration_adv.h b/config/examples/Malyan/M150/Configuration_adv.h
index 890223b69d3afaf7476e5ec54c73673bddcf9d9f..bd474d687c4927052f3484e2729fc2a84506e173 100644
--- a/config/examples/Malyan/M150/Configuration_adv.h
+++ b/config/examples/Malyan/M150/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Malyan/M200/Configuration_adv.h b/config/examples/Malyan/M200/Configuration_adv.h
index f5605140eba42a0c9b396da33e685a34dfba8650..4d27b5778cbcba064ded124715a5c6aca944bdd4 100644
--- a/config/examples/Malyan/M200/Configuration_adv.h
+++ b/config/examples/Malyan/M200/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Micromake/C1/enhanced/Configuration_adv.h b/config/examples/Micromake/C1/enhanced/Configuration_adv.h
index 70ac464c8d2d3433e5c9b06e2b8613b338732c57..183b3b5c4852ef79b8f576da03b1d1eb10c13c21 100644
--- a/config/examples/Micromake/C1/enhanced/Configuration_adv.h
+++ b/config/examples/Micromake/C1/enhanced/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Mks/Robin/Configuration_adv.h b/config/examples/Mks/Robin/Configuration_adv.h
index 64f82dbae75d4a3ecef862180824996244498f29..03920406f8630f8db8f9a53d948f93031f1fdcb4 100644
--- a/config/examples/Mks/Robin/Configuration_adv.h
+++ b/config/examples/Mks/Robin/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Mks/Sbase/Configuration_adv.h b/config/examples/Mks/Sbase/Configuration_adv.h
index 197beecc5433731ba5975a33d2a74a6073bed4e0..ff30569170095453cb5489dc944824b2e776885b 100644
--- a/config/examples/Mks/Sbase/Configuration_adv.h
+++ b/config/examples/Mks/Sbase/Configuration_adv.h
@@ -964,6 +964,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/RapideLite/RL200/Configuration_adv.h b/config/examples/RapideLite/RL200/Configuration_adv.h
index 11936a78d168e963333bd56a692b2337b8c4225e..3f20ccc54e3299d6beb54ca6a95834b4dadc0cca 100644
--- a/config/examples/RapideLite/RL200/Configuration_adv.h
+++ b/config/examples/RapideLite/RL200/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/RigidBot/Configuration_adv.h b/config/examples/RigidBot/Configuration_adv.h
index 8ac303a6de0e523a88a44d4820eee6f7ccd276fa..0e41e14b923d4d8a71824ebbd1461151b127a1c2 100644
--- a/config/examples/RigidBot/Configuration_adv.h
+++ b/config/examples/RigidBot/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/SCARA/Configuration_adv.h b/config/examples/SCARA/Configuration_adv.h
index 0e82995baa4d3181d0ddb1d305dd276c487d17ba..7c1fd69a09f807663af239c0f3fdbd3bc5f34f5e 100644
--- a/config/examples/SCARA/Configuration_adv.h
+++ b/config/examples/SCARA/Configuration_adv.h
@@ -960,6 +960,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Sanguinololu/Configuration_adv.h b/config/examples/Sanguinololu/Configuration_adv.h
index b1fc3c3071286364d820e443fac62c937be23eff..c01ee118038103bb5155eaea06e7da6ed4db3650 100644
--- a/config/examples/Sanguinololu/Configuration_adv.h
+++ b/config/examples/Sanguinololu/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/TheBorg/Configuration_adv.h b/config/examples/TheBorg/Configuration_adv.h
index 46475340dc90cf8115d218242e4e3aa8eb6d03db..823c923b510437b5adbcafd54ea0123f0873cf01 100644
--- a/config/examples/TheBorg/Configuration_adv.h
+++ b/config/examples/TheBorg/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/TinyBoy2/Configuration_adv.h b/config/examples/TinyBoy2/Configuration_adv.h
index 81af85aabd3b7f7923c69c13eba87fdc017f249f..747a88dae48c7b365c3bdeeb619852235647d669 100644
--- a/config/examples/TinyBoy2/Configuration_adv.h
+++ b/config/examples/TinyBoy2/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Tronxy/X3A/Configuration_adv.h b/config/examples/Tronxy/X3A/Configuration_adv.h
index f6bab07a02a73bce56f22e4468bd46ffd8a9cdf5..d7823e7208672afe2a17b7352f1fe1d6d8aa2083 100644
--- a/config/examples/Tronxy/X3A/Configuration_adv.h
+++ b/config/examples/Tronxy/X3A/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Tronxy/X5S-2E/Configuration_adv.h b/config/examples/Tronxy/X5S-2E/Configuration_adv.h
index d3f8b77a2a9fe5cd9b70fe53020424c406cba92a..f1c17f07c288908cf0c18dd7280dacf699c94653 100644
--- a/config/examples/Tronxy/X5S-2E/Configuration_adv.h
+++ b/config/examples/Tronxy/X5S-2E/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/UltiMachine/Archim1/Configuration_adv.h b/config/examples/UltiMachine/Archim1/Configuration_adv.h
index 93777bf6c9e4f1abfcfb2da963861c8130c09f4a..0ef5a6fee86e0df95b1bfa5322f4b4bc2d01eb8d 100644
--- a/config/examples/UltiMachine/Archim1/Configuration_adv.h
+++ b/config/examples/UltiMachine/Archim1/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/UltiMachine/Archim2/Configuration_adv.h b/config/examples/UltiMachine/Archim2/Configuration_adv.h
index 04818ac1206142d6f40f5a6beeddd6a1239bc40c..0f98d095bac8fa1a520c7f6ac159c59a20786880 100644
--- a/config/examples/UltiMachine/Archim2/Configuration_adv.h
+++ b/config/examples/UltiMachine/Archim2/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/VORONDesign/Configuration_adv.h b/config/examples/VORONDesign/Configuration_adv.h
index 0cf96dbe27d7e3c4d2a6518b3329a9e7f8c6bc89..99345d605566b3ca60278cdd726725d81cda0867 100644
--- a/config/examples/VORONDesign/Configuration_adv.h
+++ b/config/examples/VORONDesign/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Velleman/K8200/Configuration_adv.h b/config/examples/Velleman/K8200/Configuration_adv.h
index 20d331a00cf9d4d250f46b5988b24d9b717bb243..ea5c24105c030ee45c660b1fded69a70f187cb5c 100644
--- a/config/examples/Velleman/K8200/Configuration_adv.h
+++ b/config/examples/Velleman/K8200/Configuration_adv.h
@@ -976,6 +976,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Velleman/K8400/Configuration_adv.h b/config/examples/Velleman/K8400/Configuration_adv.h
index 8eabb3730392708de07572a6ca408f08c2ffd5b8..a409b86405d87fb98b74a60a1e48627faef322c5 100644
--- a/config/examples/Velleman/K8400/Configuration_adv.h
+++ b/config/examples/Velleman/K8400/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/WASP/PowerWASP/Configuration_adv.h b/config/examples/WASP/PowerWASP/Configuration_adv.h
index c76439c031bd783aad602d5317306871ff21ac85..56d7d08e93527ef0d14aac8bc9004ac7d944421c 100644
--- a/config/examples/WASP/PowerWASP/Configuration_adv.h
+++ b/config/examples/WASP/PowerWASP/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/Wanhao/Duplicator 6/Configuration_adv.h b/config/examples/Wanhao/Duplicator 6/Configuration_adv.h
index e293c8332c423b09c26314799e74fcb0e6223115..9c65727d1d2ea14bd1feafc10c0c5ab10fed5f31 100644
--- a/config/examples/Wanhao/Duplicator 6/Configuration_adv.h	
+++ b/config/examples/Wanhao/Duplicator 6/Configuration_adv.h	
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/Anycubic/Kossel/Configuration_adv.h b/config/examples/delta/Anycubic/Kossel/Configuration_adv.h
index e29cc4f2ef4366a9bae4b06f5fafe5b59e76dbb7..258ab41bced28ac9c5b1de32a760700094b97812 100644
--- a/config/examples/delta/Anycubic/Kossel/Configuration_adv.h
+++ b/config/examples/delta/Anycubic/Kossel/Configuration_adv.h
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h b/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h
index b32205f7094543d5fc1b1661aad32bfaa8f4daf5..54e50a984c2f7e82f7496c36df547f45f16d1436 100644
--- a/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h
+++ b/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/FLSUN/kossel/Configuration_adv.h b/config/examples/delta/FLSUN/kossel/Configuration_adv.h
index b32205f7094543d5fc1b1661aad32bfaa8f4daf5..54e50a984c2f7e82f7496c36df547f45f16d1436 100644
--- a/config/examples/delta/FLSUN/kossel/Configuration_adv.h
+++ b/config/examples/delta/FLSUN/kossel/Configuration_adv.h
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h b/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h
index 8b04c9ce1b403b47c9a7c4e7505b5502f7359b2b..1b7c002b7081c89150c84fb5e1b78b6cf834f16d 100644
--- a/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h
+++ b/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h b/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h
index 8b04c9ce1b403b47c9a7c4e7505b5502f7359b2b..1b7c002b7081c89150c84fb5e1b78b6cf834f16d 100644
--- a/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h	
+++ b/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h	
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/MKS/SBASE/Configuration_adv.h b/config/examples/delta/MKS/SBASE/Configuration_adv.h
index 57c13b957bb8d518876f2c5d4f3046d7aa0ad5ac..a93d05394bc4b92066bab8d9b9480d14313e4e8e 100644
--- a/config/examples/delta/MKS/SBASE/Configuration_adv.h
+++ b/config/examples/delta/MKS/SBASE/Configuration_adv.h
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/Tevo Little Monster/Configuration_adv.h b/config/examples/delta/Tevo Little Monster/Configuration_adv.h
index 4b4da6cf6696b59cf768f140e0f1842956ea9182..a6ccecac89797d39d4401a92ac02878757c7cee5 100644
--- a/config/examples/delta/Tevo Little Monster/Configuration_adv.h	
+++ b/config/examples/delta/Tevo Little Monster/Configuration_adv.h	
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/generic/Configuration_adv.h b/config/examples/delta/generic/Configuration_adv.h
index 8b04c9ce1b403b47c9a7c4e7505b5502f7359b2b..1b7c002b7081c89150c84fb5e1b78b6cf834f16d 100644
--- a/config/examples/delta/generic/Configuration_adv.h
+++ b/config/examples/delta/generic/Configuration_adv.h
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/kossel_mini/Configuration_adv.h b/config/examples/delta/kossel_mini/Configuration_adv.h
index c27fb50fb4c8e6d06fb95e90c0f3406a850a4ad0..bb5f8fc87775886f844a8fcec66a78e31782570e 100644
--- a/config/examples/delta/kossel_mini/Configuration_adv.h
+++ b/config/examples/delta/kossel_mini/Configuration_adv.h
@@ -961,6 +961,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/delta/kossel_xl/Configuration_adv.h b/config/examples/delta/kossel_xl/Configuration_adv.h
index 632db995f66b857651b7106f12a5753d56eee11f..d5695f5bae1dfd61b6da49eec89c044de9bd57f8 100644
--- a/config/examples/delta/kossel_xl/Configuration_adv.h
+++ b/config/examples/delta/kossel_xl/Configuration_adv.h
@@ -962,6 +962,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/gCreate/gMax1.5+/Configuration_adv.h b/config/examples/gCreate/gMax1.5+/Configuration_adv.h
index fbcc4a42935fb3d9bbaa5f095091733afd3e438b..34984217a299aed6e302f6ab61c66dac2e113808 100644
--- a/config/examples/gCreate/gMax1.5+/Configuration_adv.h
+++ b/config/examples/gCreate/gMax1.5+/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/makibox/Configuration_adv.h b/config/examples/makibox/Configuration_adv.h
index b0fb192f0ea78af577d75a51966e8a6806bcc153..085b551f72398ff42cc350b627148f630918da5b 100644
--- a/config/examples/makibox/Configuration_adv.h
+++ b/config/examples/makibox/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/tvrrug/Round2/Configuration_adv.h b/config/examples/tvrrug/Round2/Configuration_adv.h
index 5b912fa7900539445919b4cbd0e1cf232bb20d63..1c6cc4191a0d58b19c3c565a723e05207e135f03 100644
--- a/config/examples/tvrrug/Round2/Configuration_adv.h
+++ b/config/examples/tvrrug/Round2/Configuration_adv.h
@@ -963,6 +963,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety
diff --git a/config/examples/wt150/Configuration_adv.h b/config/examples/wt150/Configuration_adv.h
index 05f999a57025ab35df292ef8216a7e28ef622a52..307a649bbe663a39b6efa9f5ffe7fbc106847908 100644
--- a/config/examples/wt150/Configuration_adv.h
+++ b/config/examples/wt150/Configuration_adv.h
@@ -964,6 +964,11 @@
   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
 
+  // Frivolous Game Options
+  //#define MARLIN_BRICKOUT
+  //#define MARLIN_INVADERS
+  //#define MARLIN_SNAKE
+
 #endif // HAS_GRAPHICAL_LCD
 
 // @section safety