Files
nix-config/home/pc/common/programs/rofi/config.nix
T

48 lines
1.1 KiB
Nix

{ config, pkgs, lib, ... }:
{
home.packages = [ pkgs.libnotify ];
xdg.configFile."rofi/config.rasi".text = ''
configuration{
modi: "run";
lines: 5;
cycle: false;
font: "CaskaydiaCove Nerd Font 14";
show-icons: false;
terminal: "foot";
run-display-format: "{name}";
location: 0;
disable-history: true;
hide-scrollbar: true;
display-run: " Run ";
sidebar-mode: true;
sorting-method: "fzf";
}
@theme "theme"
'';
# xdg.configFile."rofi/config.rasi".text = ''
# configuration{
# modi: "run,drun,window";
# lines: 5;
# cycle: false;
# font: "${config.stylix.fonts.serif.name} 14";
# show-icons: true;
# icon-theme: "Papirus-dark";
# terminal: "foot";
# drun-display-format: "{icon} {name}";
# location: 0;
# disable-history: true;
# hide-scrollbar: true;
# display-drun: " Apps ";
# display-run: " Run ";
# display-window: " Window ";
# /* display-Network: " Network"; */
# sidebar-mode: true;
# sorting-method: "fzf";
# }
#
# @theme "theme"'';
}