e2de403f1d77faa20ad8633324958917732d424f
[khome.git] / home / bin / wallpaper_fav
1 #! /bin/sh
2
3 set -e
4
5 FAVS_FILE=~/fav-wallpapers.txt
6
7 awk 'NR == 2 {sub("^" $1 " +" $2 " +" $3 " +", ""); print}' ~/.fehbg | xargs sha256sum >> "$FAVS_FILE"
8 sort -u "$FAVS_FILE" | sponge "$FAVS_FILE"
This page took 0.059861 seconds and 3 git commands to generate.