2023-07-04 11:36:58 +01:00
|
|
|
{config, ...}: let
|
2023-06-20 15:26:07 +01:00
|
|
|
icon-theme = config.gtk.iconTheme.name;
|
2023-05-17 17:10:18 +01:00
|
|
|
in {
|
2023-06-30 09:05:19 +01:00
|
|
|
imports = [./gtk.nix];
|
2023-04-03 16:53:23 +01:00
|
|
|
programs.rofi = {
|
|
|
|
enable = true;
|
2023-04-07 09:42:12 +01:00
|
|
|
location = "center";
|
2023-04-03 16:53:23 +01:00
|
|
|
pass.enable = true;
|
2023-07-03 17:36:55 +01:00
|
|
|
terminal = "wezterm";
|
2023-04-07 09:42:12 +01:00
|
|
|
extraConfig = {
|
2023-06-06 07:12:27 +01:00
|
|
|
modi = "drun";
|
2023-06-20 15:26:07 +01:00
|
|
|
icon-theme = icon-theme;
|
2023-04-07 09:42:12 +01:00
|
|
|
show-icons = true;
|
|
|
|
drun-display-format = "{icon} {name}";
|
|
|
|
disable-history = false;
|
|
|
|
hide-scrollbar = true;
|
|
|
|
display-run = " Run ";
|
|
|
|
};
|
|
|
|
theme = ./config/rofi/catppuccin-macchiato.rasi;
|
2023-04-03 16:53:23 +01:00
|
|
|
};
|
|
|
|
}
|