1
0
Files
dotfiles/bash/bashrc
2026-01-18 16:24:29 +02:00

13 lines
247 B
Bash

#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias ll='ls --color=auto -lah'
alias aria2c='aria2c -x 16 -s 16 -k 1M'
PS1='(\u@\h) (\w) ~> '