aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/wofi
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:30 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:30 +0100
commit16c40e19c6868aebe904f41ede7d0766d8dbeca6 (patch)
tree2a6daf4b2b4d4d04f077334c9b8b8a36b9449fd4 /dot_config/wofi
parent651ec1f8b7470e2ffac848b4fe99ce7ccdb826dd (diff)
downloaddotfiles-16c40e19c6868aebe904f41ede7d0766d8dbeca6.tar.gz
dotfiles-16c40e19c6868aebe904f41ede7d0766d8dbeca6.tar.bz2
dotfiles-16c40e19c6868aebe904f41ede7d0766d8dbeca6.zip
fix(wofi): allow fuzzy search in emoji picker
The bemoji invocation passed --hide-search, and the shared wofi stylesheet additionally forced #input opacity to 0, so even without the flag the search box was unusable. Drop --hide-search from bemoji's picker cmd and replace the CSS hack with a normal styled input. Pickers that want arrow-only UI (mako-history, clip-picker) keep --hide-search and continue to render without an input row.
Diffstat (limited to 'dot_config/wofi')
-rw-r--r--dot_config/wofi/style.css17
1 files changed, 7 insertions, 10 deletions
diff --git a/dot_config/wofi/style.css b/dot_config/wofi/style.css
index 2e2a4ea..bda412d 100644
--- a/dot_config/wofi/style.css
+++ b/dot_config/wofi/style.css
@@ -1,7 +1,5 @@
-/* Minimal gruvbox style for wofi.
- * Currently used only by ~/.config/waybar/mako-history.py for its
- * arrow-only notification picker. The search input row is always hidden
- * via --hide-search, but we still hide it here in case wofi falls back.
+/* Minimal gruvbox style for wofi pickers (notifications, clipboard, emoji).
+ * Pickers that want a search-less arrow-only UI pass --hide-search.
*/
* {
@@ -16,12 +14,11 @@ window {
}
#input {
- /* belt-and-suspenders: hidden via --hide-search too */
- min-height: 0;
- margin: 0;
- padding: 0;
- border: 0;
- opacity: 0;
+ margin: 4px;
+ padding: 4px 6px;
+ border: 1px solid #504945;
+ background-color: #1d2021;
+ color: #ebdbb2;
}
#inner-box {