diff options
author | Marc Coquand <marc@mccd.space> | 2024-09-05 12:15:30 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-09-05 12:15:30 -0500 |
commit | 3783cab095a9167256afcbfe987d11f35a7003b1 (patch) | |
tree | 73a65b01330ba28777aef62c39446eba80817536 /shrc | |
parent | 1c1bab4e0f73aadec8def78a5313d22e1fb9462f (diff) | |
download | bsd-3783cab095a9167256afcbfe987d11f35a7003b1.tar.gz bsd-3783cab095a9167256afcbfe987d11f35a7003b1.tar.bz2 bsd-3783cab095a9167256afcbfe987d11f35a7003b1.zip |
changesnetbsd
Diffstat (limited to '')
-rw-r--r-- | shrc | 40 |
1 files changed, 33 insertions, 7 deletions
@@ -1,4 +1,4 @@ -# # be paranoid + # be paranoid alias rm='rm -i' alias grep="ugrep --exclude-dir=node-modules --exclude-dir=_build" @@ -6,19 +6,30 @@ alias e="$EDITOR" alias g="git" alias grep="ugrep" alias tldr="NO_COLOR=1 tldr" -alias fd="find . -name $1*" alias dedoc="dedoc --color off" alias doc="dedoc --color off search" alias kill-sessions="tmux kill-session -a" +alias restart-wifi="doas /usr/sbin/service netif restart" +alias de='. ./.envrc' -kill-unattached() { +optimizeimg() { + convert -strip -quality 85% $1 $2 +} + + +killunattached() { tmux list-sessions -F '#{session_attached} #{session_id}' | \ awk '/^0/{print $2}' | \ xargs -n 1 tmux kill-session -t } refs() { - recsel -q $1 ~/refs.rec + recsel -q $1 ~/personal-db/refs.rec +} + +# Remove trailing newlines +cleartrail() { + cat $1 | tr -d '\n' } addref() { @@ -26,16 +37,31 @@ addref() { cat /tmp/description | xargs -I {} recins refs.rec -f Title -v $1 -f Tags -v $2 -f Text -v {} } +isrootprompt() { + CURR="$(id -u)" + case "$CURR" in + "0") echo "#" + ;; + *) echo "$" + ;; + esac +} + notes() { grep -i "$1" --format='%f%~' ~/notes/ | xargs -I {} cat {} } -#eval "$(opam env)" echo "BAT: $(apm -l), $(apm -b)" set -o vi -export PS1='\W \$ ' +eval "$(direnv hook bash)" + +PS1='${PWD##*/} $(isrootprompt) ' eval "$(zoxide init posix --hook prompt)" -#[[ $TERM != "tmux-256color" ]] && exec tmux + + + + +[ $(tty) == "/dev/ttyv0" ] && exec startx |