summaryrefslogtreecommitdiff
path: root/common/home/programs/wofi
diff options
context:
space:
mode:
Diffstat (limited to 'common/home/programs/wofi')
-rw-r--r--common/home/programs/wofi/default.nix5
-rw-r--r--common/home/programs/wofi/style.css47
2 files changed, 52 insertions, 0 deletions
diff --git a/common/home/programs/wofi/default.nix b/common/home/programs/wofi/default.nix
new file mode 100644
index 0000000..d8cf5a9
--- /dev/null
+++ b/common/home/programs/wofi/default.nix
@@ -0,0 +1,5 @@
+{ ... }:
+{
+ enable = true;
+ style = builtins.readFile ./style.css;
+}
diff --git a/common/home/programs/wofi/style.css b/common/home/programs/wofi/style.css
new file mode 100644
index 0000000..7e38346
--- /dev/null
+++ b/common/home/programs/wofi/style.css
@@ -0,0 +1,47 @@
+* {
+ font-family: "SauceCodePro NF";
+}
+
+window {
+ background: transparent;
+ color: #ebdbb2;
+}
+
+#outer-box {
+ border-radius: 10px;
+ background: transparent;
+}
+
+entry#input {
+ background: #1d2021;
+ border: 2px solid #b16286;
+ margin-bottom: 10px;
+ padding: 10px;
+ border-radius: 10px;
+}
+#scroll {
+ border-radius: 10px;
+ border: 2px solid #3c3836;
+ background: #1d2021;
+}
+
+#entry {
+ border: none;
+ background: transparent;
+}
+
+.entry {
+ border-radius: 5px;
+ border: none;
+ padding: 8px;
+ margin: 2px;
+}
+
+.entry#selected {
+ border: none;
+ background: #b16286;
+}
+
+.entry#selected label {
+ background: #b16286;
+}