This repository has been archived on 2024-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
setup/roles/i3/tasks/main.yml

54 lines
1.2 KiB
YAML

- name: Install packages
become: true
apt:
pkg:
- i3-wm
- i3status
- i3lock
- rofi
- nitrogen
- xss-lock
- arandr
- autorandr
- brightnessctl
- name: Create i3 config directory
file:
path: ~/.config/i3
state: directory
- name: Copy i3 config
copy:
src: "{{ role_path }}/files/config"
dest: ~/.config/i3/config
- name: Copy scripts directory
copy:
src: "{{ role_path }}/files/scripts"
dest: ~/.config/i3
mode: preserve
- name: Copy wallpapers
copy:
src: "{{ role_path }}/files/wallpapers"
dest: ~/Pictures
- name: Create nitrogen config directory
file:
path: ~/.config/nitrogen
state: directory
- name: Copy nitrogen.cfg
copy:
src: "{{ role_path }}/files/nitrogen.cfg"
dest: ~/.config/nitrogen/nitrogen.cfg
- name: Copy bg-saved.cfg
copy:
src: "{{ role_path }}/files/bg-saved.cfg"
dest: ~/.config/nitrogen/bg-saved.cfg
- name: Handle lid close
become: true
ini_file:
path: /etc/systemd/logind.conf
section: Login
option: HandleLidSwitch
value: suspend
no_extra_spaces: true
- name: Copy autorandr configuration
copy:
src: "{{ role_path }}/files/autorandr/"
dest: ~/.config