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