dotfiles/nixpkgs/programs/rofi.nix

36 lines
749 B
Nix
Raw Normal View History

2021-12-08 16:26:56 +01:00
{pkgs, ...}:
{
programs.rofi = {
enable = true;
2021-12-11 15:29:12 +01:00
2021-12-08 16:26:56 +01:00
# plugins = with pkgs; [
# rofi-emoji
# rofi-mpd
# rofi-pass
# rofi-calc
# rofi-systemd
# rofi-power-menu
# rofi-file-browser
# ];
2021-12-11 15:29:12 +01:00
2021-12-08 16:26:56 +01:00
font = "Droid Sans 12";
2021-12-11 15:29:12 +01:00
theme = ../../general/.config/rofi/themes/blank.rasi;
2021-12-08 16:26:56 +01:00
extraConfig = {
2021-12-11 15:29:12 +01:00
modi = "window,run,drun,ssh,windowcd";
2021-12-08 16:26:56 +01:00
show-icons = true;
drun-display-format = "{name}";
2021-12-11 15:29:12 +01:00
# fullscreen = false;
2021-12-08 16:26:56 +01:00
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";
};
};
}