util: {
  programs.wofi = {
    enable = true;
    settings = {
      show = "dmenu";
      width = 750;
      height = 400;
      show_all = false;
      always_parse_args = true;
      term = "foot";
      prompt = "";
      columns = 3;
    };
    style = util.generators.toCSS {
      "*" = {
        font-family = "\"PlemolJP35 Console NF\"";
        color = "rgb(53, 185, 171)";
        background = "transparent";
      };
      "#window" = {
        background = "rgba(0, 0, 0, 0.7)";
        padding = "10px";
        border-radius = "10px";
        border = "1px solid red";
      };
      "#input" = {
        padding = "10px";
        margin-bottom = "10px";
        border-radius = "10px";
      };
      "#outer-box".padding = "20px";
      "#img".margin-right = "6px";
      "#entry" = {
        padding = "10px";
        border-radius = "15px";
      };
      "#entry:selected".background-color = "#2e3440";
      "#text".margin = "2px";
    };
  };
}