blob: 3dfa2d3d0fa8eb55118c3c375579d27fc4af2f12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env bash
# Change background image and create
# a corresponding theme with Pywal16
# then post process
#
# requires nsxiv, pywal16
FOLDER=~/Pictures/wallpaper
# thumbnail display of images
CHOICE=$(nsxiv -otb $FOLDER/*)
wal --cols16 darken -i $CHOICE
# Post process
xrdb merge ~/.Xresources
launch-dunst
pkill -HUP dwm
|