Compare commits
3 Commits
benie/gnom
...
30c99c6516
| Author | SHA1 | Date | |
|---|---|---|---|
| 30c99c6516 | |||
| 49b292126e | |||
| 67a37e0a56 |
@@ -1,3 +1,7 @@
|
||||
---
|
||||
- import_playbook: LinuxCLI.yaml
|
||||
- import_playbook: UnixGUI.yaml
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: gnome-shell
|
||||
- role: kitty
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
---
|
||||
- import_playbook: UnixCLI.yaml
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: gdb
|
||||
|
||||
8
roles/gnome-shell/tasks/main.yaml
Normal file
8
roles/gnome-shell/tasks/main.yaml
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
- dconf:
|
||||
# key: /org/gnome/settings-daemon/plugins/media-keys/custom-keybindings
|
||||
key: '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0'
|
||||
state: read
|
||||
register: custom_keybindins
|
||||
|
||||
- debug: msg={{custom_keybindins}}
|
||||
6
roles/kitty/tasks/Debian.yaml
Normal file
6
roles/kitty/tasks/Debian.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
- name: install apt package
|
||||
become: true
|
||||
apt:
|
||||
name: kitty
|
||||
state: latest
|
||||
6
roles/kitty/tasks/RedHat.yaml
Normal file
6
roles/kitty/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
- name: install dnf package
|
||||
become: true
|
||||
dnf:
|
||||
name: kitty
|
||||
state: latest
|
||||
7
roles/kitty/tasks/main.yaml
Normal file
7
roles/kitty/tasks/main.yaml
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||
|
||||
- name: clone config repo
|
||||
git:
|
||||
repo: git@code.infektor.net:config/kitty.git
|
||||
dest: ~/.config/kitty
|
||||
Reference in New Issue
Block a user