irantu (#113)
caps lock programme nextcloud client Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#113 Co-Authored-By: mg <mg@noreply.git.mgrote.net> Co-Committed-By: mg <mg@noreply.git.mgrote.net>
This commit is contained in:
parent
2e8ca048a8
commit
78881d210f
5 changed files with 20 additions and 0 deletions
|
@ -25,3 +25,6 @@
|
|||
- smartmontools
|
||||
- lm-sensors
|
||||
- ethtool
|
||||
- nextcloud-desktop
|
||||
- gnome-tweaks
|
||||
- powertop
|
||||
|
|
|
@ -3,3 +3,4 @@
|
|||
roles:
|
||||
- { role: mgrote.i3, tags: "i3", become: true }
|
||||
- { role: mgrote.polybar, tags: "polybar", become: true }
|
||||
- { role: mgrote.deactivate_caps, tags: "caps", become: true }
|
||||
|
|
4
roles/mgrote.deactivate_caps/handlers/main.yml
Normal file
4
roles/mgrote.deactivate_caps/handlers/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- name: deactivate caps
|
||||
become: true
|
||||
ansible.builtin.shell: setxkbmap -option caps:none
|
4
roles/mgrote.deactivate_caps/readme.md
Normal file
4
roles/mgrote.deactivate_caps/readme.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
## mgrote.deactivate_caps
|
||||
|
||||
### Beschreibung
|
||||
deaktiviert bei einem x11-desktop caps-lock.
|
8
roles/mgrote.deactivate_caps/tasks/main.yml
Normal file
8
roles/mgrote.deactivate_caps/tasks/main.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
- name: install packages
|
||||
become: yes
|
||||
ansible.builtin.package:
|
||||
name:
|
||||
- x11-xkb-utils
|
||||
state: present
|
||||
notify: deactivate caps
|
Loading…
Reference in a new issue