Added all current configs that I see are important

This commit is contained in:
ManOfGoldForever 2025-11-12 16:35:56 -05:00
parent 7e2ddc1054
commit d9bed25ebc
48 changed files with 4854 additions and 35 deletions

View file

@ -0,0 +1,13 @@
function swww_set_wallpaper
set wallpaper $argv[1]
# Start swww daemon if not running
if not pgrep swww-daemon > /dev/null
swww-daemon &
sleep 1
end
# Set wallpaper with animation
swww img "$wallpaper" \
--transition-type wipe
end

View file

@ -0,0 +1,8 @@
function yazi-cd
set tmpfile (mktemp)
yazi --cwd-file="$tmpfile"
if test -s "$tmpfile"
cd (cat "$tmpfile")
end
rm -f "$tmpfile"
end