Clone shirenn's configuration
This commit is contained in:
24
roles/notification/tasks/main.yml
Normal file
24
roles/notification/tasks/main.yml
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
|
||||
- name: Queries package manager for notification installation
|
||||
package:
|
||||
name:
|
||||
- dunst
|
||||
- gnome-icon-theme
|
||||
- gnome-icon-theme-extras
|
||||
- gnome-icon-theme-symbolic
|
||||
register: pkg_result
|
||||
retries: 3
|
||||
until: pkg_result is succeeded
|
||||
become: yes
|
||||
|
||||
- name: Create dunst config directory
|
||||
file:
|
||||
path: '.config/dunst/'
|
||||
state: directory
|
||||
|
||||
- name: Copy dunst configuration file
|
||||
template:
|
||||
src: 'dunstrc.j2'
|
||||
dest: '.config/dunst/dunstrc'
|
||||
|
Reference in New Issue
Block a user