added cheat sheet script. Updated password script to have a title. Updated readme.

This commit is contained in:
2026-06-03 06:18:46 -05:00
parent 2465ec78c2
commit 865140ace6
3 changed files with 19 additions and 1 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/bin/sh
commandList="tea
git
hcloud"
if ! command -v wofi >/dev/null 2>&1; then
echo "wofi is not installed"
exit 1
fi
selection=$(echo "$commandList" | wofi --prompt "Cheat Sheet" --dmenu)
[ -z "$selection" ] && echo "nothing selected"
exit 1