Skip to content

Commit 385efed

Browse files
committed
add easter egg for orvar
1 parent 6e63f61 commit 385efed

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

src/app/tile/update.rs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,6 +1008,19 @@ fn execute_query(tile: &mut Tile, id: Id) -> Task<Message> {
10081008
}];
10091009
return single_item_resize_task(id);
10101010
}
1011+
"zombo" => {
1012+
tile.results = vec![App {
1013+
ranking: 0,
1014+
open_command: AppCommand::Function(Function::OpenWebsite(
1015+
"https://zombo.com".to_string(),
1016+
)),
1017+
desc: "Easter Egg".to_string(),
1018+
icons: None,
1019+
display_name: "🫳 🌱".to_string(),
1020+
search_name: "".to_string(),
1021+
}];
1022+
return single_item_resize_task(id);
1023+
}
10111024
"lemon" => {
10121025
tile.results = vec![App {
10131026
ranking: 0,

0 commit comments

Comments
 (0)