2018-11-17 21:19:09 +01:00
|
|
|
Ansible Thinkpad Setup
|
|
|
|
==========================
|
|
|
|
My Ansible Setup for my Lenovo Thinkpad.
|
|
|
|
|
|
|
|
What is this playbook good for:
|
|
|
|
--------------------------------
|
|
|
|
+ Install common usefull base packages
|
2018-11-21 15:41:56 +01:00
|
|
|
+ Create dotfiles like .bashrc and .vimrc
|
|
|
|
+ Setup and configure I3WM as Window Manager
|
2018-11-17 21:19:09 +01:00
|
|
|
|
|
|
|
Install instructions:
|
|
|
|
-----------------------
|
|
|
|
```bash
|
|
|
|
# Clone Git
|
2019-05-16 17:19:47 +02:00
|
|
|
git clone --recursive https://github.com/DO1JLR/ansible_thinkpad_setup.git ansible_thinkpad_setup
|
2018-11-17 21:19:09 +01:00
|
|
|
cd ansible_thinkpad_setup
|
|
|
|
|
|
|
|
# Download needed submodules
|
|
|
|
git submodule update --init --recursive
|
|
|
|
```
|
|
|
|
|