File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 7
7
user : " {{ ansible_user }}"
8
8
9
9
tasks :
10
+ - name : Add the Fastfetch PPA repository
11
+ ansible.builtin.apt_repository :
12
+ repo : ppa:zhangsongcui3371/fastfetch
13
+ state : present
14
+ update_cache : yes
15
+
10
16
- name : Install necessary packages
11
17
apt :
12
18
name :
13
19
- zsh
14
- - neofetch
20
+ - fastfetch
15
21
- fzf
16
22
state : present
17
23
update_cache : yes
20
26
copy :
21
27
dest : " /home/{{ user }}/.zshrc"
22
28
content : |
23
- # Path to your Oh My Zsh installation.
24
29
export ZSH="$HOME/.oh-my-zsh"
25
30
export PATH=$PATH:$HOME/.local/bin
26
31
38
43
# Custom aliases
39
44
alias dcd="docker compose down"
40
45
alias dcu="docker compose up -d"
46
+ alias update="sudo apt update && sudo apt upgrade -y"
47
+
41
48
42
49
# Display system information
43
- neofetch
50
+ fastfetch
44
51
owner : " {{ user }}"
45
52
mode : ' 0644'
46
53
You can’t perform that action at this time.
0 commit comments