update: slightly WIP update with cool features

This commit is contained in:
2026-05-12 19:50:46 +03:00
parent a304ecefcc
commit 9d23965acc
47 changed files with 244 additions and 278 deletions
+12
View File
@@ -107,6 +107,8 @@ alias download='aria2c -x16 -s16'
alias scrcpy-def='scrcpy -S --no-audio -K'
alias share='python3 -m http.server'
alias globalshare='(cd ~/Share && python3 -m http.server)'
alias agrep='ps aux | grep'
# fun aliases
alias mm='unimatrix -f -a -s 92 -l coo -c yellow'
@@ -115,6 +117,13 @@ alias mmbeesquit='unimatrix -f -s 86 -u '\''beesquit'\'' -c yellow'
alias mmsnow='unimatrix -u ❄❆❅᪥𑁍⭒*❄❆❅᪥* -c white -a'
# extra
# functions
meomap() {
for net in "$@"; do
sudo nmap -sn "$net/24"
done
}
# additional aliases
if [ -f "$HOME/.bash_private" ]; then
. "$HOME/.bash_private"
@@ -122,3 +131,6 @@ fi
if [ -f "$HOME/.bash_aliases" ]; then
. "$HOME/.bash_aliases"
fi
if [ -f "$HOME/.bash_prompt" ]; then
. "$HOME/.bash_prompt"
fi