-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_aliases
17 lines (16 loc) · 1000 Bytes
/
.bash_aliases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
alias grep='grep --color=always'
alias ls='ls -CF --color=always'
alias cls='clear; ls'
alias emacs='emacsclient -nw'
alias tmux='TERM=xterm-256color tmux'
alias gh='ssh-add -D; ssh-add ~/.ssh/github'
alias ghw='ssh-add -D; ssh-add ~/.ssh/github_candosa'
alias lint='cpplint --root=.. src/**/*.{cc,h}'
alias vgrind='valgrind -v --tool=memcheck --leak-check=full --track-origins=yes --show-reachable=no ./bin/entt_dino'
alias pacrepo='sudo reflector -l 20 -f 10 --save /etc/pacman.d/mirrorlist'
alias drun='docker run -it --network=host --device=/dev/kfd --device=/dev/dri --group-add=video --ipc=host --cap-add=SYS_PTRACE --security-opt seccomp=unconfined -v $(pwd):/pwd'
# work
alias tester='/home/odin/yreceipts/yreceipts.com/utilities/tester/tester.py'
alias yr='tmuxp load ~/.config/tmuxp/yreceipts.yaml'
alias yr-nw='tmuxp load ~/.config/tmuxp/yreceipts-nw.yaml'
alias devappserver='python3 /usr/local/programs/google-cloud-sdk/bin/dev_appserver.py --support_datastore_emulator=False app.yaml'