summaryrefslogtreecommitdiff
path: root/.bashrc
blob: d2d50e073cdedec06d8e4cc51fa22ce35ccc2e2f (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# .bashrc

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '

poezio () { ~/soft/poezio/launch.sh; }

alias xqr='xbps-query -R'
alias xqrs='xbps-query -Rs'

bind -s 'set completion-ignore-case on'

runtimeify() {
	sudo mkdir /run/user/1000
	sudo chown rebecca:rebecca /run/user/1000
	sudo chmod 700 /run/user/1000
	export XDG_RUNTIME_DIR=/run/user/1000
}

alias vz='kak ~/.bashrc'
alias sz='source ~/.bashrc'

alias l='ls -lah'

export SSH_AUTH_SOCK=/run/user/1000/ssh-agent.sock
( pgrep -u $USER ssh-agent  || ssh-agent -a $SSH_AUTH_SOCK ; ) >/dev/null

export XDG_CONFIG_HOME=$HOME/.config

apwd () {
	pwd | sed -e 's!'"$HOME"'!~!'
}

set_title () { printf "\e]2;%s\e\\" "$1"; }
_lastcmd () { history 1 | sed -e 's/^ *[0-9]* *//g' ; }
trap 'set_title "$(_lastcmd)"' DEBUG
PROMPT_COMMAND='set_title "$(apwd)"'

add_path () {
	export PATH="$1:$PATH"
}

add_path ~/.local/bin

. ~/.local/bin/rws
gowork