mirror of
https://github.com/roles-ansible/ansible_role_sway.git
synced 2024-08-16 13:49:49 +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
|
||||
# on_startup: false
|
||||
|
||||
i3_run_on_startup: []
|
||||
# - foo
|
||||
# - bar
|
||||
|
||||
i3:
|
||||
font_size: 9
|
||||
|
|
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue