From 1df440d587779a437201c5c22094a2141b87b8c0 Mon Sep 17 00:00:00 2001 From: unsecretised Date: Wed, 7 Jan 2026 19:08:06 +0800 Subject: [PATCH] Add new easter egg for 67 --- src/app/tile/update.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/app/tile/update.rs b/src/app/tile/update.rs index 1869488..13cabe3 100644 --- a/src/app/tile/update.rs +++ b/src/app/tile/update.rs @@ -64,6 +64,21 @@ pub fn handle_update(tile: &mut Tile, message: Message) -> Task { height: 55. + DEFAULT_WINDOW_HEIGHT, }, ); + } else if tile.query_lc == "67" { + tile.results = vec![App { + open_command: AppCommand::Function(Function::RandomVar(67)), + desc: "Easter egg".to_string(), + icons: None, + name: 67.to_string(), + name_lc: String::new(), + }]; + return window::resize( + id, + iced::Size { + width: WINDOW_WIDTH, + height: 55. + DEFAULT_WINDOW_HEIGHT, + }, + ); } else if tile.query_lc.ends_with("?") { tile.results = vec![App { open_command: AppCommand::Function(Function::GoogleSearch(tile.query.clone())),