Skip to content

Commit

Permalink
fix(ansible): Fix hardware handler & screensaver
Browse files Browse the repository at this point in the history
  • Loading branch information
oxodao committed Feb 6, 2024
1 parent bb9f96e commit 0908444
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ansible/files/i3
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@ bindsym $mod+space exec --no-startup-id dmenu_run
bindsym $mod+Shift+space floating toggle
bindsym $mod+f fullscreen toggle
bindsym $mod+Return exec --no-startup-id i3-sensible-terminal
bindsym $mod+w exec --no-startup-id firefox

set $ws1 "1"

exec --no-startup-id xset s off
exec --no-startup-id xset s noblank
exec --no-startup-id xset s -dpms
exec --no-startup-id xset -dpms
exec --no-startup-id xset s off

exec --no-startup-id unclutter

exec --no-startup-id firefox --kiosk http://localhost:8039 --foreground -P "default"

bar {
Expand Down
7 changes: 7 additions & 0 deletions ansible/setup-partyhall.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
become: yes
apt:
name: [ 'libvips' ]

- name: 'Adding the user to the serial group'
become: yes
user:
name: '{{ansible_user}}'
groups: ['dialout', 'audio', 'video', 'dip', 'plugdev', 'users', 'netdev', '{{ansible_user}}', 'wheel']

- name: 'Make partyhall dirs'
become: yes
file:
Expand Down

0 comments on commit 0908444

Please sign in to comment.