Added all floating mode plus hyprbars!

This commit is contained in:
Emmet 2023-09-03 13:50:27 -05:00
parent 7cd33caf08
commit fc6cd2aa92
3 changed files with 32 additions and 9 deletions

View file

@ -0,0 +1,15 @@
{ config, lib, stdenv, pkgs, hyprland-plugins, ... }:
stdenv.mkDerivation rec {
pname = "hyprbars";
version = "unstable";
src = "${hyprland-plugins}/hyprbars";
nativeBuildInputs = [ pkgs.hyprland.nativeBuildInputs ];
buildInputs = [ pkgs.hyprland pkgs.hyprland.buildInputs ];
meta = {
homepage = "https://gitlab.com/phoneybadger/pokemon-colorscripts";
description = "CLI utility to print out images of pokemon to terminal";
license = lib.licenses.mit;
maintainers = [];
};
}