Files

42 lines
1.0 KiB
Bash

#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
export HISTCONTROL=ignoreboth
alias cpwd='pwd | wl-copy'
alias ls='ls -a --color=auto'
alias grep='grep --color=auto'
alias disp='kitty +kitten icat'
# Prompt
BGREEN='\[\033[1;32m\]'
GREEN='\[\033[0;32m\]'
BRED='\[\033[1;31m\]'
RED='\[\033[0;31m\]'
BBLUE='\[\033[1;34m\]'
BLUE='\[\033[0;34m\]'
NORMAL='\[\033[00m\]'
YELLOW='\[\033[33;1m\]'
PS1="[${YELLOW}\u${RED}@${YELLOW}\h ${BBLUE}\W${NORMAL}]${GREEN}\$${NORMAL} "
export PATH="$PATH:/home/seamus/.cargo/bin"
export PATH="$PATH:/home/seamus/scripts"
export APULSE_CAPTURE_DEVICE=hw:3,0
source /usr/share/bash-completion/completions/git
alias kssh="kitten ssh"
alias vimrc="vim ~/.vimrc"
alias bashrc="vim ~/.bashrc"
alias hyprconf="vim ~/.config/hypr/hyprland.conf"
alias camera='mpv --profile=low-latency --untimed /dev/video0'
# Created by `pipx` on 2026-03-23 11:02:29
export PATH="$PATH:/home/seamus/.local/bin"
alias dotfiles='/usr/bin/git --git-dir=/home/seamus/.dotfiles/ --work-tree=/home/seamus'