mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 09:23:55 -05:00
rofi: include orif-rbw by default with sane defaults
This commit is contained in:
parent
74fa01f40d
commit
cc4272a4af
|
@ -10,6 +10,7 @@ in {
|
|||
home.packages = [
|
||||
pkgs.networkmanager_dmenu
|
||||
pkgs.rofi-bluetooth
|
||||
pkgs.rofi-rbw-wayland
|
||||
];
|
||||
|
||||
programs.rofi = {
|
||||
|
@ -61,7 +62,13 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
xdg.configFile."rofi/theme.rasi".text = ''
|
||||
xdg.configFile = {
|
||||
"rofi-rbw.rc".text = ''
|
||||
prompt "Bitwarden"
|
||||
clear-after 60
|
||||
'';
|
||||
|
||||
"rofi/theme.rasi".text = ''
|
||||
* {
|
||||
selected-normal-foreground: ${cfg.theme.colors.text};
|
||||
foreground: ${cfg.theme.colors.text};
|
||||
|
@ -211,7 +218,7 @@ in {
|
|||
}
|
||||
'';
|
||||
|
||||
xdg.configFile."networkmanager-dmenu/config.ini".text = ''
|
||||
"networkmanager-dmenu/config.ini".text = ''
|
||||
[dmenu]
|
||||
dmenu_command = ${lib.getExe config.programs.rofi.package}
|
||||
highlight = True
|
||||
|
@ -225,4 +232,5 @@ in {
|
|||
terminal = ${lib.getExe cfg.defaultApps.terminal}
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue