You can not select more than 25 topics 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.

29 line
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 %}