Add xkcd wallpaper script to fetch a random comic for wallpaper

This commit is contained in:
flyingscorpio@arch-desktop 2021-04-22 20:03:52 +02:00
parent 0c7c241f14
commit 40d38de66a
3 changed files with 7 additions and 2 deletions

View file

@ -9,8 +9,10 @@ font pango: Noto Sans 9
floating_modifier $super
#autostart
exec --no-startup-id ~/setup-cockpit/dotfiles/text_to_wallpaper.sh
exec --no-startup-id hsetroot -cover ~/Pictures/clitip-wallpaper.png
#exec --no-startup-id ~/setup-cockpit/dotfiles/clitip_wallpaper.sh
#exec --no-startup-id hsetroot -cover ~/Pictures/clitip-wallpaper.png
exec --no-startup-id ~/setup-cockpit/dotfiles/xkcd_wallpaper.sh
exec --no-startup-id hsetroot -center ~/Pictures/xkcd-wallpaper.png
exec --no-startup-id xsettingsd &
exec --no-startup-id picom -b --config ~/.config/picom.conf
#exec --no-startup-id thunar --daemon

3
dotfiles/xkcd_wallpaper.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
curl -s "$(curl -sL https://c.xkcd.com/random/comic | grep 'Image URL' | awk '{print $5}')" -o ~/Pictures/xkcd-wallpaper.png