From 6dd179e85a0834420de3fea9ae409b8fab7c7f36 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Fri, 11 Apr 2025 16:25:25 +0200 Subject: use sudo dnf, add wofi config, check for passage store --- config/wofi/config | 18 ++++++++++++++++++ config/wofi/style.css | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 config/wofi/config create mode 100644 config/wofi/style.css (limited to 'config') diff --git a/config/wofi/config b/config/wofi/config new file mode 100644 index 0000000..5bed1e6 --- /dev/null +++ b/config/wofi/config @@ -0,0 +1,18 @@ +show=drun +location=top_left +allow_images=true +image_size=48 +columns=5 +width=100% +height=97% +always_parse_args=true +show_all=true +print_command=true +layer=overlay +insensitive=true +halign=fill +content_halign=fill +valign=start +no_actions=true +line_wrap=char +sort_order=alphabetical diff --git a/config/wofi/style.css b/config/wofi/style.css new file mode 100644 index 0000000..153d240 --- /dev/null +++ b/config/wofi/style.css @@ -0,0 +1,39 @@ +window { + font-family: 'Input Sans Compressed'; + font-size: 13px; + background-color: rgba(15, 38, 31, 0.95); + color: #DAE6E3; + border-radius: 0; +} + +#outer-box { + margin: 0; + padding: 0; +} + +#input { + background-color: #DAE6E3; + border-radius: 0; + margin: 0; + padding: 2px 0 0; +} + +flowboxchild { + background: transparent; + border-radius: 0; + padding: 0; + margin: 0; +} + +.entry { + padding: 10px; + border-radius: 0; +} + +.entry label { + font-weight: 200; +} + +.entry#selected { + background: #f0f; +} -- cgit