This commit is contained in:
2026-07-12 08:16:17 +03:30
commit 72be1234e1
2027 changed files with 221388 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
# mode & placement
show=drun
location=top
width=700
lines=8
columns=2
dynamic_lines=false
# icons
allow_images=true
image_size=36
# search & UX
matching=fuzzy
insensitive=true
hide_scroll=false
prompt=
# terminal
term=foot
# keybinds (vim-ish)
key_up=Ctrl-k
key_down=Ctrl-j
key_left=Ctrl-h
key_right=Ctrl-l
key_submit=Return
key_forward=Tab
key_backward=Shift-ISO_Left_Tab
# stylesheet
style=/home/tony/.config/wofi/style.css
+59
View File
@@ -0,0 +1,59 @@
* {
font-family: "UbuntuMono", monospace;
font-size: 16px;
font-weight: bold;
}
window {
margin: 0px;
border: 2px solid #7f7f7f; /* Bright grey */
border-radius: 5px;
background-color: #1c1c1c; /* Dark grey */
font-family: monospace;
font-size: 12px;
}
#input {
margin: 5px;
border: 1px solid #1c1c1c; /* Dark grey */
color: #d3d3d3; /* Light grey */
background-color: #1c1c1c; /* Dark grey */
}
#input image {
color: #d3d3d3; /* Light grey */
}
#inner-box {
margin: 5px;
border: none;
background-color: #1c1c1c; /* Dark grey */
}
#outer-box {
margin: 5px;
border: none;
background-color: #1c1c1c; /* Dark grey */
}
#scroll {
margin: 0px;
border: none;
}
#text {
margin: 5px;
border: none;
color: #d3d3d3; /* Light grey */
}
#entry:selected {
background-color: #7f7f7f; /* Bright grey */
font-weight: normal;
}
#text:selected {
background-color: #7f7f7f; /* Bright grey */
font-weight: normal;
}