feat(wofi): completely overhaul wofi

This commit is contained in:
Price Hiller 2023-05-28 02:35:40 -05:00
parent 134a2c6ac1
commit 035ac8b85e
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 89 additions and 31 deletions

View File

@ -1,3 +1,17 @@
height=25% width=10%
width=20% height=40%
location=center
show=drun
matching=fuzzy
prompt=
filter_rate=100
allow_markup=true
no_actions=true
halign=fill
orientation=vertical
content_halign=fill
insensitive=true insensitive=true
allow_images=true
image_size=28
gtk_dark=false
term=wezterm

View File

@ -35,53 +35,97 @@
/* --peachRed: #FF5D62 */ /* --peachRed: #FF5D62 */
/* --surimiOrange: #FFA066 */ /* --surimiOrange: #FFA066 */
* {
transition: 0.2s;
}
window { window {
margin: 5px; font-family: "FiraCode Nerd Font Mono";
border: 2px solid #54546d; font-size: 12px;
color: #dcd7ba; border-radius: 12px;
background-color: #16161d; border: 2px solid #ff5d62;
border-radius: 20px; background-color: #16161D;
margin: 0px;
} }
#input { #input {
margin: 5px; padding: 4px;
color: #dcd7ba; margin: 20px;
border: 2px solid #54546d; padding-left: 20px;
background-color: #1f1f28; border: none;
border-radius: 15px; font-weight: bold;
margin-top: 10px; background: linear-gradient(90deg, #957FB8 0%, #D27E99 100%);
margin-left: 10px; color: #DCD7BA;
margin-right: 10px; outline: none;
border-radius: 16px;
}
#input image {
color: #DCD7BA;
border: none;
}
#input:focus {
border: none;
outline: none;
} }
#inner-box { #inner-box {
background-color: #1f1f28; margin: 20px;
border-radius: 15px; margin-top: 0px;
margin: 10px; border: none;
color: #957FB8;
border-radius: 16px;
}
#inner-box * {
transition: none;
} }
#outer-box { #outer-box {
margin: 10px; margin: 0px;
border-radius: 15px; border: none;
padding: 0px;
border-radius: 16px;
} }
#scroll { #scroll {
border: 2px solid #54546d; margin-top: 5px;
background-color: #1f1f28; border: none;
margin: 10px; border-radius: 16px;
border-radius: 15px; margin-bottom: 5px;
padding-top: 5px; }
padding-bottom: 10px;
#text:selected {
color: #DCD7BA;
font-weight: bold;
}
#img {
margin-right: 20px;
background: transparent;
} }
#text { #text {
color: #dcd7ba; margin: 0px;
margin: 5px; border: none;
padding: 0px;
background: transparent;
}
#entry {
margin: 0px;
border: none;
border-radius: 16px;
background-color: transparent;
min-height: 32px;
font-weight: bold;
} }
#entry:selected { #entry:selected {
background-color: #223249;
border-radius: 15px;
outline: none; outline: none;
margin: 2px; margin: 0px;
border: none;
border-radius: 16px;
background: linear-gradient(90deg, #957FB8 0%, #D27E99 100%);
} }