From edb4b8ca9325986822a1a967578b2af26fabd552 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Sat, 24 Aug 2024 13:56:02 +0100 Subject: [PATCH] attempted to style anyrun, but the box remains a bright white eyesore --- home-manager/home.nix | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index ccb959a..5b2431e 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -269,23 +269,28 @@ ignoreExclusiveZones = false; layer = "overlay"; hidePluginInfo = false; - closeOnClick = false; + closeOnClick = true; showResultsImmediately = false; maxEntries = null; }; extraCss = '' - .some_class { - background: red; + #window { + background: transparent; + } + #main { + background-color: grey; + text-color: white; + outline-color: black; } ''; - extraConfigFiles."some-plugin.ron".text = '' - Config( - // for any other plugin - // this file will be put in ~/.config/anyrun/some-plugin.ron - // refer to docs of xdg.configFile for available options - ) - ''; +# extraConfigFiles."some-plugin.ron".text = '' +# Config( +# // for any other plugin +# // this file will be put in ~/.config/anyrun/some-plugin.ron +# // refer to docs of xdg.configFile for available options +# ) +# ''; }; services.blueman-applet.enable = true;