mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
17 lines
366 B
YAML
17 lines
366 B
YAML
---
|
|
- name: Install caffeine
|
|
kewlfft.aur.aur:
|
|
use: yay
|
|
name:
|
|
- caffeine-ng
|
|
|
|
- name: Create autostart directory if it doesn't exist
|
|
file:
|
|
path: "{{auto_start_directory}}"
|
|
state: directory
|
|
|
|
- name: Copy caffeine.desktop file to autostart directory
|
|
template:
|
|
src: caffeine.desktop.j2
|
|
dest: "{{auto_start_directory}}caffeine.desktop"
|