dotfiles/.local/bin/randverse

16 lines
386 B
Bash
Executable File

#!/bin/bash
# randverse
#
# Display a random Bible verse.
BIBLE=~/.local/share/dabruh/bible.txt
LINES="$(wc -l <"$BIBLE")"
LINE=$(( RANDOM % LINES + 2 )) # + 2 to skip first line
VERSE="$(sed -n "${LINE}p" "$BIBLE")"
echo "$VERSE"
printf '%s' "$VERSE" | xclip -selection clipboard
notify-send "Bible verse copied to clipboard." &
kitty --title bible bash -c "echo '$VERSE' | less" &