mirror of
https://github.com/roles-ansible/ansible_role_i3wm.git
synced 2024-08-16 10:09:53 +02:00
diable screen saver
This commit is contained in:
parent
a0ccda1c09
commit
1ab6e06918
3 changed files with 8 additions and 2 deletions
|
@ -39,3 +39,5 @@ i3wm_user: "{{ ansible_user_id }}"
|
||||||
submodules_versioncheck: true
|
submodules_versioncheck: true
|
||||||
|
|
||||||
i3wm_copy_wallpapers: true
|
i3wm_copy_wallpapers: true
|
||||||
|
|
||||||
|
disable_screensaver: true
|
||||||
|
|
|
@ -160,7 +160,11 @@ exec sleep 2 && xrandr {% for monitor in i3_monitors %} --output {{ monitor.outp
|
||||||
exec_always feh --bg-scale {{ i3_desktop_background }}
|
exec_always feh --bg-scale {{ i3_desktop_background }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if disable_screensaver | bool %}
|
||||||
|
# Disable screensaver by default
|
||||||
|
exec xset s off
|
||||||
|
exec xset -dpms
|
||||||
|
{% endif %}
|
||||||
exec compton
|
exec compton
|
||||||
|
|
||||||
# Start Default Applications
|
# Start Default Applications
|
||||||
|
|
|
@ -33,5 +33,5 @@ __i3_workspaces:
|
||||||
|
|
||||||
user: "{{ i3wm_user }}"
|
user: "{{ i3wm_user }}"
|
||||||
|
|
||||||
playbook_version_number: 9005 # should be over ninethousand
|
playbook_version_number: 9006 # should be over ninethousand
|
||||||
playbook_version_path: '/etc/ansible-version/role-i3wm_chaos-bodensee_github.com.version'
|
playbook_version_path: '/etc/ansible-version/role-i3wm_chaos-bodensee_github.com.version'
|
||||||
|
|
Loading…
Reference in a new issue