change from zsh to bash
add alacritty
This commit is contained in:
parent
a63238beca
commit
36806ee77d
13 changed files with 206 additions and 67 deletions
19
roles/bash/tasks/main.yml
Normal file
19
roles/bash/tasks/main.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
- name: Install packages
|
||||
become: true
|
||||
apt:
|
||||
pkg:
|
||||
- fd-find
|
||||
- bat
|
||||
- name: Set default shell to bash
|
||||
become: true
|
||||
user:
|
||||
name: "{{ ansible_user_id }}"
|
||||
shell: /usr/bin/bash
|
||||
- name: Install .bashrc
|
||||
copy:
|
||||
src: "{{ role_path }}/files/bashrc"
|
||||
dest: ~/.bashrc
|
||||
- name: Install .fzf.bash
|
||||
copy:
|
||||
src: "{{ role_path }}/files/fzf.bash"
|
||||
dest: ~/.fzf.bash
|
Reference in a new issue