background, keybinds for moving and resizing windows, added color palett

This commit is contained in:
2025-05-13 20:22:20 +02:00
parent 1531844053
commit 6bca50db27
16 changed files with 97 additions and 13 deletions

10
.bashrc
View File

@ -12,4 +12,14 @@ PS1='[\u@\h \W]\$ '
alias l='ls -la'
alias lg='lazygit'
# Yazi
function y() {
local tmp="$(mktemp -t "yazi-cwd.XXXXXX")" cwd
yazi "$@" --cwd-file="$tmp"
if cwd="$(command cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then
builtin cd -- "$cwd"
fi
rm -f -- "$tmp"
}
fastfetch