mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2024-11-22 20:03:14 +00:00
242 lines
14 KiB
Markdown
242 lines
14 KiB
Markdown
# Pokemon-Terminal
|
|
|
|
[![Build Status](https://travis-ci.org/LazoCoder/Pokemon-Terminal.svg?branch=master)](https://travis-ci.org/LazoCoder/Pokemon-Terminal)
|
|
|
|
<p align="center">
|
|
<img src="https://i.imgur.com/n34fXyp.png" width="700"/> <!--Pikachu-->
|
|
<img src="https://i.imgur.com/bLajJfw.png" width="430"/> <!--Bulbasaur-->
|
|
<img src="https://i.imgur.com/ZzQhJuE.png" width="430"/> <!--Squirtle-->
|
|
<img src="https://i.imgur.com/54fvKOQ.png" width="430"/> <!--Charizard-->
|
|
<img src="https://i.imgur.com/xaHPMUd.png" width="430"/> <!--Eevee-->
|
|
<img src="https://i.imgur.com/W41EHr2.png" width="430"/> <!--Clefairy-->
|
|
<img src="https://i.imgur.com/QjqQ6QQ.png" width="430"/> <!--Magikarp-->
|
|
<img src="https://i.imgur.com/K7G2VW4.png" width="430"/> <!--Machop-->
|
|
<img src="https://i.imgur.com/3z1WtCu.png" width="430"/> <!--Slowpoke-->
|
|
<img src="https://i.imgur.com/u8cYbFp.png" width="430"/> <!--Muk-->
|
|
<img src="https://i.imgur.com/54Ehhnk.png" width="430"/> <!--Porygon-->
|
|
<img src="https://i.imgur.com/XEOwCXr.png" width="430"/> <!--Chansey-->
|
|
<img src="https://i.imgur.com/smvCxHG.png" width="430"/> <!--Growlithe-->
|
|
<img src="https://i.imgur.com/ZR5h5dZ.png" width="430"/> <!--Scyther-->
|
|
<img src="https://i.imgur.com/I4TakUm.png" width="430"/> <!--Omanyte-->
|
|
<img src="https://i.imgur.com/165hq6O.png" width="430"/> <!--Corsola-->
|
|
<img src="https://i.imgur.com/H0AhgW5.png" width="430"/> <!--Mewtew-->
|
|
<img src="https://i.imgur.com/jF2DMqO.png" width="430"/> <!--Azumarill-->
|
|
<img src="https://i.imgur.com/G0LpD66.png" width="430"/> <!--Snubbull-->
|
|
<img src="https://i.imgur.com/zirtgZq.png" width="430"/> <!--Wobbuffet-->
|
|
<img src="https://i.imgur.com/O49I1gE.png" width="430"/> <!--Tyranitar-->
|
|
<img src="https://i.imgur.com/SCe91Uv.png" width="430"/> <!--Lugia-->
|
|
<img src="https://i.imgur.com/5vllDok.png" width="430"/> <!--Kyogre-->
|
|
<img src="https://i.imgur.com/3YSj8MB.png" width="430"/> <!--Rayquaza-->
|
|
<img src="https://i.imgur.com/YW5pSkZ.png" width="430"/> <!--Deoxys-->
|
|
<!--<br><a href="https://imgur.com/a/0wfFm" target="_blank">More previews</a>-->
|
|
</p>
|
|
|
|
# Features
|
|
- 719 unique Pokemon
|
|
- Select Pokemon by name or by index number
|
|
- Ability to change the Desktop Wallpaper & the Terminal background
|
|
- Internal search system for finding Pokemon
|
|
- Supports iTerm2, ConEmu, Terminology and Tilix terminal emulators
|
|
- Supports Windows, MacOS, GNOME, Openbox (with feh), and i3wm (with feh) for desktops
|
|
|
|
# Installation
|
|
|
|
Install Python 3.6 or higher:
|
|
- [For Mac](https://www.python.org/downloads/mac-osx/)
|
|
- [For Windows](https://www.python.org/downloads/windows/)
|
|
- [For Ubuntu](https://askubuntu.com/a/865569)
|
|
- [For Arch Linux](https://www.archlinux.org/packages/extra/x86_64/python/)
|
|
- Not all compatible distros are named here, but a quick Google search should give you instructions for your distribution of choice.
|
|
|
|
Get a compatible terminal emulator:
|
|
- [iTerm2](https://iterm2.com/)
|
|
- [ConEmu](https://conemu.github.io/) or derivative (such as [Cmder](http://cmder.net/))
|
|
- [Terminology](https://www.enlightenment.org/about-terminology)
|
|
- [Tilix](https://gnunn1.github.io/tilix-web/)
|
|
|
|
You can then proceed with one of the following methods for installation:
|
|
- [Arch Linux User Repository package (System-wide)](https://aur.archlinux.org/packages/pokemon-terminal-git/) (maintained by [@sylveon](https://github.com/sylveon))
|
|
- [pip (System-wide)](#pip-system-wide)
|
|
- [pip (Per-User)](#pip-per-user)
|
|
- [npm (Per-User)](#npm-per-user)
|
|
- [Distutils (System-wide)](#distutils-system-wide)
|
|
|
|
Notes:
|
|
- Linux users: Your distro might include pip in a different package than Python, make sure to have that installed and running when calling `pip3` if you want to install using it.
|
|
- npm installation obviously requires to have [Node.js](https://nodejs.org/) installed.
|
|
|
|
## pip (System-wide)
|
|
|
|
Run `sudo pip3 install git+https://github.com/LazoCoder/Pokemon-Terminal.git` on Linux and macOS or `pip3 install git+https://github.com/LazoCoder/Pokemon-Terminal.git` with administrator permissions on Windows. When the command completes, it's installed and ready to go!
|
|
|
|
## pip (Per-User)
|
|
|
|
You can install it with pip for a single user with `pip3 install --user git+https://github.com/LazoCoder/Pokemon-Terminal.git`. You might want to add `~/.local/bin` on Linux and macOS or `%AppData%\Python\Python3X\Scripts` (replace X by the minor Python version you are running. For example, Python 3.7 users will want `Python37`) on Windows to your PATH to be able to call `pokemon` and `ichooseyou` everywhere.
|
|
|
|
## npm (Per-User)
|
|
|
|
You can install in any (npm-supported) OS using `npm install --global pokemon-terminal`. That's it, you're done!
|
|
|
|
Make sure you also have Python installed, `npm` won't automagically do that for you.
|
|
|
|
## Distutils (System-wide)
|
|
|
|
You can clone or [download](https://github.com/LazoCoder/Pokemon-Terminal/archive/master.zip) this repo, and run `sudo python3 setup.py install` on Linux and macOS or `py -3 setup.py install` with administrator permissions on Windows at the root of the repo.
|
|
|
|
# Usage
|
|
|
|
```
|
|
usage: pokemon [-h] [-n NAME]
|
|
[-r [{kanto,johto,hoenn,sinnoh,unova,kalos} [{kanto,johto,hoenn,sinnoh,unova,kalos} ...]]]
|
|
[-l [0.xx]] [-d [0.xx]]
|
|
[-t [{normal,fire,fighting,water,flying,grass,poison,electric,ground,psychic,rock,ice,bug,dragon,ghost,dark,steel,fairy} [{normal,fire,fighting,water,flying,grass,poison,electric,ground,psychic,rock,ice,bug,dragon,ghost,dark,steel,fairy} ...]]]
|
|
[-ne] [-e] [-ss [X]] [-w] [-v] [-dr] [-c]
|
|
[id]
|
|
|
|
Set a pokemon to the current terminal background or wallpaper
|
|
|
|
positional arguments:
|
|
id Specify the wanted pokemon ID or the exact (case
|
|
insensitive) name
|
|
|
|
optional arguments:
|
|
-h, --help show this help message and exit
|
|
-c, --clear Clears the current pokemon from terminal background
|
|
and quits.
|
|
|
|
Filters:
|
|
Arguments used to filter the list of pokemons with various conditions that
|
|
then will be picked
|
|
|
|
-n NAME, --name NAME Filter by pokemon which name contains NAME
|
|
-r [{kanto,johto,hoenn,sinnoh,unova,kalos} [{kanto,johto,hoenn,sinnoh,unova,kalos} ...]], --region [{kanto,johto,hoenn,sinnoh,unova,kalos} [{kanto,johto,hoenn,sinnoh,unova,kalos} ...]]
|
|
Filter the pokemons by region
|
|
-l [0.xx], --light [0.xx]
|
|
Filter out the pokemons darker (lightness threshold
|
|
lower) then 0.xx (default is 0.7)
|
|
-d [0.xx], --dark [0.xx]
|
|
Filter out the pokemons lighter (lightness threshold
|
|
higher) then 0.xx (default is 0.42)
|
|
-t [{normal,fire,fighting,water,flying,grass,poison,electric,ground,psychic,rock,ice,bug,dragon,ghost,dark,steel,fairy} [{normal,fire,fighting,water,flying,grass,poison,electric,ground,psychic,rock,ice,bug,dragon,ghost,dark,steel,fairy} ...]], --type [{normal,fire,fighting,water,flying,grass,poison,electric,ground,psychic,rock,ice,bug,dragon,ghost,dark,steel,fairy} [{normal,fire,fighting,water,flying,grass,poison,electric,ground,psychic,rock,ice,bug,dragon,ghost,dark,steel,fairy} ...]]
|
|
Filter the pokemons by type.
|
|
-ne, --no-extras Excludes extra pokemons (from the extras folder)
|
|
-e, --extras Excludes all non-extra pokemons
|
|
|
|
Misc:
|
|
-ss [X], --slideshow [X]
|
|
Instead of simply choosing a random pokemon from the
|
|
filtered list, starts a slideshow (with X minutes of
|
|
delay between pokemon) in the background with the
|
|
pokemon that matched the filters
|
|
-w, --wallpaper Changes the desktop wallpaper instead of the terminal
|
|
background
|
|
-v, --verbose Enables verbose output
|
|
-dr, --dry-run Implies -v and doesn't actually changes either
|
|
wallpaper or background after the pokemon has been
|
|
chosen
|
|
|
|
Not setting any filters will get a completely random pokemon
|
|
```
|
|
|
|
Example:
|
|
|
|
![](https://i.imgur.com/DfA2lcd.gif)
|
|
|
|
# Tips, tricks and common issues
|
|
|
|
## iTerm2 settings
|
|
|
|
I highly suggest making the font colors black and the terminal window transparent. Some of the images have both light and dark colours and so it can be difficult to see the text sometimes. Transparency resolves this issue. Since *Pokemon-Terminal* only changes the background, the transparency must be done manually:
|
|
|
|
1. Navigate to iTerm2 > Preferences > Profiles > Window
|
|
2. Set the transparency to about half way.
|
|
3. Hit the "blur" checkbox.
|
|
4. Set the blur to maximum.
|
|
5. Optionally you can set the blending to maximum to adjust the colors to look like the samples provided.
|
|
|
|
![](https://i.imgur.com/xSZAGhL.png)
|
|
|
|
The result should look like this:
|
|
|
|
![](https://i.imgur.com/82DAT97.jpg)
|
|
|
|
## ConEmu settings
|
|
|
|
1. From the menu under the symbol at left of title bar, navigate to Settings > Main > Background
|
|
2. Set Darkening to maximum (255).
|
|
3. Set Placement to Stretch.
|
|
4. Click Save Settings.
|
|
5. Optionally you apply transparency under Features > Transparency.
|
|
|
|
## Adding Custom Images
|
|
|
|
The folder `pokemonterminal/Images/Extra` is for adding custom images. You can manually add backgrounds to this folder and they will be visible to the program. Only JPG format is supported. To see a list of all the custom backgrounds type:
|
|
```bash
|
|
$ pokemon -e -dr
|
|
```
|
|
Alternatively, you can delete images from this folder and it will not break the program. These are some custom backgrounds:
|
|
|
|
![](https://i.imgur.com/gdGUucu.gif)
|
|
|
|
## Solutions for Common Issues
|
|
|
|
* If you experience a line at the top of the terminal after changing the Pokemon, you can remove it by typing in the `clear` command or opening a new terminal.
|
|
![](https://i.imgur.com/5HMu1jD.png)
|
|
|
|
* If you are using Tilix and the terminal background is not changing, try adjusting the transparency in your profile settings.
|
|
* If you are experiencing issues with Terminology and are running on Ubuntu, make sure that you have installed the latest version:
|
|
```bash
|
|
$ sudo add-apt-repository ppa:niko2040/e19
|
|
$ sudo apt-get update
|
|
$ sudo apt install terminology
|
|
```
|
|
* If you get the error `39:46: syntax error: Expected end of line but found identifier. (-2741)`: Locate the file `ITerm.py` in `pokemonterminal/terminal/adapters` and on line 9, change `iTerm` to `iTerm2`. If you still experience the error, try changing it to `iTerm 2`.
|
|
|
|
## Saving
|
|
|
|
### iTerm2
|
|
I have not yet implemented a way to save the terminal background to a profile. To save a background you will need to setup a startup command in the profile.
|
|
1. Navigate to iTerm2 > Preferences > General
|
|
2. Locate the field where it says *Send text at start* under *Command*.
|
|
3. In that field type `pokemon -n [pokemon name]`. You can see an example in the image down below.
|
|
- Alternatively you can also type `pokemon` for a random theme each time you open up a new terminal.
|
|
4. You can leave out `; clear` if you don't care about the line showing up at the top of the terminal.
|
|
|
|
![](https://i.imgur.com/2d4qa9j.png)
|
|
|
|
### ConEmu
|
|
After setting your desired pokemon, from the menu under the symbol at left of title bar, navigate to Settings > Main > Background and click Save Settings.
|
|
|
|
### Terminology
|
|
Terminology already saves it automatically, just untick "temporary" in the settings after setting your desired Pokemon:
|
|
![](http://i.imgur.com/BTqYXKa.png)
|
|
|
|
To show a random Pokemon each session:
|
|
1. Open `~/.bashrc` in your favorite text editor.
|
|
2. Add the following lines to it:
|
|
```bash
|
|
if [[ "$TERMINOLOGY" -eq "1" ]]; then
|
|
pokemon
|
|
fi
|
|
```
|
|
That will simply pick a completely random Pokemon each session, but the `pokemon` line is simply calling the app, so you can still filter with regions, darkness, and etc. like you normally would, or you can also reset to a preset Pokemon every time you start.
|
|
|
|
# Notes & Credits
|
|
|
|
- Nearly all of the Pokemon backgrounds were created by [Teej](https://pldh.net/gallery/the493).
|
|
- Originally the images were about 100mb in total but [ImageOptim](https://imageoptim.com/) was used to compress them down to about 17mb.
|
|
- Since the images are compressed, some of them may have some mild (but negligible) compression artifacts.
|
|
- Thanks to [@DrMartinLutherXing](https://github.com/DrMartinLutherXing) for some bug fixes.
|
|
- Thanks to [@joanbono](https://github.com/joanbono) for the easy installation script in the readme.
|
|
- Thanks to [@BnMcG](https://github.com/BnMcG) for the region specific randomize function.
|
|
- Thanks to [@samosaara](https://github.com/samosaara) for the Linux (GNOME and Terminology) port.
|
|
- Thanks to [@sylveon](https://github.com/sylveon) for maintaining the AUR package.
|
|
- Thanks to [@therealklanni](https://github.com/therealklanni) for adding the project to npm.
|
|
- Thanks to [@MattMattV](https://github.com/MattMattV) for adding Tilix support.
|
|
- Thanks to [@connordinho](https://github.com/connordinho) for enhancing the slideshow functionality.
|
|
- Thanks to [@cclauss](https://github.com/cclauss) for simplifying the code in the database class and the main class.
|
|
- Thanks to [@Fiskie](https://github.com/Fiskie) for implementing the adapter design pattern, piping commands and more.
|
|
- Thanks to [@marcobiedermann](https://github.com/marcobiedermann) for better image compression.
|
|
- Thanks to [@kamil157](https://github.com/kamil157) and [@dosman711](https://github.com/dosman711) for the randomized slideshow function.
|
|
- Thanks to [@Squirrels](https://github.com/Squirrels) for adding Pokemon from the Unova and Kalos regions.
|
|
- Thanks to [@caedus75](https://github.com/caedus75) for pip and reorganizing the files & folders.
|