mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-22 15:01:59 +01:00
added imv config file
This commit is contained in:
parent
624783b791
commit
3bcb4883fe
@ -47,3 +47,6 @@
|
||||
- role: mpv
|
||||
tags: mpv
|
||||
when: ansible_user_id != 'root'
|
||||
- role: imv
|
||||
tags: imv
|
||||
when: ansible_user_id != 'root'
|
||||
|
4
roles/imv/files/config
Normal file
4
roles/imv/files/config
Normal file
@ -0,0 +1,4 @@
|
||||
[binds]
|
||||
|
||||
# Delete and then close an open image by pressing 'X'
|
||||
<Shift+X> = exec rm "$imv_current_file"; close
|
11
roles/imv/tasks/main.yml
Normal file
11
roles/imv/tasks/main.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
|
||||
- name: create imv config dir
|
||||
file:
|
||||
path: ~/.config/imv
|
||||
state: directory
|
||||
|
||||
- name: copy imv config file
|
||||
copy:
|
||||
src: config
|
||||
dest: ~/.config/imv/
|
Loading…
Reference in New Issue
Block a user