added separate files for custom functions sourced from .bashrc

added 'commands to look at/remember'
This commit is contained in:
quak
2024-09-25 22:07:40 +02:00
parent 45ae17e7e3
commit 91a4eb30eb
3 changed files with 29 additions and 0 deletions

5
commands/colors.sh Normal file
View File

@@ -0,0 +1,5 @@
show256colors () {
for code in {0..255}; do
echo -e "\e[38;05;${code}m $code: Color";
done
}

15
commands/dunst.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# reset dunst and send notification to Test dUNST config
tunst() {
killall -9 dunst
if [[ -z $1 ]]; then
notify-send "Henlo" "fren of fren of very fren";
else
for n in $(seq 1 $1); do
notify-send "Henlo(${n})" "fren of fren of fren number ${n}";
done
fi
}

View File

@@ -0,0 +1,9 @@
# Commands/Tools to look at
This file documents potentially handy commands and tools to look at or simply remember their existence.
## Potentially useful
* fzf
* tmux
## Remember
* envsubst