From 3ff7b1fd9bcd14d10c7f2b10b1246a697b124ece Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Mon, 15 Jul 2024 20:44:00 -0700 Subject: [PATCH] Revert readme --- README.md | 34 +++++++++++++++++++++------------- modules/bar/Bar.ts | 3 +-- 2 files changed, 22 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 71563ed..b2672a4 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,23 @@ - -# Starter Config - -if suggestions don't work, first make sure -you have TypeScript LSP working in your editor - -if you do not want typechecking only suggestions - -```json -// tsconfig.json -"checkJs": false +Requirements: +Bun (may require sudo) +```sh +curl -fsSL https://bun.sh/install | bash && \ + ln -s $HOME/.bun/bin/bun /usr/local/bin/bun ``` -types are symlinked to: -/usr/share/com.github.Aylur.ags/types +``` +pipewire +bluez +bluez-utils +grimblast +gpu-screen-recorder +hyprpicker +btop +nmcli +networkmanager +dart-sass +brightnessctl +python +python-gpustat + +``` diff --git a/modules/bar/Bar.ts b/modules/bar/Bar.ts index 52322dd..88b943b 100644 --- a/modules/bar/Bar.ts +++ b/modules/bar/Bar.ts @@ -31,7 +31,6 @@ const widget = { bluetooth: () => WidgetContainer(Bluetooth()), clock: () => WidgetContainer(Clock()), systray: () => WidgetContainer(SysTray()), - // expander: () => Widget.Box({ expand: true }), }; export const Bar = (monitor: number) => { @@ -51,7 +50,7 @@ export const Bar = (monitor: number) => { setup: self => { self.children = start.value.map(w => widget[w](monitor)); self.hook(start, (self) => { - self.children = start.value.map(w => widget[w](monitor)); + self.children = start.value.map(w => widget[w](monitor)); }) }, }),