├── .github └── workflows │ └── makefile.yml ├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile.am ├── NEWS ├── README ├── THANKS ├── acinclude.m4 ├── autogen.sh ├── bwm-ng.1 ├── bwm-ng.conf-example ├── bwm-ng.css ├── configure.ac └── src ├── Makefile.am ├── bwm-ng.c ├── bwm-ng.h ├── curses_tools.c ├── curses_tools.h ├── defines.h ├── global_vars.h ├── help.c ├── help.h ├── input ├── devstat.c ├── devstat.h ├── getifaddrs.c ├── getifaddrs.h ├── ioservice.c ├── ioservice.h ├── libkstat.c ├── libkstat.h ├── libstatgrab.c ├── libstatgrab.h ├── netstat.c ├── netstat.h ├── proc_diskstats.c ├── proc_diskstats.h ├── proc_net_dev.c ├── proc_net_dev.h ├── retrieve.c ├── retrieve.h ├── sysctl.c ├── sysctl.h ├── win32.c └── win32.h ├── options.c ├── options.h ├── output.c ├── output.h ├── process.c ├── process.h └── types.h /.github/workflows/makefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/.github/workflows/makefile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/README -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/THANKS -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/autogen.sh -------------------------------------------------------------------------------- /bwm-ng.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/bwm-ng.1 -------------------------------------------------------------------------------- /bwm-ng.conf-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/bwm-ng.conf-example -------------------------------------------------------------------------------- /bwm-ng.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/bwm-ng.css -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/configure.ac -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/bwm-ng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/bwm-ng.c -------------------------------------------------------------------------------- /src/bwm-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/bwm-ng.h -------------------------------------------------------------------------------- /src/curses_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/curses_tools.c -------------------------------------------------------------------------------- /src/curses_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/curses_tools.h -------------------------------------------------------------------------------- /src/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/defines.h -------------------------------------------------------------------------------- /src/global_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/global_vars.h -------------------------------------------------------------------------------- /src/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/help.c -------------------------------------------------------------------------------- /src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/help.h -------------------------------------------------------------------------------- /src/input/devstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/devstat.c -------------------------------------------------------------------------------- /src/input/devstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/devstat.h -------------------------------------------------------------------------------- /src/input/getifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/getifaddrs.c -------------------------------------------------------------------------------- /src/input/getifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/getifaddrs.h -------------------------------------------------------------------------------- /src/input/ioservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/ioservice.c -------------------------------------------------------------------------------- /src/input/ioservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/ioservice.h -------------------------------------------------------------------------------- /src/input/libkstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/libkstat.c -------------------------------------------------------------------------------- /src/input/libkstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/libkstat.h -------------------------------------------------------------------------------- /src/input/libstatgrab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/libstatgrab.c -------------------------------------------------------------------------------- /src/input/libstatgrab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/libstatgrab.h -------------------------------------------------------------------------------- /src/input/netstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/netstat.c -------------------------------------------------------------------------------- /src/input/netstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/netstat.h -------------------------------------------------------------------------------- /src/input/proc_diskstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/proc_diskstats.c -------------------------------------------------------------------------------- /src/input/proc_diskstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/proc_diskstats.h -------------------------------------------------------------------------------- /src/input/proc_net_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/proc_net_dev.c -------------------------------------------------------------------------------- /src/input/proc_net_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/proc_net_dev.h -------------------------------------------------------------------------------- /src/input/retrieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/retrieve.c -------------------------------------------------------------------------------- /src/input/retrieve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/retrieve.h -------------------------------------------------------------------------------- /src/input/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/sysctl.c -------------------------------------------------------------------------------- /src/input/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/sysctl.h -------------------------------------------------------------------------------- /src/input/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/win32.c -------------------------------------------------------------------------------- /src/input/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/input/win32.h -------------------------------------------------------------------------------- /src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/options.c -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/options.h -------------------------------------------------------------------------------- /src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/output.c -------------------------------------------------------------------------------- /src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/output.h -------------------------------------------------------------------------------- /src/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/process.c -------------------------------------------------------------------------------- /src/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/process.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgropp/bwm-ng/HEAD/src/types.h --------------------------------------------------------------------------------