├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── custom-settings.json ├── default-settings.json ├── images ├── logo-simple-bar-lite.png ├── preview-dark.jpg └── preview-light.jpg ├── lib ├── components │ ├── battery.jsx │ ├── custom-widgets.jsx │ ├── date-time.jsx │ ├── icons.jsx │ ├── network.jsx │ ├── process.jsx │ ├── sound.jsx │ ├── space.jsx │ └── widget.jsx ├── custom-components │ ├── index.jsx │ └── weather.jsx ├── hooks │ └── use-widget-refresh.js ├── scripts │ └── init.sh ├── services │ ├── classnames.js │ ├── json.js │ ├── output.js │ ├── settings.js │ ├── slider.js │ ├── styles.js │ └── yabai.js └── styles │ ├── components │ ├── battery.css │ ├── date-time.css │ ├── network.css │ ├── process.css │ ├── sound.css │ ├── space.css │ └── widget.css │ ├── core │ └── base.css │ └── index.css ├── main.jsx └── package.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Jean-Tinland] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/README.md -------------------------------------------------------------------------------- /custom-settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /default-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/default-settings.json -------------------------------------------------------------------------------- /images/logo-simple-bar-lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/images/logo-simple-bar-lite.png -------------------------------------------------------------------------------- /images/preview-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/images/preview-dark.jpg -------------------------------------------------------------------------------- /images/preview-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/images/preview-light.jpg -------------------------------------------------------------------------------- /lib/components/battery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/components/battery.jsx -------------------------------------------------------------------------------- /lib/components/custom-widgets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/components/custom-widgets.jsx -------------------------------------------------------------------------------- /lib/components/date-time.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/components/date-time.jsx -------------------------------------------------------------------------------- /lib/components/icons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/components/icons.jsx -------------------------------------------------------------------------------- /lib/components/network.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/components/network.jsx -------------------------------------------------------------------------------- /lib/components/process.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/components/process.jsx -------------------------------------------------------------------------------- /lib/components/sound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/components/sound.jsx -------------------------------------------------------------------------------- /lib/components/space.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/components/space.jsx -------------------------------------------------------------------------------- /lib/components/widget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/components/widget.jsx -------------------------------------------------------------------------------- /lib/custom-components/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/custom-components/index.jsx -------------------------------------------------------------------------------- /lib/custom-components/weather.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/custom-components/weather.jsx -------------------------------------------------------------------------------- /lib/hooks/use-widget-refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/hooks/use-widget-refresh.js -------------------------------------------------------------------------------- /lib/scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/scripts/init.sh -------------------------------------------------------------------------------- /lib/services/classnames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/services/classnames.js -------------------------------------------------------------------------------- /lib/services/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/services/json.js -------------------------------------------------------------------------------- /lib/services/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/services/output.js -------------------------------------------------------------------------------- /lib/services/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/services/settings.js -------------------------------------------------------------------------------- /lib/services/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/services/slider.js -------------------------------------------------------------------------------- /lib/services/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/services/styles.js -------------------------------------------------------------------------------- /lib/services/yabai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/services/yabai.js -------------------------------------------------------------------------------- /lib/styles/components/battery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/styles/components/battery.css -------------------------------------------------------------------------------- /lib/styles/components/date-time.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/styles/components/network.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/styles/components/network.css -------------------------------------------------------------------------------- /lib/styles/components/process.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/styles/components/process.css -------------------------------------------------------------------------------- /lib/styles/components/sound.css: -------------------------------------------------------------------------------- 1 | .spl-sound--muted { 2 | text-decoration: line-through; 3 | } 4 | -------------------------------------------------------------------------------- /lib/styles/components/space.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/styles/components/space.css -------------------------------------------------------------------------------- /lib/styles/components/widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/styles/components/widget.css -------------------------------------------------------------------------------- /lib/styles/core/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/styles/core/base.css -------------------------------------------------------------------------------- /lib/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/lib/styles/index.css -------------------------------------------------------------------------------- /main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/main.jsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jean-Tinland/simple-bar-lite/HEAD/package.json --------------------------------------------------------------------------------