We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e63f61 commit 385efedCopy full SHA for 385efed
1 file changed
src/app/tile/update.rs
@@ -1008,6 +1008,19 @@ fn execute_query(tile: &mut Tile, id: Id) -> Task<Message> {
1008
}];
1009
return single_item_resize_task(id);
1010
}
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
+ }
1024
"lemon" => {
1025
tile.results = vec![App {
1026
ranking: 0,
0 commit comments