Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Cadastrar
Acessar
ka
/
kita-pro
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
bugfix ibus keyboard
master
Markus Katharina Brechtel
2 anos atrás
pai
48c9dc40b4
commit
a42a5fb261
4 arquivos alterados
com
28 adições
e
0 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+8
-0
desktop-bugfixes.yaml
+5
-0
roles/desktop_bugfixes/files/autostart/bugfix-ibus-keyboard.desktop
+4
-0
roles/desktop_bugfixes/files/bin/bugfix-ibus-keyboard
+11
-0
roles/desktop_bugfixes/tasks/main.yaml
+ 8
- 0
desktop-bugfixes.yaml
Ver arquivo
@@ -0,0 +1,8 @@
---
- hosts:
- desktops
- laptops
remote_user: root
roles:
- name: desktop_bugfixes
+ 5
- 0
roles/desktop_bugfixes/files/autostart/bugfix-ibus-keyboard.desktop
Ver arquivo
@@ -0,0 +1,5 @@
[Desktop Entry]
Name=bugfix-ibus-keyboard
Type=Application
Exec=bugfix-ibus-keyboard
Terminal=true
+ 4
- 0
roles/desktop_bugfixes/files/bin/bugfix-ibus-keyboard
Ver arquivo
@@ -0,0 +1,4 @@
#!/bin/sh
dconf write /desktop/ibus/general/preload-engines "['xkb:de:nodeadkeys:deu']"
echo Tastaturlayout-Bug wurde behoben!
sleep 5
+ 11
- 0
roles/desktop_bugfixes/tasks/main.yaml
Ver arquivo
@@ -1,4 +1,15 @@
---
- name: desktop bugfix commands
copy:
src: bin/
dest: /usr/local/bin/
mode: 0755
- name: desktop autostart
copy:
src: autostart/
dest: /etc/xdg/autostart/
- import_tasks: media-access-bug.yaml
when: desktop_bugfix_media_access_bug | default(false)