├── LICENSE ├── README.md ├── preview ├── Baronly.png ├── fullScreen.png └── waybarBaronly.png └── src ├── config ├── config.jsonc ├── scripts ├── amixer-toggle.sh ├── brightness.sh ├── colorpicker.sh ├── myUpdates.sh ├── myupdate.sh ├── powerdraw.sh └── weather.sh ├── style.css └── style2.css /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/README.md -------------------------------------------------------------------------------- /preview/Baronly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/preview/Baronly.png -------------------------------------------------------------------------------- /preview/fullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/preview/fullScreen.png -------------------------------------------------------------------------------- /preview/waybarBaronly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/preview/waybarBaronly.png -------------------------------------------------------------------------------- /src/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/config -------------------------------------------------------------------------------- /src/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/config.jsonc -------------------------------------------------------------------------------- /src/scripts/amixer-toggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/scripts/amixer-toggle.sh -------------------------------------------------------------------------------- /src/scripts/brightness.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/scripts/colorpicker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/scripts/colorpicker.sh -------------------------------------------------------------------------------- /src/scripts/myUpdates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/scripts/myUpdates.sh -------------------------------------------------------------------------------- /src/scripts/myupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/scripts/myupdate.sh -------------------------------------------------------------------------------- /src/scripts/powerdraw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/scripts/powerdraw.sh -------------------------------------------------------------------------------- /src/scripts/weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/scripts/weather.sh -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/style.css -------------------------------------------------------------------------------- /src/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish-kus/waybar-minimal/HEAD/src/style2.css --------------------------------------------------------------------------------