2023-08-07 09:19:09 +01:00
|
|
|
{ pkgs, config, ... }:
|
|
|
|
let icon-theme = config.gtk.iconTheme.name;
|
|
|
|
in
|
2023-07-18 09:15:40 +01:00
|
|
|
{
|
2023-08-07 09:19:09 +01:00
|
|
|
imports = [ ../gtk.nix ];
|
|
|
|
home.packages = with pkgs; [ rofi-power-menu ];
|
2023-04-03 16:53:23 +01:00
|
|
|
programs.rofi = {
|
|
|
|
enable = true;
|
2023-07-18 09:26:10 +01:00
|
|
|
location = "center";
|
2023-04-03 16:53:23 +01:00
|
|
|
pass.enable = true;
|
2023-08-07 09:19:09 +01:00
|
|
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
|
|
|
plugins = with pkgs; [ rofi-file-browser ];
|
2023-04-07 09:42:12 +01:00
|
|
|
extraConfig = {
|
2023-08-07 09:19:09 +01:00
|
|
|
modi =
|
|
|
|
"run,drun,ssh,file-browser-extended,power-menu:${pkgs.rofi-power-menu}/bin/rofi-power-menu";
|
2023-07-18 10:11:38 +01:00
|
|
|
sort = true;
|
|
|
|
sorting-method = "fzf";
|
|
|
|
matching = "fuzzy";
|
2023-06-20 15:26:07 +01:00
|
|
|
icon-theme = icon-theme;
|
2023-04-07 09:42:12 +01:00
|
|
|
show-icons = true;
|
2023-07-18 10:11:38 +01:00
|
|
|
application-fallback-icon = "";
|
2023-04-07 09:42:12 +01:00
|
|
|
drun-display-format = "{icon} {name}";
|
|
|
|
disable-history = false;
|
|
|
|
hide-scrollbar = true;
|
2023-07-18 09:15:40 +01:00
|
|
|
display-run = " Commands ";
|
|
|
|
display-drun = " Programs ";
|
|
|
|
display-ssh = " SSH ";
|
|
|
|
display-file-browser-extended = " File Browser ";
|
|
|
|
display-power-menu = " Power Menu ";
|
2023-04-07 09:42:12 +01:00
|
|
|
};
|
2023-07-18 09:56:40 +01:00
|
|
|
theme = ./theme.rasi;
|
2023-04-03 16:53:23 +01:00
|
|
|
};
|
|
|
|
}
|