1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import "./home";
api.addSearchAlias("il", "Lucide Icons", "https://lucide.dev/icons/?search=%s");
api.addSearchAlias("l", "Linear", "https://linear.app/goldcoin/search?q=%s");
api.mapkey("gd1", "Open Chanced Development", () =>
api.tabOpenLink("http://localhost:8081"),
);
api.mapkey("gd2", "Open Punt Development", () =>
api.tabOpenLink("http://localhost:8082"),
);
api.mapkey("gd3", "Open Filament", () =>
api.tabOpenLink("http://localhost:8002"),
);
api.mapkey("ggc", "Open chanced-frontend on Github", () =>
api.tabOpenLink("https://github.com/juked-social/chanced-frontend"),
);
api.mapkey("ggp", "Open punt-frontend on Github", () =>
api.tabOpenLink("https://github.com/juked-social/punt-frontend"),
);
api.mapkey("ggb", "Open social-api on Github", () =>
api.tabOpenLink("https://github.com/juked-social/social-api"),
);
api.mapkey("ga", "Open AWS", () =>
api.tabOpenLink("https://socialplay.awsapps.com/start/#/"),
);
|