Finished hacker theme mostly and added some other configs

This commit is contained in:
ManOfGoldForever 2026-04-03 10:57:53 -04:00
parent 0c499ecbd6
commit ad06f5284e
91 changed files with 1928 additions and 3 deletions

View file

@ -0,0 +1,13 @@
function awww_set_wallpaper
set wallpaper $argv[1]
# Start swww daemon if not running
if not pgrep awww-daemon > /dev/null
awww-daemon &
sleep 1
end
# Set wallpaper with animation
awww 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