Added i3lock-fancy-multimonitor (AUR)

master
mandlm 2021-03-17 07:47:31 +01:00
parent 8c3707c845
commit 9865834e16
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
5 changed files with 79 additions and 63 deletions

View File

@ -10,6 +10,7 @@
roles: roles:
- user-account - user-account
- aur-builder
- sudo - sudo
- dotfiles - dotfiles
- git - git
@ -23,7 +24,6 @@
- docker - docker
- xorg - xorg
- gnome-keyring - gnome-keyring
- aur-builder
- zoom - zoom
- git-flow - git-flow
- slack - slack

View File

@ -18,7 +18,7 @@ font pango:DejaVu Sans Mono 11
default_border pixel 1 default_border pixel 1
# Set lock screen # Set lock screen
exec --no-startup-id xautolock -time 20 -locker 'i3lock --color=000000' & exec --no-startup-id xautolock -time 20 -locker 'i3lock-fancy-multimonitor --no-text --blur=0x6' &
# Use pactl to adjust volume in PulseAudio. # Use pactl to adjust volume in PulseAudio.
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10%

View File

@ -64,7 +64,7 @@
lineinfile: lineinfile:
path: "/home/{{ account.name }}/.xprofile" path: "/home/{{ account.name }}/.xprofile"
regexp: "^xsetroot " regexp: "^xsetroot "
line: "xsetroot -solid \"#000000\"" line: 'xsetroot -solid "#000000"'
mode: 0644 mode: 0644
create: yes create: yes
@ -121,3 +121,9 @@
mode: "0644" mode: "0644"
force: yes force: yes
- name: configure i3lock
become_user: "{{ account.name }}"
lineinfile:
path: "/home/{{ account.name }}/.config/i3/config"
regexp: "xautolock"
line: "exec --no-startup-id xautolock -time 20 -locker 'i3lock-fancy-multimonitor --no-text --blur=0x6' &"

View File

@ -0,0 +1,2 @@
dependencies:
- kewlfft.aur

View File

@ -14,11 +14,19 @@
- i3-wm - i3-wm
- i3status - i3status
- xautolock - xautolock
- i3lock
- dmenu - dmenu
- alacritty - alacritty
- flameshot - flameshot
- name: install AUR packages
aur:
name: "{{ item }}"
state: latest
become: yes
become_user: "{{ aur_builder.name }}"
loop:
- i3lock-fancy-multimonitor
- name: configure sddm - name: configure sddm
ini_file: ini_file:
path: /etc/sddm.conf.d/uid.conf path: /etc/sddm.conf.d/uid.conf