2024-06-05 20:52:52 +02:00
|
|
|
{ pkgs, config, lib, ... }:
|
|
|
|
{
|
|
|
|
|
|
|
|
programs.rofi = {
|
|
|
|
enable = true;
|
2024-06-24 16:21:10 +02:00
|
|
|
#packge = "pkgs.rofi-wayland";
|
2024-06-05 20:52:52 +02:00
|
|
|
theme = "~/nix/home/rofi/gruvbox-material.rasi";
|
|
|
|
extraConfig = {
|
|
|
|
modi = "drun";
|
|
|
|
icon-theme = "Oranchelo";
|
|
|
|
show-icons = true;
|
|
|
|
terminal = "alacritty";
|
|
|
|
drun-display-format = "{icon} {name}";
|
|
|
|
location = 0;
|
|
|
|
disable-history = false;
|
|
|
|
hide-scrollbar = true;
|
|
|
|
display-drun = " Apps ";
|
|
|
|
display-network = " Network";
|
|
|
|
sidebar-mode = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|