Massive user refactor

This commit is contained in:
2020-04-22 18:04:16 -06:00
parent 429dd8e5a7
commit 5a9254097e
26 changed files with 896 additions and 123 deletions

15
user/tasks/manjaro.yml Normal file
View File

@@ -0,0 +1,15 @@
---
# Manjaro Hack, alter ~/.bashrc
- name: Adding bash prompt for Manjaro Linux
lineinfile:
path: '{{ "~" + user | expanduser }}/.bashrc'
line: 'source /etc/profile.d/bash_prompt.sh'
create: yes
when: user != 'root'
- # Manjaro symlink ~/.vim
- name: Symlinking ~/.vim to /etc/vim
file:
src: /etc/vim
dest: '{{ "~" + user | expanduser }}/.vim'
state: link