1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_i3wm.git synced 2024-08-16 10:09:53 +02:00

improvement

This commit is contained in:
L3D 2019-02-20 21:02:06 +01:00
parent f8e806d865
commit 731bd58d15
2 changed files with 7 additions and 0 deletions

View file

@ -21,6 +21,9 @@ i3_applications: []
# workspace: 1 # bind application to a specific workspace
# on_startup: false
i3_run_on_startup: []
# - foo
# - bar
i3:
font_size: 9

View file

@ -169,6 +169,10 @@ exec compton
exec {{ application.name }}
{% endfor %}
{% for app in i3_run_on_startup %}
exec {{ app }}
{% endfor %}
# Register Keybindings
{% for keybinding in i3_keybindings %}
bindsym {{ keybinding.key }} exec {{ keybinding.exec }}