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
+410 -407
View File
File diff suppressed because it is too large Load Diff
+19 -47
View File
@@ -3418,7 +3418,7 @@ Providing an media
wofi --show drun \ wofi --show drun \
--style ~/.config/wofi/style.css \ --style ~/.config/wofi/style.css \
--no-actions \ --no-actions \
--allow-images=false \ --allow-images=true \
--columns 1 \ --columns 1 \
--prompt "Apps" --prompt "Apps"
#+END_SRC #+END_SRC
@@ -4052,7 +4052,7 @@ These are config files for waybar
"format-disconnected": "Disconnected ⚠", "format-disconnected": "Disconnected ⚠",
"tooltip-format-wifi": "{essid} ({signalStrength}%)", "tooltip-format-wifi": "{essid} ({signalStrength}%)",
"tooltip-format-ethernet": "{ifname}: {ipaddr}/{cidr}", "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" "on-click-right": "nm-connection-editor"
}, },
@@ -4397,10 +4397,16 @@ These are config files for waybar
active_ws=$(hyprctl activeworkspace -j | jq -r '.id') active_ws=$(hyprctl activeworkspace -j | jq -r '.id')
clients=$(hyprctl clients -j | jq -r \ clients=$(hyprctl clients -j | jq -r \
".[] | select(.workspace.id==$active_ws) | \"\(.address)|\(.title)\"") ".[] | 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 [ -z "$choice" ] && exit 0
addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1) addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1)
hyprctl dispatch focuswindow address:$addr hyprctl dispatch focuswindow address:"$addr"
#+END_SRC #+END_SRC
** =generated/.config/waypaper/config.ini= ** =generated/.config/waypaper/config.ini=
@@ -4472,19 +4478,8 @@ keybindings = ~/.config/waypaper/keybindings.ini
These are config files for .config/wofi These are config files for .config/wofi
#+BEGIN_SRC toml :tangle generated/.config/wofi/config :noweb yes :mkdirp yes :eval never #+BEGIN_SRC toml :tangle generated/.config/wofi/config :noweb yes :mkdirp yes :eval never
[global] [global]
allow_images = true
allow_markup = 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 location = center
anchor = center anchor = center
@@ -4499,17 +4494,6 @@ cycle = true
hide_scroll = false hide_scroll = false
hide_search = 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 = > ... prompt = > ...
#+END_SRC #+END_SRC
@@ -4519,7 +4503,7 @@ This is the default layout for wofi
@import "~/.config/shared/Colors.css"; @import "~/.config/shared/Colors.css";
/* ========================= /* =========================
GLOBAL by Henro GLOBAL
========================= */ ========================= */
* { * {
background-color: transparent; background-color: transparent;
@@ -4529,7 +4513,7 @@ This is the default layout for wofi
} }
/* ========================= /* =========================
OUTER BORDER (REAL WORKING GRADIENT BORDER) OUTER BORDER (GRADIENT)
========================= */ ========================= */
#window { #window {
@@ -4543,14 +4527,11 @@ This is the default layout for wofi
} }
#inner-box { #inner-box {
background: rgba(30, 30, 46, 0.92); /* controlled transparency */ background: @base;
border-radius: 26px; border-radius: 26px;
padding: 12px; padding: 12px;
width: 400px; 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 { #input {
background-color: @surface0; background-color: @surface0;
color: @text; color: @text;
border: 1px solid @surface1; border: 1px solid @surface1;
border-radius: 18px; border-radius: 18px;
padding: 8px 14px; padding: 8px 14px;
margin-bottom: 10px; margin-bottom: 10px;
} }
@@ -4572,33 +4551,27 @@ This is the default layout for wofi
} }
/* ========================= /* =========================
ENTRIES (DARKER + CLEARER) ENTRIES
========================= */ ========================= */
#entry { #entry {
background-color: rgba(0, 0, 0, 0.35); background-color: transparent;
color: @subtext1; color: @subtext1;
border-radius: 18px; border-radius: 18px;
padding: 8px 14px; padding: 8px 14px;
margin: 2px 0; margin: 2px 0;
transition: all 0.15s ease; transition: all 0.15s ease;
} }
/* hover */
#entry:focus { #entry:focus {
background-color: rgba(0, 0, 0, 0.45); background-color: rgba(0, 0, 0, 0.15);
color: @lavender; color: @lavender;
} }
/* ========================= /* =========================
SELECTED (REAL GRADIENT FIX) SELECTED (GRADIENT)
========================= */ ========================= */
#entry:selected { #entry:selected {
background: linear-gradient(45deg, @blue, @green); background: linear-gradient(45deg, @blue, @green);
color: @base; color: @base;
font-weight: bold; font-weight: bold;
} }
@@ -4631,8 +4604,7 @@ This is the default layout for wofi
#prompt { #prompt {
color: @subtext0; color: @subtext0;
margin-right: 6px; margin-right: 6px;
} }#+END_SRC
#+END_SRC
@@ -3,7 +3,13 @@
active_ws=$(hyprctl activeworkspace -j | jq -r '.id') active_ws=$(hyprctl activeworkspace -j | jq -r '.id')
clients=$(hyprctl clients -j | jq -r \ clients=$(hyprctl clients -j | jq -r \
".[] | select(.workspace.id==$active_ws) | \"\(.address)|\(.title)\"") ".[] | 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 [ -z "$choice" ] && exit 0
addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1) addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1)
hyprctl dispatch focuswindow address:$addr hyprctl dispatch focuswindow address:"$addr"
@@ -3,6 +3,6 @@
wofi --show drun \ wofi --show drun \
--style ~/.config/wofi/style.css \ --style ~/.config/wofi/style.css \
--no-actions \ --no-actions \
--allow-images=false \ --allow-images=true \
--columns 1 \ --columns 1 \
--prompt "Apps" --prompt "Apps"
+1 -1
View File
@@ -171,7 +171,7 @@
"format-disconnected": "Disconnected ⚠", "format-disconnected": "Disconnected ⚠",
"tooltip-format-wifi": "{essid} ({signalStrength}%)", "tooltip-format-wifi": "{essid} ({signalStrength}%)",
"tooltip-format-ethernet": "{ifname}: {ipaddr}/{cidr}", "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" "on-click-right": "nm-connection-editor"
}, },
-22
View File
@@ -1,18 +1,7 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- # --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
[global] [global]
allow_images = true
allow_markup = 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 location = center
anchor = center anchor = center
@@ -27,15 +16,4 @@ cycle = true
hide_scroll = false hide_scroll = false
hide_search = 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 = > ... prompt = > ...