No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Este repositorio está archivado. Puede ver los archivos y clonarlo, pero no puede subir cambios o reportar incidencias ni pedir Pull Requests.

34 líneas
649B

  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. xset s on
  18. xset +dpms
  19. xset s {{ lockscreen_timeout | int }} {{ lockscreen_locktime | int }}
  20. # DPMS options
  21. xset dpms {{ display_sleeptime | int }} {{ display_sleeptime | int }} {{ display_sleeptime | int }}
  22. # allow hosts
  23. {% for xhost in home_xhosts_allow %}
  24. xhost +{{xhost}}
  25. {% endfor %}