From 139c48ebb3e9b670ce0df89ee28c601786d67b7c Mon Sep 17 00:00:00 2001 From: ark-lamp-umbrella Date: Mon, 22 Apr 2024 20:56:01 -0700 Subject: [PATCH] rofi rasi config --- home.nix | 1 + rofi/config.rasi | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 rofi/config.rasi diff --git a/home.nix b/home.nix index 7391200..4df7bfc 100644 --- a/home.nix +++ b/home.nix @@ -191,6 +191,7 @@ enable = true; package = pkgs.rofi-wayland; font = "CozetteVector 14"; + extraConfig = builtins.readFile ./rofi/config.rasi; }; lsd = { enable = true; diff --git a/rofi/config.rasi b/rofi/config.rasi new file mode 100644 index 0000000..5154cd4 --- /dev/null +++ b/rofi/config.rasi @@ -0,0 +1,15 @@ +configuration { + display-drun: "Apps"; + drun-display-format: "{name}"; +} + +* { + bg: #181f21; + fg: #dadada; + accent: #22292b; + active: #3b4244; + rad: 12px; + + background-color: @bg; + text-color: @fg; +}