2019-05-28 21:43:56 +01:00
|
|
|
- name: "Install shell packages"
|
2019-03-14 21:34:29 +00:00
|
|
|
aur:
|
|
|
|
skip_installed: true
|
|
|
|
name: "{{ item }}"
|
|
|
|
become: true
|
|
|
|
become_user: aur_builder
|
|
|
|
when: "item not in installed_packages.stdout_lines"
|
|
|
|
with_items:
|
|
|
|
- 'advanced-ssh-config'
|
|
|
|
- 'alacritty'
|
2019-10-12 20:26:10 +01:00
|
|
|
- 'alacritty-terminfo'
|
2019-05-28 21:43:56 +01:00
|
|
|
- arch-install-scripts
|
2019-03-14 21:34:29 +00:00
|
|
|
- 'bat'
|
|
|
|
- 'catimg'
|
|
|
|
- 'climate'
|
|
|
|
- 'exa'
|
|
|
|
- 'fasd'
|
|
|
|
- 'fd'
|
2019-11-04 20:09:04 +00:00
|
|
|
- 'fpp'
|
2019-03-14 21:34:29 +00:00
|
|
|
- 'htop'
|
|
|
|
- 'jshon'
|
2019-05-26 20:40:14 +01:00
|
|
|
- 'jq'
|
2019-03-14 21:34:29 +00:00
|
|
|
- 'nnn'
|
|
|
|
- 'oh-my-zsh-git'
|
|
|
|
- 'perl-file-mimeinfo'
|
|
|
|
- 'pigz'
|
|
|
|
- 'playerctl'
|
|
|
|
- 'reptyr'
|
|
|
|
- 'ripgrep'
|
|
|
|
- 'scrcpy'
|
|
|
|
- 'screenfetch'
|
2019-10-03 17:38:52 +01:00
|
|
|
- 'speedtest-cli'
|
2019-03-14 21:34:29 +00:00
|
|
|
- 'sl'
|
|
|
|
- 'terminator'
|
|
|
|
- 'thefuck'
|
|
|
|
- 'tmux'
|
2019-05-12 11:49:20 +01:00
|
|
|
- 'ruby-tmuxinator'
|
2019-11-04 20:09:04 +00:00
|
|
|
- 'xsel'
|
2019-03-14 21:34:29 +00:00
|
|
|
- 'zsh'
|
|
|
|
- 'zsh-completions'
|
|
|
|
- 'zsh-doc'
|
|
|
|
- 'zsh-syntax-highlighting'
|
|
|
|
|
|
|
|
|
2019-05-25 16:50:09 +01:00
|
|
|
- name: Install ZSH config
|
|
|
|
template:
|
2018-09-10 20:08:35 +01:00
|
|
|
src: ./files/zshrc/.zshrc
|
2018-09-17 17:22:15 +01:00
|
|
|
dest: "{{ home }}/.zshrc"
|
2018-09-10 20:08:35 +01:00
|
|
|
mode: 0644
|
2018-09-17 17:22:15 +01:00
|
|
|
owner: "{{ user }}"
|
2018-09-14 09:00:06 +01:00
|
|
|
validate: "zsh -n %s"
|
2018-09-18 13:19:31 +01:00
|
|
|
backup: true
|
|
|
|
trim_blocks: false
|
2018-09-10 20:08:35 +01:00
|
|
|
|
2019-05-25 16:50:09 +01:00
|
|
|
- name: Install global environmetn variables
|
|
|
|
template:
|
2018-09-10 20:08:35 +01:00
|
|
|
src: ./files/global-environment
|
|
|
|
dest: /etc/environment
|
|
|
|
mode: 0644
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
|
2019-05-25 16:50:09 +01:00
|
|
|
- name: Install tmux config
|
|
|
|
template:
|
2018-09-10 20:08:35 +01:00
|
|
|
src: ./files/tmux.conf
|
2018-09-17 17:22:15 +01:00
|
|
|
dest: "{{ home }}/.tmux.conf"
|
2018-09-10 20:08:35 +01:00
|
|
|
mode: 0755
|
2018-09-17 17:22:15 +01:00
|
|
|
owner: "{{ user }}"
|
2018-09-10 20:08:35 +01:00
|
|
|
group: users
|
2018-12-03 22:00:17 +00:00
|
|
|
|
2019-11-04 20:09:04 +00:00
|
|
|
- name: Install tmux packages
|
2019-05-25 16:50:09 +01:00
|
|
|
git:
|
2019-11-04 20:09:04 +00:00
|
|
|
repo: "{{ item }}"
|
|
|
|
dest: "{{ home }}/.tmux/plugins/{{ item.split('/')[-1] }}"
|
2018-12-03 22:00:17 +00:00
|
|
|
force: true
|
|
|
|
become: true
|
|
|
|
become_user: "{{ user }}"
|
2019-11-04 20:09:04 +00:00
|
|
|
with_items:
|
|
|
|
- https://github.com/jimeh/tmux-themepack
|
|
|
|
- https://github.com/tmux-plugins/tmux-yank
|
|
|
|
- https://github.com/tmux-plugins/tmux-sensible
|
|
|
|
- https://github.com/tmux-plugins/tmux-fpp
|
2019-03-14 21:34:29 +00:00
|
|
|
|
|
|
|
- name: "Create alacritty config directory"
|
|
|
|
file:
|
|
|
|
path: '{{ home }}/.config/alacritty/'
|
|
|
|
state: directory
|
|
|
|
owner: "{{ user }}"
|
|
|
|
mode: 0755
|
|
|
|
|
|
|
|
- name: "Create alacritty config"
|
|
|
|
copy:
|
|
|
|
src: './files/alacritty.yml'
|
|
|
|
dest: '{{ home }}/.config/alacritty/alacritty.yml'
|
|
|
|
mode: 0644
|
|
|
|
owner: "{{ user }}"
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Create terminator directory"
|
|
|
|
file:
|
|
|
|
path: '{{ home }}/.config/terminator/'
|
|
|
|
state: directory
|
|
|
|
owner: "{{ user }}"
|
|
|
|
mode: 0755
|
|
|
|
|
|
|
|
- name: "Create alacritty config"
|
|
|
|
copy:
|
|
|
|
src: './files/terminator.conf'
|
|
|
|
dest: '{{ home }}/.config/terminator/config'
|
|
|
|
mode: 0644
|
|
|
|
owner: "{{ user }}"
|
2019-05-12 11:49:20 +01:00
|
|
|
|
2019-05-25 16:50:09 +01:00
|
|
|
- name: Install tmuxinator config
|
|
|
|
copy:
|
2019-05-12 11:49:20 +01:00
|
|
|
src: ./files/tmuxinator
|
2019-07-30 08:49:17 +01:00
|
|
|
dest: "{{ home }}/.config"
|
|
|
|
mode: 0644
|
2019-05-12 11:49:20 +01:00
|
|
|
owner: "{{ user }}"
|
|
|
|
group: users
|
2019-07-30 08:49:17 +01:00
|
|
|
directory_mode: 0755
|
2019-05-24 22:44:10 +01:00
|
|
|
|
2019-09-04 09:15:04 +01:00
|
|
|
- name: Install custom scripts
|
|
|
|
copy:
|
|
|
|
src: ./files/bin
|
2019-09-04 20:46:45 +01:00
|
|
|
dest: "/usr/local"
|
2019-09-04 09:15:04 +01:00
|
|
|
mode: 0755
|
|
|
|
directory_mode: 0755
|
|
|
|
|
2019-05-24 22:44:10 +01:00
|
|
|
- name: Set vconsole keyboard
|
|
|
|
lineinfile:
|
|
|
|
path: /etc/vconsole.conf
|
|
|
|
state: present
|
|
|
|
line: 'KEYMAP=uk'
|
2019-05-27 16:30:28 +01:00
|
|
|
create: true
|