add ln -s for .screenrc

This commit is contained in:
zaika 2020-05-30 18:44:21 +03:00
parent 7d20636d6e
commit 579b8e9ac4
1 changed files with 13 additions and 27 deletions

View File

@ -10,32 +10,9 @@
with_items: with_items:
- zsh - zsh
- git - git
- mercurial
#- hosts: smith - tmux
# roles: - screen
# - role: gantsign.oh-my-zsh
# # Default theme
# oh_my_zsh_theme: robbyrussell
# # Default plugins
# oh_my_zsh_plugins:
# - git
# users:
# - username: zaika
# oh_my_zsh:
# theme: powerlevel10k/powerlevel10k
# plugins:
# - git
# - mercurial
# - screen
# - tmux
#- hosts: smith
# tasks:
# - name: Clone Powerline zsh theme
# git:
# repo: https://github.com/romkatv/powerlevel10k.git
# dest: /home/zaika/.oh-my-zsh/themes/powerlevel10k
# become: no
- hosts: all - hosts: all
roles: roles:
@ -88,9 +65,18 @@
- hosts: all - hosts: all
tasks: tasks:
- name: Create symbolic link - name: Create symbolic link for tmux
file: file:
src: "/home/zaika/skel/.tmux.conf" src: "/home/zaika/skel/.tmux.conf"
dest: "/home/zaika/.tmux.conf" dest: "/home/zaika/.tmux.conf"
state: link state: link
become: no become: no
- hosts: all
tasks:
- name: Create symbolic link for screen
file:
src: "/home/zaika/skel/.screenrc"
dest: "/home/zaika/.screenrc"
state: link
become: no