Dotfiles for different machines on different branches.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/bin/bashset -o vistty -ixon # Disable ctrl-s and ctrl-q.HISTSIZE=10000SAVEHIST=10000HISTFILE=~/.cache/shell/history
[ -f "$HOME/.config/shell/shortcutrc" ] && source "$HOME/.config/shell/shortcutrc" # Load shortcut aliases[ -f "$HOME/.config/shell/aliasrc" ] && source "$HOME/.config/shell/aliasrc" # Load aliases
# Load options depending on current shellif [ $(echo $0) = "/bin/zsh" ]; then [ -f "$HOME/.config/shell/zspecific" ] && source "$HOME/.config/shell/zspecific"fiif [ $(echo $0) = "/bin/bash" ]; then [ -f "$HOME/.config/shell/bashspecific" ] && source "$HOME/.config/shell/bashspecific"fi
pfetch && echo $(vrms) | grep "non-free"
|