add application launcher rofi

This commit is contained in:
RingOfStorms (Josh) 2024-05-10 14:05:19 -05:00
parent 22b935e728
commit dbb17f6425
3 changed files with 30 additions and 7 deletions

View file

@ -0,0 +1,12 @@
{ settings, pkgs, ... }:
{
programs.rofi = {
enable = true;
plugins = with pkgs; [ rofi-calc ];
extraConfig = {
modi = "drun,run,ssh,window,calc";
terminal = "alacritty";
};
theme = "glue_pro_blue";
};
}