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:
- zsh
- git
#- hosts: smith
# roles:
# - 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
- mercurial
- tmux
- screen
- hosts: all
roles:
@ -88,9 +65,18 @@
- hosts: all
tasks:
- name: Create symbolic link
- name: Create symbolic link for tmux
file:
src: "/home/zaika/skel/.tmux.conf"
dest: "/home/zaika/.tmux.conf"
state: link
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