From 8b7bb6237202caef9c998c285e611c5d76c3380f Mon Sep 17 00:00:00 2001 From: Maksim Totmin Date: Wed, 26 Jul 2023 19:57:47 +0700 Subject: [PATCH] wofi menu config --- rockethype/config/wofi/config | 16 ++++++++ rockethype/config/wofi/menu.css | 5 +++ rockethype/config/wofi/style.css | 64 ++++++++++++++++++++++++++++++++ 3 files changed, 85 insertions(+) create mode 100644 rockethype/config/wofi/config create mode 100644 rockethype/config/wofi/menu.css create mode 100644 rockethype/config/wofi/style.css diff --git a/rockethype/config/wofi/config b/rockethype/config/wofi/config new file mode 100644 index 0000000..d82f3db --- /dev/null +++ b/rockethype/config/wofi/config @@ -0,0 +1,16 @@ +width=700 +height=250 +location=center +show=run +prompt=Search... +filter_rate=165 +allow_markup=true +no_actions=true +halign=fill +orientation=vertical +content_halign=fill +insensitive=true +allow_images=true +image_size=32 +gtk_dark=true +term=kitty diff --git a/rockethype/config/wofi/menu.css b/rockethype/config/wofi/menu.css new file mode 100644 index 0000000..4490a29 --- /dev/null +++ b/rockethype/config/wofi/menu.css @@ -0,0 +1,5 @@ +@import ".config/wofi/style.css"; +window { + font-family: "JetBrains Mono"; + font-size: 13px; +} diff --git a/rockethype/config/wofi/style.css b/rockethype/config/wofi/style.css new file mode 100644 index 0000000..e9ae8a7 --- /dev/null +++ b/rockethype/config/wofi/style.css @@ -0,0 +1,64 @@ +window { + margin: 0px; + border: 5px solid #202020; + background-color: #323232; + border-radius: 6px; +} + +#input { + all: unset; + min-height: 36px; + padding: 4px 10px; + margin: 4px; + border: none; + color: #e2e0ec; + font-weight: bold; + background-color: #272727; + outline: none; + border-radius: 6px; + margin: 10px; + margin-bottom: 2px; +} + +#inner-box { + margin: 4px; + padding: 10px; + font-weight: bold; + border-radius: 6px; +} + +#outer-box { + margin: 0px; + padding: 3px; + border: none; + border-radius: 6px; + border: 5px solid #202020; +} + +#scroll { + margin-top: 5px; + border: none; + border-radius: 6px; + margin-bottom: 5px; +} + +#text:selected { + color: #f1f0f5; + margin: 0px 0px; + border: none; + border-radius: 6px; +} + +#entry { + margin: 0px 0px; + border: none; + border-radius: 6px; + background-color: transparent; +} + +#entry:selected { + margin: 0px 0px; + border: none; + border-radius: 6px; + background: linear-gradient(90deg, #E97193 0%, #e06c75 100%); +}