From 9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Mon, 23 Jun 2025 15:41:24 +0200 Subject: feat: Add configuration from private dotfiles repo --- wofi.nix | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 wofi.nix (limited to 'wofi.nix') diff --git a/wofi.nix b/wofi.nix new file mode 100644 index 0000000..cd81d1a --- /dev/null +++ b/wofi.nix @@ -0,0 +1,59 @@ +{ + pkgs, + inputs, + ... +}: { + xdg.configFile."wofi/style.css".text = '' + window { + margin: 0px; + background-color: #282a36; + font-size: 25px; + } + + #input { + margin: 5px; + border: none; + color: #f8f8f2; + background-color: #44475a; + } + + #inner-box { + margin: 5px; + border: none; + background-color: #282a36; + } + + #outer-box { + margin: 5px; + border: none; + background-color: #282a36; + } + + #scroll { + margin: 0px; + border: none; + } + + #text { + margin: 5px; + border: none; + color: #f8f8f2; + } + + #entry.activatable #text { + color: #282a36; + } + + #entry > * { + color: #f8f8f2; + } + + #entry:selected { + background-color: #44475a; + } + + #entry:selected #text { + font-weight: bold; + } + ''; +} -- cgit v1.2.3