updated some configs

This commit is contained in:
five-hundred-eleven
2024-08-10 12:54:03 -04:00
parent 4da33a77cd
commit 581ce9bceb
4 changed files with 47 additions and 24 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash
set -ex
choices=$(ls *ambience*.mp3)
shuffled=$(printf "%s\n" "${choices[@]}" | shuf -n1)
echo $shuffled
totem ${shuffled[ $RANDOM % ${#shuffled[@]} ]}