This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.local/bin/setbg

21 lines
776 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
######################################################################
2021-02-14 19:07:45 +01:00
# @author : swytch (adapted from Luke Smith - lukesmith.xyz)
# @file : setbg
# @license : GPLv3
2021-02-14 19:07:45 +01:00
# @created : Wednesday May 20, 2020 18:23:50 CEST
# @description : set the wallpaper
######################################################################
2020-05-06 03:20:19 +02:00
# If given an argument
# if $1 is a png file, set it as a wallpaper
# if $1 is a directory, choose a randomized image in it, set it as wallpaper
2021-06-18 00:43:11 +02:00
[ -f "$1" ] && cp $1 "$XDG_CONFIG_HOME/wall.jpg" && dunstify -u "low" "Wallpaper changed"
2020-05-06 03:20:19 +02:00
2021-06-18 00:43:11 +02:00
[ -d "$1" ] && cp "$(find "$1"/*.png -type f | shuf -n 1)" "$XDG_CONFIG_HOME/wall.jpg" && dunstify -u "low" "Random wallpaper chosen"
2020-05-06 03:20:19 +02:00
2021-06-18 00:43:11 +02:00
swaybg -i "$XDG_CONFIG_HOME/wall.jpg"