summaryrefslogtreecommitdiff
path: root/home/config/wofi
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-06-21 22:52:21 -0400
committerFreya Murphy <freya@freyacat.org>2024-06-21 22:52:21 -0400
commitcf5d8d92f1904511006a89970349dbf723ae1732 (patch)
tree2deb7af8e9031a502b6b7f1c263198e4d6b93f9f /home/config/wofi
parentupdate guixstrap (diff)
downloaddotfiles-guix-cf5d8d92f1904511006a89970349dbf723ae1732.tar.gz
dotfiles-guix-cf5d8d92f1904511006a89970349dbf723ae1732.tar.bz2
dotfiles-guix-cf5d8d92f1904511006a89970349dbf723ae1732.zip
update things
Diffstat (limited to 'home/config/wofi')
-rw-r--r--home/config/wofi/config6
-rw-r--r--home/config/wofi/style.css94
2 files changed, 100 insertions, 0 deletions
diff --git a/home/config/wofi/config b/home/config/wofi/config
new file mode 100644
index 0000000..51ad2ed
--- /dev/null
+++ b/home/config/wofi/config
@@ -0,0 +1,6 @@
+key_expand=Tab
+term=kitty
+matching=multi-contains
+insensitive=true
+gtk_dark=true
+hide_scroll=true
diff --git a/home/config/wofi/style.css b/home/config/wofi/style.css
new file mode 100644
index 0000000..2ef5f5a
--- /dev/null
+++ b/home/config/wofi/style.css
@@ -0,0 +1,94 @@
+/* Mocha Blue */
+@define-color accent #89b4fa;
+@define-color txt #cad3f5;
+@define-color bg #24273a;
+@define-color bg2 #494d64;
+
+ * {
+ font-family: 'FiraCode Nerd Font Mono', monospace;
+ font-size: 14px;
+ }
+
+ /* Window */
+ window {
+ margin: 0px;
+ padding: 5px;
+ /*border: 3px solid @accent;*/
+ /*border-radius: 7px;*/
+ background-color: @bg;
+ animation: slideIn 0.1s ease-in-out both;
+ }
+
+ /* Slide In */
+ @keyframes slideIn {
+ 0% {
+ opacity: 0;
+ }
+
+ 100% {
+ opacity: 1;
+ }
+ }
+
+ /* Inner Box */
+ #inner-box {
+ margin: 5px;
+ padding: 5px;
+ border: none;
+ background-color: @bg;
+ animation: fadeIn 0.1s ease-in-out both;
+ }
+
+ /* Fade In */
+ @keyframes fadeIn {
+ 0% {
+ opacity: 0;
+ }
+
+ 100% {
+ opacity: 1;
+ }
+ }
+
+ /* Outer Box */
+ #outer-box {
+ margin: 5px;
+ padding: 5px;
+ border: none;
+ background-color: @bg;
+ }
+
+ /* Scroll */
+ #scroll {
+ margin: 0px;
+ padding: 5px;
+ border: none;
+ }
+
+ /* Input */
+ #input {
+ margin: 5px;
+ padding: 5px;
+ border: none;
+ color: @accent;
+ background-color: @bg2;
+ animation: fadeIn 0.1s ease-in-out both;
+ }
+
+ /* Text */
+ #text {
+ margin: 5px;
+ padding: 5px;
+ border: none;
+ color: @txt;
+ animation: fadeIn 0.1s ease-in-out both;
+ }
+
+ /* Selected Entry */
+ #entry:selected {
+ background-color: @accent;
+ }
+
+ #entry:selected #text {
+ color: @bg;
+ }