mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 12:58:07 +02:00
Fix rofi config (by using home-manager)
This commit is contained in:
parent
3240615eea
commit
1bbf45fff9
@ -1,23 +1,22 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
home.file.".config/rofi/config.rasi".text = ''
|
||||
@import "catppuccin-mocha"
|
||||
@import "catppuccin-default"
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
font = "mono 12";
|
||||
location = "center";
|
||||
|
||||
configuration {
|
||||
modes: "run,ssh,drun";
|
||||
font: "mono 12";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus Dark";
|
||||
|
||||
location: 0;
|
||||
yoffset: 0;
|
||||
xoffset: 0;
|
||||
fixed-num-lines: true;
|
||||
|
||||
ml-row-down: "ScrollDown";
|
||||
me-select-entry: "MousePrimary";
|
||||
me-accept-entry: "MouseDPrimary";
|
||||
me-accept-custom: "Control+MouseDPrimary";
|
||||
}
|
||||
'';
|
||||
extraConfig = {
|
||||
modes = "run,ssh,drun";
|
||||
"show-icons" = true;
|
||||
"icon-theme" = "Papirus Dark";
|
||||
yoffset = 0;
|
||||
xoffset = 0;
|
||||
"fixed-num-lines" = true;
|
||||
"ml-row-down" = "ScrollDown";
|
||||
"me-select-entry" = "MousePrimary";
|
||||
"me-accept-entry" = "MouseDPrimary";
|
||||
"me-accept-custom" = "Control+MouseDPrimary";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user