11 lines
254 B
Bash
Executable file
11 lines
254 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
alias ls='ls --color=auto'
|
|
alias ll='ls -lah --color=auto'
|
|
alias grep='grep --color=auto'
|
|
|
|
term_name=$(ps -o comm= "$PPID")
|
|
if [ "$term_name" = "xterm" ] && [ -n "$(command -v "transset")" ]; then
|
|
transset -a 0.95 > /dev/null
|
|
fi
|
|
|