diff --git a/commands/colors.sh b/commands/colors.sh new file mode 100644 index 0000000..59c1988 --- /dev/null +++ b/commands/colors.sh @@ -0,0 +1,5 @@ +show256colors () { + for code in {0..255}; do + echo -e "\e[38;05;${code}m $code: Color"; + done +} diff --git a/commands/dunst.sh b/commands/dunst.sh new file mode 100644 index 0000000..3f4b359 --- /dev/null +++ b/commands/dunst.sh @@ -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 +} + diff --git a/docs/commands-to-look-at.md b/docs/commands-to-look-at.md new file mode 100644 index 0000000..25c3d02 --- /dev/null +++ b/docs/commands-to-look-at.md @@ -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