├── screenshot.png ├── INSTALL.md ├── config └── config ├── LICENSE ├── install.sh └── README.md /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/terminator/HEAD/screenshot.png -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | ### [Terminator](https://terminator-gtk3.readthedocs.io/en/latest/) 2 | 3 | #### Install using Git 4 | 5 | If you are a git user, you can install the theme and keep up to date by cloning the repo: 6 | 7 | git clone https://github.com/dracula/terminator.git 8 | 9 | #### Install manually 10 | 11 | Download using the [GitHub .zip download](https://github.com/dracula/terminator/archive/master.zip) option and unzip them. 12 | 13 | #### Activating theme 14 | 15 | The installation replaces the original terminator config file. 16 | 17 | To activate, you can run the installation script: 18 | 19 | ./install.sh -------------------------------------------------------------------------------- /config/config: -------------------------------------------------------------------------------- 1 | [global_config] 2 | title_transmit_fg_color = "#282a36" 3 | title_transmit_bg_color = "#50fa7b" 4 | title_receive_fg_color = "#282a36" 5 | title_receive_bg_color = "#ff79c6" 6 | title_inactive_fg_color = "#f8f8f2" 7 | title_inactive_bg_color = "#44475a" 8 | inactive_color_offset = 0.61 9 | suppress_multiple_term_dialog = True 10 | title_hide_sizetext = True 11 | [keybindings] 12 | [layouts] 13 | [[default]] 14 | [[[child1]]] 15 | parent = window0 16 | type = Terminal 17 | [[[window0]]] 18 | parent = "" 19 | type = Window 20 | [plugins] 21 | [profiles] 22 | [[default]] 23 | background_color = "#282a36" 24 | background_image = None 25 | font = Anonymous Pro 12 26 | foreground_color = "#f8f8f2" 27 | palette = "#262626:#e356a7:#42e66c:#e4f34a:#9b6bdf:#e64747:#75d7ec:#efa554:#7a7a7a:#ff79c6:#50fa7b:#f1fa8c:#bd93f9:#ff5555:#8be9fd:#ffb86c" 28 | use_system_font = False 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2021 Dracula Theme 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | current_dir=$(dirname "$0") 4 | config_dir="$HOME/.config/terminator" 5 | 6 | echo "[II] This script will install dracula color theme to Terminator." 7 | echo "[WW] This will replace the current terminator config file after backing it up" 8 | echo "[WW] In order to work dracula theme needs Anonymous Pro font to work" 9 | 10 | function copy_config() { 11 | echo "[II] Applying Dracula theme..." 12 | 13 | if [ -f $config_dir/config ]; then 14 | echo "[II] Backing up old terminator config to $config_dir/config.bkp" 15 | cp $config_dir/config $config_dir/config.bkp 16 | else 17 | mkdir -p $config_dir 18 | fi 19 | 20 | echo "[II] Copying config file to ~/.config/terminator" 21 | cp -rf $current_dir/config/config $config_dir/ 22 | 23 | echo "[II] terminator config updated!" 24 | echo "[II] If you want to edit config, edit $config_dir/config file" 25 | } 26 | 27 | while true; do 28 | read -p "Do you wish to continue? " yn 29 | case $yn in 30 | [Yy]* ) 31 | copy_config 32 | break;; 33 | [Nn]* ) exit;; 34 | * ) echo "Please answer yes or no.";; 35 | esac 36 | done 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dracula for [Terminator](https://terminator-gtk3.readthedocs.io/en/latest/) 2 | 3 | > A dark theme for [Terminator](https://terminator-gtk3.readthedocs.io/en/latest/). 4 | 5 | ![Screenshot](./screenshot.png) 6 | 7 | ## Install 8 | 9 | All instructions can be found at [draculatheme.com/terminator](https://draculatheme.com/terminator). 10 | 11 | ## Team 12 | 13 | This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/dracula/terminator/graphs/contributors). 14 | 15 | | [![Omar E](https://github.com/OmarElebiary.png?size=100)](https://github.com/OmarElebiary) | 16 | | ------------------------------------------------------------------------------------------ | 17 | | [Omar E](https://github.com/OmarElebiary) | 18 | 19 | ## Community 20 | 21 | - [Twitter](https://twitter.com/draculatheme) - Best for getting updates about themes and new stuff. 22 | - [GitHub](https://github.com/dracula/dracula-theme/discussions) - Best for asking questions and discussing issues. 23 | - [Discord](https://draculatheme.com/discord-invite) - Best for hanging out with the community. 24 | 25 | ## License 26 | 27 | [MIT License](./LICENSE) 28 | --------------------------------------------------------------------------------