├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config ├── bar.json └── style.css ├── go.mod ├── go.sum ├── images ├── system-hibernate.svg ├── system-lock-screen.svg ├── system-log-out.svg ├── system-reboot.svg ├── system-shutdown.svg └── system-suspend.svg ├── main.go └── tools.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/README.md -------------------------------------------------------------------------------- /config/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/config/bar.json -------------------------------------------------------------------------------- /config/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/config/style.css -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/go.sum -------------------------------------------------------------------------------- /images/system-hibernate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/images/system-hibernate.svg -------------------------------------------------------------------------------- /images/system-lock-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/images/system-lock-screen.svg -------------------------------------------------------------------------------- /images/system-log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/images/system-log-out.svg -------------------------------------------------------------------------------- /images/system-reboot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/images/system-reboot.svg -------------------------------------------------------------------------------- /images/system-shutdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/images/system-shutdown.svg -------------------------------------------------------------------------------- /images/system-suspend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/images/system-suspend.svg -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/main.go -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-bar/HEAD/tools.go --------------------------------------------------------------------------------