25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.

29 satır
478B

  1. #!/usr/bin/fish
  2. {{ansible_managed|comment}}
  3. # keymap
  4. setxkbmap de
  5. xmodmap ~/.Xmodmap
  6. setxkbmap -option caps:hyper
  7. xmodmap ~/.Xmodmap
  8. xkbset nullify lock
  9. # background
  10. xsetroot -solid black
  11. {{background_command}}
  12. # Xresources
  13. xrdb -merge ~/.Xresources
  14. # rofi
  15. rofi -theme ~/.config/rofi/theme -dump-xresources > ~/.config/rofi/config
  16. # screensaver settings
  17. /usr/local/bin/screensaver-settings
  18. # allow hosts
  19. {% for xhost in home_xhosts_allow %}
  20. xhost +{{xhost}}
  21. {% endfor %}