Skip to content

Commit

Permalink
Add terminator color scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Feb 27, 2024
1 parent 6cdd564 commit e3daf67
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
46 changes: 46 additions & 0 deletions roles/terminal/files/terminator/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@

[global_config]
window_state = maximise
handle_size = 0
title_hide_sizetext = True
title_transmit_fg_color = "#bd93f9"
title_inactive_fg_color = "#f8f8f2"
title_receive_bg_color = "#282a36"
title_transmit_bg_color = "#282a36"
title_receive_fg_color = "#8be9fd"
tab_position = hidden
title_inactive_bg_color = "#282a36"
[keybindings]
[profiles]
[[default]]
scrollbar_position = hidden
palette = "#000000:#ff5555:#50fa7b:#f1fa8c:#bd93f9:#ff79c6:#8be9fd:#bbbbbb:#555555:#ff5555:#50fa7b:#f1fa8c:#bd93f9:#ff79c6:#8be9fd:#ffffff"
font = Ubuntu Mono 10
background_image = None
cursor_shape = underline
use_system_font = False
cursor_color = "#bbbbbb"
foreground_color = "#f8f8f2"
update_records = False
login_shell = True
copy_on_selection = True
background_color = "#1e1f29"
cursor_blink = False
scrollback_infinite = True
[[terminator_default]]
palette = "#44475a:#ff5555:#50fa7b:#ffb86c:#3465a4:#ff79c6:#f1fa8c:#44475a:#44475a:#ff5555:#50fa7b:#ffb86c:#729fcf:#ad7fa8:#f1fa8c:#44475a"
copy_on_selection = True
background_color = "#282a36"
background_image = None
foreground_color = "#f8f8f2"
[layouts]
[[default]]
[[[child1]]]
type = Terminal
parent = window0
profile = default
command = ""
[[[window0]]]
type = Window
parent = ""
[plugins]
13 changes: 13 additions & 0 deletions roles/terminal/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@
state: present
become: "{{ become_root }}"

- name: Create ~/.config/terminator folder
ansible.builtin.file:
path: "{{ home_folder }}/.config/terminator"
state: directory
mode: '755'

- name: Copy terminator config file
when: ansible_distribution != 'MacOSX'
ansible.builtin.copy:
src: files/terminator/config
dest: "{{ home_folder }}/.config/terminator/"
mode: preserve

- name: Install iterm2
when: ansible_distribution == 'MacOSX'
ansible.builtin.include_tasks:
Expand Down

0 comments on commit e3daf67

Please sign in to comment.