background, keybinds for moving and resizing windows, added color palett
This commit is contained in:
10
.bashrc
10
.bashrc
@ -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
|
||||
|
Reference in New Issue
Block a user