first commit

This commit is contained in:
hdvt
2026-03-28 16:48:16 +00:00
commit 0c097ebf97
15478 changed files with 850272 additions and 0 deletions

28
fuzzel/fuzzel.ini Normal file
View File

@@ -0,0 +1,28 @@
[main]
font=JetBrains Mono:size=12
dpi-aware=no
horizontal-pad=20
vertical-pad=20
inner-pad=10
icons-enabled=yes
[colors]
background=00000040
text=f5f5f5ff
prompt=f5f5f5ff
placeholder=7e7e7eff
input=f5f5f5ff
match=f5f5f5ff
selection=f5f5f5ff
selection-text=0e0e0eff
selection-match=0e0e0eff
border=f5f5f5ff
[border]
width=2
radius=15

7
fuzzel/fuzzel_toggle.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
if pgrep -x fuzzel > /dev/null; then
pkill -x fuzzel
else
fuzzel
fi