Add wallpaper to i3 role
This commit is contained in:
parent
2ede2d2822
commit
8593a85819
6 changed files with 38 additions and 8 deletions
|
@ -1,3 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
curl -s "$(curl -sL https://c.xkcd.com/random/comic | grep 'Image URL' | awk -F\" '{print $2}')" -o ~/Pictures/xkcd-wallpaper.png
|
|
@ -9,4 +9,4 @@ clitip() {
|
|||
xmlstarlet unesc | fmt -80 | iconv -t US
|
||||
}
|
||||
|
||||
clitip | convert -background "#222222" -fill "#237856" -size 1980x1200 -pointsize 30 -gravity center -font JetBrains-Mono-Regular label:@- ~/Pictures/clitip-wallpaper.png
|
||||
clitip | convert -background "#222222" -fill "#237856" -size 1980x1200 -pointsize 30 -gravity center -font JetBrains-Mono-Regular label:@- ~/Pictures/wallpapers/clitip-wallpaper.png
|
3
roles/i3/files/xkcd_wallpaper.sh
Executable file
3
roles/i3/files/xkcd_wallpaper.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
curl -s "$(curl -sL https://c.xkcd.com/random/comic | grep 'Image URL' | awk -F\" '{print $2}')" -o ~/Pictures/wallpapers/xkcd-wallpaper.png
|
|
@ -48,10 +48,15 @@
|
|||
- { repo: 'https://github.com/addy-dclxvi/i3-starterpack.git', dest: '~/.git_clones/i3-starterpack' }
|
||||
- { repo: 'https://github.com/vivien/i3blocks-contrib.git', dest: '~/.git_clones/i3blocks-contrib' }
|
||||
|
||||
- name: Copy i3 config
|
||||
template:
|
||||
src: i3config.j2
|
||||
dest: ~/.config/i3/config
|
||||
backup: true
|
||||
|
||||
- name: Copy files
|
||||
copy: src={{ item.src }} dest={{ item.dest }} backup=true
|
||||
with_items:
|
||||
- { src: 'i3config', dest: '~/.config/i3/config' }
|
||||
- { src: 'i3blocksconfig', dest: '~/.config/i3blocks/config' }
|
||||
- { src: 'xinitrc', dest: '~/.xinitrc' }
|
||||
- { src: 'xserverrc', dest: '~/.xserverrc' }
|
||||
|
@ -87,6 +92,8 @@
|
|||
- { src: 'battery', dest: '~/.config/i3blocks/scripts/battery' }
|
||||
- { src: 'free_disk_space', dest: '~/.config/i3blocks/scripts/free_disk_space' }
|
||||
- { src: 'pub-ip', dest: '~/.config/i3blocks/scripts/pub-ip' }
|
||||
- { src: 'clitip_wallpaper.sh', dest: '~/.local/bin/clitip_wallpaper.sh' }
|
||||
- { src: 'xkcd_wallpaper.sh', dest: '~/.local/bin/xkcd_wallpaper.sh' }
|
||||
|
||||
- name: Copy scripts (Archlinux)
|
||||
copy: src={{ item.src }} dest={{ item.dest }} mode=0755 backup=true
|
||||
|
@ -114,3 +121,22 @@
|
|||
become: true
|
||||
shell: cd {{ ansible_facts.user_dir }}/.git_clones/i3blocks && make install
|
||||
when: ansible_facts['distribution'] == 'Debian'
|
||||
|
||||
- name: Uncomment wallpaper lines for clitip or xkcd
|
||||
lineinfile:
|
||||
path: ~/.config/i3/config
|
||||
regexp: "{{ item }}"
|
||||
line: '\1'
|
||||
backrefs: true
|
||||
with_items:
|
||||
- '^#(exec .*wallpaper\.sh$)'
|
||||
- '^#(exec .* hsetroot -center .*\.png$)'
|
||||
when: wallpaper_type != 'fixed'
|
||||
|
||||
- name: Uncomment wallpaper lines for fixed
|
||||
lineinfile:
|
||||
path: ~/.config/i3/config
|
||||
regexp: '^#(exec .* hsetroot -cover .*current$)'
|
||||
line: '\1'
|
||||
backrefs: true
|
||||
when: wallpaper_type == 'fixed'
|
||||
|
|
|
@ -9,9 +9,9 @@ font pango: Noto Sans 9
|
|||
floating_modifier $super
|
||||
|
||||
#autostart
|
||||
#exec --no-startup-id ~/setup-cockpit/dotfiles/xkcd_wallpaper.sh
|
||||
#exec --no-startup-id hsetroot -center ~/Pictures/xkcd-wallpaper.png
|
||||
exec --no-startup-id hsetroot -cover ~/Pictures/wallpapers/current
|
||||
#exec --no-startup-id ~/.local/bin/{{ wallpaper_type }}_wallpaper.sh
|
||||
#exec --no-startup-id hsetroot -center ~/Pictures/wallpapers/{{ wallpaper_type }}-wallpaper.png
|
||||
#exec --no-startup-id hsetroot -cover ~/Pictures/wallpapers/current
|
||||
exec --no-startup-id xsettingsd &
|
||||
exec --no-startup-id picom -b --config ~/.config/picom.conf
|
||||
|
4
roles/i3/vars/main.yml
Normal file
4
roles/i3/vars/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
# wallpaper_type: xkcd
|
||||
# wallpaper_type: clitip
|
||||
wallpaper_type: fixed
|
Loading…
Add table
Reference in a new issue