Use rofi instead of dmenu

This commit is contained in:
Oliver Davies 2024-02-20 01:06:04 +00:00
parent eb9aadc004
commit c35a1a17aa
3 changed files with 7 additions and 1 deletions

View file

@ -13,6 +13,10 @@ Instead of grouping changes by tag, they are grouped by the date they are releas
* Add an i3 keybinding to open `thunar`.
* Set the default i3 workspace.
## Changed
* Use `rofi` instead of `dmenu`.
## 14th February 2024
### Changed

View file

@ -38,4 +38,6 @@
};
programs.feh.enable = true;
programs.rofi.enable = true;
}

View file

@ -28,7 +28,7 @@ in {
modifier = modifier;
keybindings = inputs.nixpkgs.lib.mkOptionDefault {
"${modifier}+d" = "exec ${pkgs.dmenu}/bin/dmenu_run -sb '#555555'";
"${modifier}+d" = "exec ${pkgs.rofi}/bin/rofi -show drun";
"${modifier}+Shift+b" = "exec ${pkgs.firefox-devedition}/bin/firefox-devedition";
"${modifier}+Shift+f" = "exec ${pkgs.xfce.thunar}/bin/thunar";