summaryrefslogtreecommitdiff
path: root/wofi.nix
diff options
context:
space:
mode:
authorGabriel A. Giovanini <g.giovanini@gridx.de>2025-06-23 15:41:24 +0200
committerGabriel A. Giovanini <g.giovanini@gridx.de>2025-06-23 16:05:33 +0200
commit9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf (patch)
tree9400df8e05a8de8a7c0b227b1f7fba16783aa6e0 /wofi.nix
downloadhome-manager-9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf.tar.gz
home-manager-9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf.tar.bz2
home-manager-9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf.zip
feat: Add configuration from private dotfiles repo
Diffstat (limited to 'wofi.nix')
-rw-r--r--wofi.nix59
1 files changed, 59 insertions, 0 deletions
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;
+ }
+ '';
+}