Wofi styling changes.

This commit is contained in:
duma97
2025-11-15 13:22:24 +04:00
parent c203ac5ce1
commit 6422daa0d3
2 changed files with 43 additions and 10 deletions
+4 -1
View File
@@ -19,9 +19,10 @@ workspace = 9, monitor:eDP-1
workspace = 10, monitor:eDP-1 workspace = 10, monitor:eDP-1
# Autostart # Autostart
exec-once = waybar
exec-once = swww-daemon exec-once = swww-daemon
exec-once = waypaper --restore exec-once = waypaper --restore
exec-once = wal -R -n
exec-once = waybar
exec-once = hyprctl setcursor Adwaita 24 # Needed on NixOS exec-once = hyprctl setcursor Adwaita 24 # Needed on NixOS
exec-once = mkdir -p $HOME/Pictures/Screenshots exec-once = mkdir -p $HOME/Pictures/Screenshots
@@ -174,7 +175,9 @@ windowrule = move 69.5% 4%, title:^(Picture-in-Picture)$
# Layer Rules # Layer Rules
layerrule = blur, waybar layerrule = blur, waybar
layerrule = ignorealpha 0.5, waybar layerrule = ignorealpha 0.5, waybar
layerrule = blur, wofi layerrule = blur, wofi
layerrule = ignorealpha 0.2, wofi
# Keybindings # Keybindings
+39 -9
View File
@@ -1,22 +1,43 @@
* { * {
font-family: "CodeNewRoman Nerd Font Propo"; font-family: "CodeNewRoman Nerd Font Propo";
font-size: 14px; font-size: 14px;
background-image: none;
} }
window { window {
margin: 0px; margin: 0px;
border: 3px solid #89b4fa; border: 3px solid #887671;
background-color: #1e1e2e; background-color: #0B0B08;
background-image: none;
border-radius: 15px; border-radius: 15px;
animation: slideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
opacity: 1.0;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(-30px) scale(0.96);
}
to {
opacity: 1.0;
transform: translateY(0) scale(1);
}
} }
#input { #input {
margin: 10px; margin: 10px;
padding: 8px 15px; padding: 8px 15px;
border: none; border: none;
color: #cdd6f4; color: #dad4d1;
background-color: #313244; background-color: #555048;
border-radius: 10px; border-radius: 10px;
transition: all 0.2s ease;
}
#input:focus {
background-color: #645B52;
box-shadow: 0 0 10px #887671;
} }
#inner-box { #inner-box {
@@ -37,19 +58,28 @@ window {
} }
#entry { #entry {
padding: 5px; padding: 8px;
border-radius: 8px; border-radius: 8px;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
margin: 2px 0;
}
#entry:hover {
background-color: #645B52;
transform: translateX(5px);
} }
#entry:selected { #entry:selected {
background-color: #89b4fa; background-color: #887671;
color: #1e1e2e; transform: translateX(8px) scale(1.02);
box-shadow: 0 4px 12px #887671;
} }
#text { #text {
color: #cdd6f4; color: #dad4d1;
} }
#text:selected { #text:selected {
color: #1e1e2e; color: #dad4d1;
font-weight: bold;
} }