Regenerated

This commit is contained in:
2026-04-13 15:10:46 +02:00
parent d5a86e576a
commit ff328201b5
6 changed files with 439 additions and 480 deletions
+19 -47
View File
@@ -3418,7 +3418,7 @@ Providing an media
wofi --show drun \
--style ~/.config/wofi/style.css \
--no-actions \
--allow-images=false \
--allow-images=true \
--columns 1 \
--prompt "Apps"
#+END_SRC
@@ -4052,7 +4052,7 @@ These are config files for waybar
"format-disconnected": "Disconnected ⚠",
"tooltip-format-wifi": "{essid} ({signalStrength}%)",
"tooltip-format-ethernet": "{ifname}: {ipaddr}/{cidr}",
"on-click": "networkmanager_dmenu -dmenu --style ~/.config/wofi/style.css",
"on-click": "networkmanager_dmenu --dmenu --style ~/.config/wofi/style.css --allow-images=false",
"on-click-right": "nm-connection-editor"
},
@@ -4397,10 +4397,16 @@ These are config files for waybar
active_ws=$(hyprctl activeworkspace -j | jq -r '.id')
clients=$(hyprctl clients -j | jq -r \
".[] | select(.workspace.id==$active_ws) | \"\(.address)|\(.title)\"")
choice=$(echo "$clients" | cut -d'|' -f2 | wofi -dmenu -j -p "Active apps" --style ~/.config/wofi/style.css)
choice=$(echo "$clients" | cut -d'|' -f2 \
| wofi --dmenu \
--style ~/.config/wofi/style.css \
--allow-images=false \
--prompt "Active apps")
[ -z "$choice" ] && exit 0
addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1)
hyprctl dispatch focuswindow address:$addr
hyprctl dispatch focuswindow address:"$addr"
#+END_SRC
** =generated/.config/waypaper/config.ini=
@@ -4472,19 +4478,8 @@ keybindings = ~/.config/waypaper/keybindings.ini
These are config files for .config/wofi
#+BEGIN_SRC toml :tangle generated/.config/wofi/config :noweb yes :mkdirp yes :eval never
[global]
allow_images = true
allow_markup = true
# Which modes are active
show_drun = true:apps,false:others
show_run = true
show_files = false
show_windowed = false
show_dmenu = false
show_ssh = false
show_power = true
# Layout / scrolling
location = center
anchor = center
@@ -4499,17 +4494,6 @@ cycle = true
hide_scroll = false
hide_search = false
# Labels
show_labels = true
label_search = true
label_run = Run
label_files = Files
label_windowed = Windows
label_drun = Applications
label_dmenu = Commands
label_ssh = SSH
label_power = Power
prompt = > ...
#+END_SRC
@@ -4519,7 +4503,7 @@ This is the default layout for wofi
@import "~/.config/shared/Colors.css";
/* =========================
GLOBAL by Henro
GLOBAL
========================= */
* {
background-color: transparent;
@@ -4529,7 +4513,7 @@ This is the default layout for wofi
}
/* =========================
OUTER BORDER (REAL WORKING GRADIENT BORDER)
OUTER BORDER (GRADIENT)
========================= */
#window {
@@ -4543,14 +4527,11 @@ This is the default layout for wofi
}
#inner-box {
background: rgba(30, 30, 46, 0.92); /* controlled transparency */
background: @base;
border-radius: 26px;
padding: 12px;
width: 400px;
box-shadow:
0 10px 30px rgba(0,0,0,0.4);
box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
/* =========================
@@ -4559,10 +4540,8 @@ This is the default layout for wofi
#input {
background-color: @surface0;
color: @text;
border: 1px solid @surface1;
border-radius: 18px;
padding: 8px 14px;
margin-bottom: 10px;
}
@@ -4572,33 +4551,27 @@ This is the default layout for wofi
}
/* =========================
ENTRIES (DARKER + CLEARER)
ENTRIES
========================= */
#entry {
background-color: rgba(0, 0, 0, 0.35);
background-color: transparent;
color: @subtext1;
border-radius: 18px;
padding: 8px 14px;
margin: 2px 0;
transition: all 0.15s ease;
}
/* hover */
#entry:focus {
background-color: rgba(0, 0, 0, 0.45);
background-color: rgba(0, 0, 0, 0.15);
color: @lavender;
}
/* =========================
SELECTED (REAL GRADIENT FIX)
SELECTED (GRADIENT)
========================= */
#entry:selected {
background: linear-gradient(45deg, @blue, @green);
color: @base;
font-weight: bold;
}
@@ -4631,8 +4604,7 @@ This is the default layout for wofi
#prompt {
color: @subtext0;
margin-right: 6px;
}
#+END_SRC
}#+END_SRC