new wayland system

This commit is contained in:
2024-01-21 20:31:10 +01:00
parent b2552d9d1d
commit 35368bee3c
7 changed files with 109 additions and 32 deletions

16
cowsay.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
conversation=()
# conversation=("Hola dinosaurio" "Hola señora vaca" "Estás muuuuuu guapo" "Tu si que estás guapa" "No, tu" "He dicho que tu" "Eso he dicho yo me cago en mis muertos te voy a comer!" "Te falta valor chaval tu a mi no me conoces!" "ñam!" "~muere~")
for key in "${!conversation[@]}"
do
if test "$(($key % 2))" == "1"; then
python ~/Packages/dinosay/dinosay/dinosay.py -d para "${conversation[$key]}"
sleep 2
else
cowsay "${conversation[$key]}"
sleep 2
fi
clear
done