Use rofi instead of dmenu
This commit is contained in:
parent
eb9aadc004
commit
c35a1a17aa
|
@ -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
|
||||
|
|
|
@ -38,4 +38,6 @@
|
|||
};
|
||||
|
||||
programs.feh.enable = true;
|
||||
|
||||
programs.rofi.enable = true;
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue