add ln -s for .screenrc
This commit is contained in:
parent
7d20636d6e
commit
579b8e9ac4
40
skel.yml
40
skel.yml
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue