From 10329796e301a002cd21c6e8dafe217a591f58ca Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Thu, 18 Jul 2024 10:38:55 -0700 Subject: [PATCH 1/3] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index e3aa62b..afa4031 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,17 @@ Bun (may require sudo) curl -fsSL https://bun.sh/install | bash && \ ln -s $HOME/.bun/bin/bun /usr/local/bin/bun ``` +AGS: https://github.com/Aylur/ags +A weatherapi key in a file at Documents/Keys/keyList.js +Create an object like so +```js +export const keyring = { + weatherapi: "your_weatherapi_key" +} +``` +This API key approach is only temporary and won't be needed soon. +Additional dependencies: ``` pipewire bluez From 914afefb63b6d171d62be4511267b8045af4d238 Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Thu, 18 Jul 2024 10:39:34 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index afa4031..4d98c60 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ curl -fsSL https://bun.sh/install | bash && \ ln -s $HOME/.bun/bin/bun /usr/local/bin/bun ``` AGS: https://github.com/Aylur/ags -A weatherapi key in a file at Documents/Keys/keyList.js + +A [weatherapi](https://www.weatherapi.com/) key in a file at Documents/Keys/keyList.js Create an object like so ```js export const keyring = { From 2547b08b06be6afa14410b1c94b7ddd96f8f3159 Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Thu, 18 Jul 2024 10:39:58 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d98c60..295a173 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ AGS: https://github.com/Aylur/ags A [weatherapi](https://www.weatherapi.com/) key in a file at Documents/Keys/keyList.js Create an object like so ```js -export const keyring = { +export const keyRing = { weatherapi: "your_weatherapi_key" } ```