first commit

This commit is contained in:
2026-03-30 14:53:09 -06:00
commit fbec1a6ade
81 changed files with 4479 additions and 0 deletions

12
waybar/buscar_archivos.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Puedes usar locate, find o fd aquí
file=$(fd . ~/Documentos ~/Descargas ~/Proyectos \
--type f --hidden --exclude .git 2>/dev/null | \
wofi --dmenu --prompt "Buscar archivo")
# Si se seleccionó algo, ábrelo
if [[ -n "$file" ]]; then
xdg-open "$file" &
fi