您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

xsession.reload.fish.j2 478B

4 年前
4 年前
3 年前
12345678910111213141516171819202122232425262728
  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 %}