Regenerated
This commit is contained in:
+417
-392
File diff suppressed because it is too large
Load Diff
+55
-46
@@ -4516,7 +4516,8 @@ prompt = > ...
|
|||||||
** =generated/.config/wofi/style.css=
|
** =generated/.config/wofi/style.css=
|
||||||
This is the default layout for wofi
|
This is the default layout for wofi
|
||||||
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
|
#+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 --- */
|
/* --- GLOBAL --- */
|
||||||
* {
|
* {
|
||||||
@@ -4526,99 +4527,107 @@ This is the default layout for wofi
|
|||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- MAIN WINDOW (works for BOTH drun + dmenu) --- */
|
/* --- MAIN WINDOW (drun + dmenu unified) --- */
|
||||||
#window, #main, #outer-box {
|
#window, #main, #outer-box, #dmenu {
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-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 {
|
#inner-box {
|
||||||
spacing: 4px;
|
spacing: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- INPUT FIELD --- */
|
/* --- INPUT FIELD --- */
|
||||||
#input {
|
#input {
|
||||||
background-color: @surface0;
|
background-color: @surface0;
|
||||||
color: @text;
|
color: @text;
|
||||||
|
|
||||||
border: 1px solid @surface1;
|
border: 1px solid @surface1;
|
||||||
border-radius: 30px;
|
border-radius: 20px;
|
||||||
padding: 6px 12px;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* --- ENTRY (default state) --- */
|
padding: 8px 14px;
|
||||||
#entry {
|
margin-bottom: 10px;
|
||||||
background-color: rgba(200,200,200,0.15);
|
|
||||||
color: @subtext1;
|
|
||||||
|
|
||||||
border-radius: 30px;
|
|
||||||
padding: 6px 12px;
|
|
||||||
margin: 2px 0;
|
|
||||||
|
|
||||||
border: 2px solid transparent;
|
|
||||||
transition: all 0.15s ease;
|
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 {
|
#entry:focus {
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
|
|
||||||
color: @lavender;
|
color: @lavender;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- SELECTED --- */
|
/* --- ENTRY SELECTED --- */
|
||||||
#entry:selected {
|
#entry:selected {
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
|
|
||||||
color: @text;
|
color: @text;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- ICONS (drun only, keep subtle) --- */
|
/* --- ICONS (drun only) --- */
|
||||||
#entry image {
|
#entry image {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
opacity: 0.8;
|
opacity: 0.85;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --- SCROLL AREA --- */
|
||||||
|
#scroll {
|
||||||
|
margin-top: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- SCROLLBAR --- */
|
/* --- SCROLLBAR --- */
|
||||||
#scroll {
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#scrollbar {
|
#scrollbar {
|
||||||
background-color: @surface0;
|
background-color: @surface0;
|
||||||
border-radius: 30px;
|
border-radius: 20px;
|
||||||
width: 6px;
|
width: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#scrollbar handle {
|
#scrollbar handle {
|
||||||
background-color: @blue;
|
background: linear-gradient(45deg, @blue, @green);
|
||||||
border-radius: 30px;
|
border-radius: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- DMENU SPECIFIC (force same look) --- */
|
/* --- PROMPT --- */
|
||||||
#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;
|
color: @subtext0;
|
||||||
|
margin-right: 6px;
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
|||||||
Executable
+8
@@ -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"
|
||||||
Reference in New Issue
Block a user