added cheat sheet script. Updated password script to have a title. Updated readme.
This commit is contained in:
Executable
+14
@@ -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
|
||||
Reference in New Issue
Block a user