1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_i3wm.git synced 2024-08-16 10:09:53 +02:00
ansible_role_i3wm/README.md
2019-06-24 15:33:51 +02:00

90 lines
2.2 KiB
Markdown

I3 Window Manager - ansible role
=========================================
*Install and deploy a basic configuration of [I3 Window Manager](https://i3wm.org/) via ansible.*
[![Build Status](https://travis-ci.org/chaos-bodensee/role-i3wm.svg?branch=master)](https://travis-ci.org/chaos-bodensee/role-i3wm)
<a href="https://galaxy.ansible.com/do1jlr/i3wm"><img width="80px" src="https://galaxy.ansible.com/assets/galaxy-logo-02.svg"/></a>
### Get it directly from Ansible Galaxy
```bash
$ ansible-galaxy install do1jlr.i3wm
```
Requirements
------------
No requirements.
Role Variables
--------------
For a good overview about possible variables, please have a look into ``defaults/main.yml``.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
```bash
- hosts: all
vars_files:
- vars/main.yml
roles:
- { role: i3 }
```
*`vars/main.yml`*
```bash
# background image
i3_desktop_background: "~/Bilder/wallpaper.jpg"
# additional programms you need
i3_packages_extra:
- ranger
# you want additional keybindings?
i3_keybindings_extra:
- keybinding:
name: Volume (mute/unmute)
key: $mod+F12
exec: --no-startup-id amixer sset Master toggle
- keybinding:
name: Volue (default)
key: $mod+Shift+F12
exec: --no-startup-id amixer sset Master 40%
# how your monitors are configured
i3_monitors:
- monitor:
id: 1
output: "VGA-1"
mode: "1920x1080"
pos: "0x0"
rotate: "normal"
workspaces: [1,2,3,4,5,6]
- monitor:
id: 2
output: "HDMI-1"
mode: "1920x1080"
pos: "1920x0"
rotate: "normal"
workspaces: [7,8,9,0]
# startup applications
i3_applications:
- application:
class: "Firefox"
name: "firefox"
workspace: 1
on_startup: false
- application:
class: "Code"
name: "code"
workspace: 7
on_startup: true
# lock your screen after 3 hours
enable_lock_after_time: true
```