This commit is contained in:
shijil
2025-05-27 12:52:45 +05:30
parent 1784e58039
commit 94ecb26c95
19 changed files with 779 additions and 0 deletions

20
wofi/config Normal file
View File

@ -0,0 +1,20 @@
hide_scroll=true
show=drun
width=40%
lines=8
line_wrap=word
term=kitty
allow_markup=true
always_parse_args=false
show_all=true
print_command=true
layer=overlay
allow_images=true
sort_order=alphabetical
gtk_dark=true
prompt=
image_size=20
display_generic=false
location=center
key_expand=Tab
insensitive=false

40
wofi/style.css Normal file
View File

@ -0,0 +1,40 @@
* {
font-family: JetBrainsMono;
color: #e5e9f0;
background: transparent;
}
#window {
background: #1d2021;
margin: auto;
padding: 10px;
border-radius: 1px;
border: 3px solid #fbf1c7;
}
#input {
padding: 8px;
margin-bottom: 10px;
border-radius: 8px;
}
#outer-box {
padding: 20px;
}
#img {
margin-right: 6px;
}
#entry {
padding: 10px;
border-radius: 10px;
}
#entry:selected {
background-color: #2e3440;
}
#text {
margin: 2px;
}

47
wofi/style_bak.css Normal file
View File

@ -0,0 +1,47 @@
window {
margin: 5px;
border: 2px solid yellow;
border-radius: 15px;
background-color: black;
}
#input {
margin: 15px;
border: 2px gray;
background-color: white;
}
#inner-box {
margin: 5px;
background-color: black;
}
#outer-box {
margin: 5px;
border: 2px black ;
border-radius: 25px;
background-color: black;
}
#scroll {
margin: 5px;
}
#text {
margin: 5px;
color: black;
}
#entry {
margin: 5px;
background-color: yellow;
border-radius: 5px;
}
#entry:selected {
background-color: white;
}
#img {
}