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:
parent
f8e806d865
commit
731bd58d15
2 changed files with 7 additions and 0 deletions
|
@ -21,6 +21,9 @@ i3_applications: []
|
||||||
# workspace: 1 # bind application to a specific workspace
|
# workspace: 1 # bind application to a specific workspace
|
||||||
# on_startup: false
|
# on_startup: false
|
||||||
|
|
||||||
|
i3_run_on_startup: []
|
||||||
|
# - foo
|
||||||
|
# - bar
|
||||||
|
|
||||||
i3:
|
i3:
|
||||||
font_size: 9
|
font_size: 9
|
||||||
|
|
|
@ -169,6 +169,10 @@ exec compton
|
||||||
exec {{ application.name }}
|
exec {{ application.name }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
{% for app in i3_run_on_startup %}
|
||||||
|
exec {{ app }}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
# Register Keybindings
|
# Register Keybindings
|
||||||
{% for keybinding in i3_keybindings %}
|
{% for keybinding in i3_keybindings %}
|
||||||
bindsym {{ keybinding.key }} exec {{ keybinding.exec }}
|
bindsym {{ keybinding.key }} exec {{ keybinding.exec }}
|
||||||
|
|
Loading…
Reference in a new issue