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

29 行
525B

  1. ---
  2. - name: remove old binaries
  3. file:
  4. path: ~/bin/{{item}}
  5. state: absent
  6. loop:
  7. - etx
  8. - i3-watchers
  9. - in2qr
  10. - on-focus-workspace
  11. - on-space-shortcut
  12. - pipe-watcher
  13. - select-screenlayout
  14. - timer
  15. - name: stop lockscreen-auto systemd user service
  16. systemd:
  17. name: lockscreen-auto.service
  18. state: stopped
  19. scope: user
  20. enabled: false
  21. - name: remove lockscreen-auto systemd user service
  22. file:
  23. path: ~/.config/systemd/user/lockscreen-auto.service
  24. state: absent