25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

34 lines
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 %}