Regenerated

This commit is contained in:
2026-04-13 14:24:07 +02:00
parent 4bb25b3945
commit 1750342775
3 changed files with 480 additions and 438 deletions
+417 -392
View File
File diff suppressed because it is too large Load Diff
+55 -46
View File
@@ -4516,7 +4516,8 @@ prompt = > ...
** =generated/.config/wofi/style.css=
This is the default layout for wofi
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
@import url("file:///home/henrov/.config/shared/Colors.css");
/* --- Unified Wofi Theme --- */
@import "~/.config/shared/Colors.css";
/* --- GLOBAL --- */
* {
@@ -4526,99 +4527,107 @@ This is the default layout for wofi
font-size: 12pt;
}
/* --- MAIN WINDOW (works for BOTH drun + dmenu) --- */
#window, #main, #outer-box {
/* --- MAIN WINDOW (drun + dmenu unified) --- */
#window, #main, #outer-box, #dmenu {
background:
linear-gradient(@base-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent;
border-radius: 30px;
padding: 10px;
box-shadow: 0 0 20px rgba(0,0,0,0.3);
width: 800px;
border: 2px solid transparent;
border-radius: 28px;
padding: 12px;
margin: 0;
width: 400px;
box-shadow:
0 10px 30px rgba(0,0,0,0.35),
0 0 0 1px rgba(255,255,255,0.03) inset;
}
/* --- INNER LAYOUT (force compact like dmenu) --- */
/* --- INNER LAYOUT --- */
#inner-box {
spacing: 4px;
spacing: 6px;
}
/* --- INPUT FIELD --- */
#input {
background-color: @surface0;
color: @text;
border: 1px solid @surface1;
border-radius: 30px;
padding: 6px 12px;
margin-bottom: 8px;
}
border-radius: 20px;
/* --- ENTRY (default state) --- */
#entry {
background-color: rgba(200,200,200,0.15);
color: @subtext1;
padding: 8px 14px;
margin-bottom: 10px;
border-radius: 30px;
padding: 6px 12px;
margin: 2px 0;
border: 2px solid transparent;
transition: all 0.15s ease;
}
/* --- HOVER / FOCUS --- */
#input:focus {
border: 1px solid @blue;
}
/* --- ENTRY (base) --- */
#entry {
background-color: rgba(255,255,255,0.04);
color: @subtext1;
border-radius: 20px;
padding: 8px 14px;
margin: 2px 0;
border: 2px solid transparent;
transition: all 0.15s ease;
}
/* --- ENTRY HOVER / FOCUS --- */
#entry:focus {
background:
linear-gradient(@base-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
color: @lavender;
}
/* --- SELECTED --- */
/* --- ENTRY SELECTED --- */
#entry:selected {
background:
linear-gradient(@base-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
color: @text;
}
/* --- ICONS (drun only, keep subtle) --- */
/* --- ICONS (drun only) --- */
#entry image {
margin-right: 10px;
opacity: 0.8;
opacity: 0.85;
}
/* --- SCROLL AREA --- */
#scroll {
margin-top: 6px;
}
/* --- SCROLLBAR --- */
#scroll {
margin-top: 5px;
}
#scrollbar {
background-color: @surface0;
border-radius: 30px;
border-radius: 20px;
width: 6px;
}
#scrollbar handle {
background-color: @blue;
border-radius: 30px;
background: linear-gradient(45deg, @blue, @green);
border-radius: 20px;
}
/* --- DMENU SPECIFIC (force same look) --- */
#dmenu {
padding: 0;
}
/* Remove weird spacing differences */
#outer-box > box {
spacing: 4px;
}
/* Optional: hide prompt icon spacing inconsistencies */
/* --- PROMPT --- */
#prompt {
margin-right: 6px;
color: @subtext0;
margin-right: 6px;
}
#+END_SRC
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
wofi --show drun \
--style ~/.config/wofi/style.css \
--no-actions \
--allow-images=false \
--columns 1 \
--prompt "Apps"