Update 2023-10-30 20:13 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id
2023-10-30 20:13:00 +01:00
parent 35a131fe79
commit 09f9fd0045
14 changed files with 56 additions and 2453 deletions

14
.kshrc
View File

@@ -36,7 +36,7 @@ export LANG LC_ALL LC_MESSAGES LC_NUMERIC LC_TIME
### SOFTWARE PREFERENCES
EDITOR="vim"
VISUAL="vim"
BROWSER="vimb"
BROWSER=vimb
PAGER="less"
export EDITOR VISUAL BROWSER PAGER
@@ -110,6 +110,7 @@ export MAKE_JOBS FETCH_PACKAGES
########################################################################
PS1="\h|\${?}\w\\$ "
#PS1="[\h](\${?})(\$PWD)\\$ "
########################################################################
# SHELL SETTINGS
@@ -128,6 +129,7 @@ set bell-style none
alias kshrc="vim ~/.kshrc"
alias muttrc="vim ~/.mutt/rc-common"
alias vimrc="vim ~/.vim/vimrc"
alias vimbrc="vim ~/.config/vimb/config"
alias exrc="vim ~/.exrc"
alias web-update='ssh home.codevoid.de "cd web && make update && make"'
alias web-new='ssh home.codevoid.de "cd web && make new"'
@@ -139,6 +141,16 @@ alias remake="make clean=all && make"
alias refake="rm -f pkg/*.orig; make clean=fake && make fake"
alias reinstall="remake && make reinstall"
make-install() {
make install \
&& doas pkg_add -aa "$(make show=FULLPKGNAME)"
}
make-reinstall() {
remake \
&& doas pkg_add -aa "$(make show=FULLPKGNAME)"
}
# remind
alias rem="clear; remind -c+cu4 -wt ~/.reminders"
alias remy="clear; remind -cu12 -wt ~/.reminders | less -r"