Skip to content

Commit

Permalink
rofi overhaul
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwclark committed Mar 15, 2024
1 parent 2fb12a7 commit 469d3e8
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions home/features/desktop/hyprland/rofi.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,24 @@
{
programs.rofi = {
enable = true;

package = pkgs.rofi-wayland;
plugins = [ pkgs.rofi-calc pkgs.rofi-emoji ];
extraConfig = {
bw = 1;
columns = 2;
icon-theme = "Papirus-Dark";
};

# theme = "gruvbox-dark-soft";

# font = "Fira Code 12";

package = pkgs.rofi.override {
plugins = [ pkgs.rofi-calc pkgs.rofi-emoji ];
extraConfig = {
modi = "drun,emoji,calc";
show-icons = true;
drun-display-format = "{icon} {name}";
disable-history = false;
hide-scrollbar = true;
display-drun = "  Apps ";
display-run = "  Run ";
display-emoji = "  Emoji ";
display-calc = "  Calc ";
sidebar-mode = true;
};
};
}

0 comments on commit 469d3e8

Please sign in to comment.