Skip to content

Commit 95972d7

Browse files
committed
fix(alacritty/nord): nord theme url and temp patch nord theme
to avoid deprecated message each time terminal is opened see nordtheme/alacritty#31 for resolution
1 parent d7d3845 commit 95972d7

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

ansible/.ansible/dwm/roles/conf/tasks/common.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,16 @@
5959
.#*
6060
6161
- name: Download nord theme alacritty
62-
ansible.builtin.get_url:
63-
url: '{{ nord_alatty_url }}'
64-
dest: '{{ ansible_user_dir }}/.config/alacritty/nord.yml'
62+
block:
63+
- name: Download nord theme
64+
ansible.builtin.get_url:
65+
url: '{{ nord_alatty_url }}'
66+
dest: '{{ ansible_user_dir }}/.config/alacritty/nord.yml'
67+
- name: Temp patch it (lazy upstream)
68+
ansible.builtin.replace:
69+
path: '{{ ansible_user_dir }}/.config/alacritty/nord.yml'
70+
regexp: 'bar:'
71+
replace: 'footer_bar:'
6572

6673
- name: Download and install Hack Nerd Fonts
6774
block:

ansible/.ansible/dwm/roles/conf/vars/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ my_std_xdg_path:
2121
- Pictures/Wallpapers
2222
- Videos/Screencasts
2323

24-
nord_alatty_url: https://raw.githubusercontent.com/arcticicestudio/nord-alacritty/develop/src/nord.yml
24+
nord_alatty_url: https://raw.githubusercontent.com/nordtheme/alacritty/main/src/nord.yaml
2525

2626
font_url: https://raw.githubusercontent.com/ryanoasis/nerd-fonts/master/patched-fonts/Hack/Regular/HackNerdFont-Regular.ttf
2727

0 commit comments

Comments
 (0)