feat: use rofi instead of drun
parent
a2cc8c3841
commit
a6bd46ab49
|
@ -26,6 +26,8 @@
|
|||
border = 0;
|
||||
};
|
||||
|
||||
menu = "${pkgs.rofi}/bin/rofi -show drun";
|
||||
|
||||
bars = [{
|
||||
mode = "hide";
|
||||
position = "top";
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, pkgs, user, ... }:
|
||||
|
||||
{
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
font = "DejaVu Sans Mono 12";
|
||||
terminal = "${pkgs.kitty}/bin/kitty";
|
||||
extraConfig = {
|
||||
show-icons = true;
|
||||
matching = "fuzzy";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -42,5 +42,6 @@
|
|||
home-manager/zsh.nix
|
||||
home-manager/starship.nix
|
||||
home-manager/i3
|
||||
./home-manager/rofi.nix
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue