mirror of https://gitlab.com/dabruh/dotfiles.git
12 lines
346 B
Bash
Executable File
12 lines
346 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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." &
|
|
alacritty --class bible -e bash -c "echo '$VERSE' | less" &
|