1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# custom shortcut
alias np='dunstctl history-pop'
alias nc='dunstctl close-all'
alias ns='xinput set-prop 12 332 1' #natural screening
alias ls='ls --color=auto'
alias grep='grep --color=auto'
PS1='[\u@\h \W]\$ '
export PATH="$PATH:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/qt/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl"
[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh
# Golang
export GOPATH=$HOME/go/bin
export GOROOT=/usr/lib/go
export PATH=$PATH:$GOPATH:$GOROOT/bin
export CRYPTOGRAPHY_OPENSSL_NO_LEGACY=1
# Ruby
export PATH="$HOME/.gem/ruby/3.3.0/bin:$PATH"
|