12 lines
198 B
Bash
Executable file
12 lines
198 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir -p "${HOME}/.config/dunst"
|
|
ln -sf "${HOME}/.cache/wal/dunstrc" "${HOME}/.config/dunst/dunstrc"
|
|
|
|
pkill dunst
|
|
dunst &
|
|
|
|
sleep 2
|
|
export DISPLAY=:0.0
|
|
|
|
notify-send "wallpaper updated!"
|