Wordy is a word spelling puzzle.
You have 6 guesses to find out the secret 5-letter word.
-
If a letter appears green, that means that this letter exists in the secret word, and is in the right position.
-
If a letter appears yellow, that means that this letter exists in the secret word, but is in NOT the right position.
-
If a letter appears red, that means that this letter does NOT appear in the secret word AT ALL.
{width=40} {width=40} {width=35}
As mentioned above, there are 6 guesses to find the secret word.
Through the main menu, the player can
- Start a new game
- Read the game rules
- Check Game Statistics
- Configure Game
- Exit Wordy
While playing, the user can also check out:
- The letters that have been used
- The entire word list
-
This script is using the word list contained in
/usr/share/dict/words
.If your distro doesn't include this installed, you can install the respective package (
wordlist
,words
) using the respective command (apt
,pacman
). -
ADDITIONALLY, if someone wishes to play the game using a different word list, they can do so, through configuring the game.
Either within the game (option 4
of main menu) or just by editing $HOME/.config/wordy/wordy.config
file, the user can configure these two parameters:
n | Variable | Explanation | Acceptable Values | Default Value |
---|---|---|---|---|
1 | WORD_LIST | The word list used in this game | Absolute path of an adequate txt file |
/usr/share/dict/words |
2 | PREFERRED_EDITOR | Editor to be used to open the config file | Any gui or tui text editor | nano |
From a terminal window, clone the repository and change directory to wordy/
git clone https://gitlab.com/christosangel/wordy.git&&cd wordy/
To run the script from any directory, it has to be made executable, and then copied to $PATH
:
chmod +x install.sh&&./install.sh
Just run:
wordy.sh
or from the same directory:
wordy.sh
This TUI game was inspired by wordle
There is another project that might interest you:
https://gitlab.com/christosangel/wordle-solver
Have fun!