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> { };

rustPlatform.buildRustPackage rec {
  name = "dwm-status";

  src = ./.;

  buildInputs = [
    dbus
    gdk_pixbuf
    libnotify
    pkgconfig
  ];

  cargoSha256 = "0169k91pb7ipvi0m71cmkppp1klgp5ghampa7x0fxkyrvrf0dvqg";
}