This commit is contained in:
Arthur Khachaturov 2024-08-29 23:31:26 +03:00
parent b2d18d1116
commit 970dfed3b2
No known key found for this signature in database
GPG key ID: CAC2B7EB6DF45D55
4 changed files with 5 additions and 3 deletions

View file

@ -75,6 +75,7 @@ alias .......="cd ../../../../../../"
alias rz="exec zsh" alias rz="exec zsh"
alias venv="source src_venv" alias venv="source src_venv"
alias ex="source src_example" alias ex="source src_example"
alias ap="source src_add_path"
alias info="pinfo " alias info="pinfo "
alias bat="batcat " alias bat="batcat "
alias img="nsxiv " alias img="nsxiv "

View file

@ -0,0 +1,3 @@
export PATH="$1:$PATH"
# vim: ft=sh

View file

@ -1,5 +1,3 @@
#!/bin/bash
clear clear
echo "\$ $*" echo "\$ $*"
echo echo

View file

@ -59,4 +59,4 @@ case "${OPERATION}" in
r) [ -d "${VENV_FOLDER}" ] && remove || help >&2;; r) [ -d "${VENV_FOLDER}" ] && remove || help >&2;;
esac esac
# vim: set ft=sh # vim: ft=sh