Jump to content

Fuzzel: Difference between revisions

From Official NixOS Wiki
Cktiel (talk | contribs)
Article creation
 
Cktiel (talk | contribs)
No edit summary
 
(One intermediate revision by the same user not shown)
Line 20: Line 20:
text = "F5F5F5FF";
text = "F5F5F5FF";
selection-match = "A2D6F9ff";
selection-match = "A2D6F9ff";
        match = "A2D6F9ff";
selection = "4F5258ff";
selection = "4F5258ff";
selection-text = "F5F5F5FF";
selection-text = "F5F5F5FF";
Line 26: Line 27:
       border = {
       border = {
         radius = 0;
         radius = 0;
width = 1;
    width = 1;
       };
       };
     };
     };

Latest revision as of 12:30, 1 August 2026

Fuzzel is an app launcher and fuzzy finder for Wayland inspired by rofi and dmenu.

Installation

Fuzzel can be installed systemwide by adding its package to environment.systemPackages:

❄︎ /etc/nixos/configuration.nix
environment.systemPackages = [
  pkgs.fuzzel
];

Configuration

Fuzzel can be configured declaratively using Home Manager. Here is an example configuration:

❄︎ home.nix
programs.fuzzel = {
    enable = true;
    settings = {
      main = {
        font = "FiraCode Nerd Font:size=12";
        lines = 5;
        auto-select = true;
      };
      colors = {
	    background = "14161Be5";
		text = "F5F5F5FF";
		selection-match = "A2D6F9ff";
        match = "A2D6F9ff";
		selection = "4F5258ff";
		selection-text = "F5F5F5FF";
		border = "A1A1A1FF";
      };
      border = {
        radius = 0;
	    width = 1;
      };
    };
  };