├── README.md └── img ├── edit-zshrc-file.PNG ├── edited-zshrc-file.PNG ├── find-zshrc-file.PNG ├── hyper-terminal.PNG ├── new-theme.PNG └── opening-linux-terminal.PNG /README.md: -------------------------------------------------------------------------------- 1 | # Guía para cambiar el tema de zsh en Windows 2 | 3 | 1. Abre la consola de Linux (Ubuntu en este caso) y ubícate en home con el comando **cd** **~** 4 | ![Open linux terminal](https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/master/img/opening-linux-terminal.PNG) 5 | 6 | 1. Ubica el archivo .zshrc (este archivo contiene la configuración del tema), para esto ejecuta el comando **ls -la** y se te mostrara una lista como la siguiente, donde se observa el archivo que buscamos en la parte inferior resaltado en rojo. 7 | ![Find zshrc file](https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/master/img/find-zshrc-file.PNG) 8 | 9 | 10 | 1. Modificamos el archivo con el comando **nano .zshrc** 11 | ![Find zshrc file](https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/master/img/edit-zshrc-file.PNG) 12 | 13 | Ejecutamos el comando y nos muestra el editor de archivos, solo hay que cambiar el valor **"robbyrussell”** de la clave **ZSH_THEME** por alguno que te guste de la lista disponible en el siguiente enlace: [Temas para zsh](https://github.com/robbyrussell/oh-my-zsh/wiki/Themes "Temas para zsh") 14 | 15 | En este caso yo lo voy a cambiar por el tema **“af-magic”** entonces queda así: 16 | ![Edited zshrc file](https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/master/img/edited-zshrc-file.PNG) 17 | 18 | 19 | Después de cambiar el nombre del tema presionamos **control + x** y nos preguntara si queremos guardar los cambios, colocamos la letra **Y**, enseguida nos preguntara el nombre del archivo y por defecto nos coloca el nombre por defecto **.zshrc** solo presionamos la tecla de enter y listo. 20 | 21 | Con lo siguiente ya solo necesitamos un comando mas y es **source .zshrc** para recargar la configuración, nuestra terminal ya tendrá el nuevo tema: 22 | ![Edited zshrc file](https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/master/img/new-theme.PNG) 23 | 24 | **nota: si la terminal de hyper no se actualiza simplemente ciérrala y ábrela de nuevo y listo quedara de esta manera:** 25 | ![Edited zshrc file](https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/master/img/hyper-terminal.PNG) 26 | 27 | **Espero que esta guía les sea de utilidad, me ayudarian mucho con 1 estrelita :) saludos y suerte.** 28 | -------------------------------------------------------------------------------- /img/edit-zshrc-file.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/50aed69cd41a80e1fa2373fa34dcf771ea6a9fba/img/edit-zshrc-file.PNG -------------------------------------------------------------------------------- /img/edited-zshrc-file.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/50aed69cd41a80e1fa2373fa34dcf771ea6a9fba/img/edited-zshrc-file.PNG -------------------------------------------------------------------------------- /img/find-zshrc-file.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/50aed69cd41a80e1fa2373fa34dcf771ea6a9fba/img/find-zshrc-file.PNG -------------------------------------------------------------------------------- /img/hyper-terminal.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/50aed69cd41a80e1fa2373fa34dcf771ea6a9fba/img/hyper-terminal.PNG -------------------------------------------------------------------------------- /img/new-theme.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/50aed69cd41a80e1fa2373fa34dcf771ea6a9fba/img/new-theme.PNG -------------------------------------------------------------------------------- /img/opening-linux-terminal.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmexdev/zsh-theme-windows/50aed69cd41a80e1fa2373fa34dcf771ea6a9fba/img/opening-linux-terminal.PNG --------------------------------------------------------------------------------