dwm-status 0.4.0

Displays system information for dwm status bar.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
with import <nixpkgs> { };

stdenv.mkDerivation {
  name = "dwm-status";

  buildInputs = [
    dbus
    gdk_pixbuf
    latest.rustChannels.nightly.rust
    libnotify
    pkgconfig
    rustracer
  ];

  RUST_BACKTRACE = 1;
}