xsession: add startx argument, lupan-set-theme: use pkill, shell: try eza before exa

This commit is contained in:
2025-10-15 07:34:23 +02:00
parent e734764630
commit 19a7dd6dee
3 changed files with 7 additions and 4 deletions

View File

@@ -13,7 +13,10 @@ if alias r > /dev/null; then
unalias r
fi
if which exa > /dev/null; then
if which eza > /dev/null; then
alias ls='eza --icons'
alias tree='eza --tree --icons'
elif which exa > /dev/null; then
alias ls='exa --icons'
alias tree='exa --tree --icons'
fi