summaryrefslogtreecommitdiff
path: root/wofi.nix
diff options
context:
space:
mode:
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;
+ }
+ '';
+}