2022-03-22 16:37:19 +01:00
|
|
|
{pkgs, inputs, ...}:
|
2022-03-07 16:01:52 +01:00
|
|
|
{
|
|
|
|
programs.rofi = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
# plugins = with pkgs; [
|
|
|
|
# rofi-emoji
|
|
|
|
# rofi-mpd
|
|
|
|
# rofi-pass
|
|
|
|
# rofi-calc
|
|
|
|
# rofi-systemd
|
|
|
|
# rofi-power-menu
|
|
|
|
# rofi-file-browser
|
|
|
|
# ];
|
|
|
|
|
|
|
|
font = "Droid Sans 12";
|
2022-03-22 16:37:19 +01:00
|
|
|
theme = "${inputs.dotfiles}/general/.config/rofi/themes/blank.rasi";
|
2022-03-07 16:01:52 +01:00
|
|
|
|
|
|
|
extraConfig = {
|
|
|
|
modi = "window,run,drun,ssh,windowcd";
|
|
|
|
show-icons = true;
|
|
|
|
drun-display-format = "{name}";
|
|
|
|
# fullscreen = false;
|
|
|
|
threads = 0;
|
|
|
|
matching = "fuzzy";
|
|
|
|
scroll-method = 0;
|
|
|
|
disable-history = false;
|
|
|
|
window-thumbnail = true;
|
|
|
|
kb-row-up = "Up,Alt+k";
|
|
|
|
kb-row-down = "Down,Alt+j";
|
|
|
|
kb-row-left = "Alt+h";
|
|
|
|
kb-row-right = "Alt+l";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|