change from zsh to bash

add alacritty
This commit is contained in:
Pim Kunis 2023-01-15 15:00:38 +01:00
parent a63238beca
commit 36806ee77d
13 changed files with 206 additions and 67 deletions

19
roles/bash/tasks/main.yml Normal file
View 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