mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2025-12-27 09:48:44 +00:00
fixes with linter
This commit is contained in:
parent
932046cc39
commit
66109effc5
20 changed files with 124 additions and 111 deletions
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
# shell
|
||||
- ansible.builtin.import_tasks: bash.yml
|
||||
- name: Import bash config
|
||||
ansible.builtin.import_tasks: bash.yml
|
||||
|
||||
# copy to modify during install ??
|
||||
- name: Link fish configuration directory
|
||||
|
|
@ -39,6 +39,7 @@
|
|||
manager: auto
|
||||
|
||||
- name: Update fish path to include scripts folder
|
||||
ansible.builtin.shell:
|
||||
cmd: echo 'fish_add_path {{ ansible_env.HOME }}/.bin'
|
||||
when: "'fish' in ansible_facts.packages"
|
||||
ansible.builtin.shell: fish_add_path {{ ansible_env.HOME }}/.bin
|
||||
args:
|
||||
executable: /usr/bin/fish
|
||||
changed_when: true # change is checked inside fish_add_path
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
dest: '{{ ansible_env.HOME }}/.alacritty.toml'
|
||||
state: link
|
||||
force: true
|
||||
|
||||
|
||||
- name: Link alacritty configuration directory
|
||||
ansible.builtin.file:
|
||||
src: '{{ role_path }}/files/.config/alacritty'
|
||||
|
|
|
|||
|
|
@ -1,21 +1,27 @@
|
|||
- ansible.builtin.import_tasks: bash.yml
|
||||
- name: Bash config
|
||||
ansible.builtin.import_tasks: bash.yml
|
||||
when: "'bash' in configure"
|
||||
|
||||
- ansible.builtin.import_tasks: cli.yml
|
||||
- name: Common cli tools config
|
||||
ansible.builtin.import_tasks: cli.yml
|
||||
when: "'cli' in configure"
|
||||
|
||||
- ansible.builtin.import_tasks: git.yml
|
||||
- name: Git config
|
||||
ansible.builtin.import_tasks: git.yml
|
||||
when: "'git' in configure"
|
||||
|
||||
- ansible.builtin.import_tasks: ssh.yml
|
||||
- name: Ssh config
|
||||
ansible.builtin.import_tasks: ssh.yml
|
||||
when: "'ssh' in configure"
|
||||
|
||||
- ansible.builtin.import_tasks: gui.yml
|
||||
- name: GUI programs config
|
||||
ansible.builtin.import_tasks: gui.yml
|
||||
when: "'gui' in configure"
|
||||
|
||||
- ansible.builtin.import_tasks: scripts.yml
|
||||
- name: Script dirs config
|
||||
ansible.builtin.import_tasks: scripts.yml
|
||||
when: "'scripts' in configure"
|
||||
|
||||
- ansible.builtin.import_tasks: de.yml
|
||||
- name: Desctop envionment config
|
||||
ansible.builtin.import_tasks: de.yml
|
||||
when: "'de' in configure"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue